Search results

  1. R

    How to close a window from a smart browser?

    Thank you! Thank you very much, the 'run notify' statement is work!!:clown:
  2. R

    How to close a window from a smart browser?

    Cannot compile? Thanks for your help, I have try the statment subscribe, but Progress just said "Unable to understand" the statement. Is anything I make wrong? This is my main block statement : SUBSCRIBE "PROCEDURE closemywindows" ANYWHERE. /* Include custom Main Block code for...
  3. R

    How to close a window from a smart browser?

    I have develope an smart browser with an Exit button on it. If I place it into a smart window, how can I use this Exit button to close the smart window. Please advice, thank you! Rabbit;p
  4. R

    Cannot start the MSWord

    I have develope a program to perform a mailmerge function and it was using very well. Recently, I have develope another program which will run for over an hour to generate 2 mailmerge data files. I run the mailmerge program at the end of this program, but it always fail on the CREATE...
  5. R

    Is the Index corruped?

    I write a FOR EACH loop with a BREAK BY option like this : FOR EACH order-header NO-LOCK, EACH order-detail WHERE order-detail.order-no = order-header.order-no NO-LOCK BREAK BY order-header.order-no : . . I found a very strange case is this query give me 10 records. If I...
  6. R

    Error 748

    My application is using 4 Progress database (Version 8.3C), and I sent -n to 14 for all database. But I found sometimes, system show error 748 (The server or the system has no more resources. Try a larger -n), although the connection was not full (e.g. 12 connection, I check it from the...
  7. R

    Get the current row data of a smart browser

    I have a question about using the smart browser. I design a smart browser for a table and put it on a smart window. Then I let user to input several field and when user click on a Add button, I will create a new record in a table (not the browser's one) with some field from the current row of...
  8. R

    Without Access Right after Procopy

    Hi all, I have 3 multi volumn database and I use the Procopy command to copy them to my UAT environment. After I copy them, I found that I cannot view the table from the DataDict on these new copied database. But I have no problem on running my application, I still can read and update data...
  9. R

    Using Temp Table with SmartBrowser

    Hi all, I have a question, I want to create a browser maintenance function but the browsing data is came from different table depends on my parameter selection. How can I use a temp table with the SmartBrowser. I am using Progress V8.3c, I've try to create a SmartBrowser Object and from...
  10. R

    Asking for data source in Mail Merge

    Hi all, I have a mail merge program : ASSIGN wk-source = "C:\TEMP\SOURCE.DOC". DocHandle:MailMerge:OpenDataSource(wk-source, 1). But the MSWord always pop up the open data source dialog box to ask for the data source file, could anyone tell me what's going wrong, thank you!
  11. R

    The value return from LastRecord

    Hi all, In my mail merge program, I use the following to return the last data record number to me : last-record = DocHandle:MailMerge:DataSource:LastRecord() But I found the returned value is -16. Is my using method is not correct or anything else, please help! Rabbit.
  12. R

    Mail Merge Question

    Hi Nicka, Thank you for your solutions, but, could you please tell me where is the Progress Object Viewer, I cannot find it from my PC! Rabbit.
  13. R

    How to wait printing was completed before I close the MSWORD

    Hi all, I have a question, how can I know the printing was completed before I issue the CLOSE() command to the MSWord? Now I am using a very stupid way is to pause my program for a fixed time before I issue the CLOSE command. Thanks! Rabbit
  14. R

    Mail Merge Question

    Hi all, I have 2 question on using the Mail Merge with Progress : 1). I want to know how can I print a mail merge document without having the printing dialoge box. 2). There are many constants, such as wbFirstRecord, wbLastRecord was used, where can I found the actual value of those...
  15. R

    How to move to the last mail merge record

    Hi all, I have a problem about using mail merge of MSWord. I opened an mail merge document and I want to know how many records were merged before I start my printing. From the Word help document, we can assign a property MailMerge:MailMergeDataSource:ActiveRecord = wbLastRecord and use...
  16. R

    The LEAVE event

    Hi all, I have a LEAVE event with some error checking coding but I don't want this event be fired when I close the window. I can over come this problem by using the cancel button with AUTO-END-KEY option. But how about if user click on the close button of the window (i.e. the standard...
  17. R

    Update a screen fvalue rom a child procedure

    Hi all, I have use a dialog box as the report parameter window, and I use a RUN statement to generate the report. I define a FILL-IN widget on the dialog box to show the "Report is running..." message. I want to know is it possible that I can update this FILL-IN widget from the run...
  18. R

    Return Value from Selection-List

    Hi all, I have define a SELECTION-LIST widget and use the ADD-LAST method to create the item list as follow : wk-fund:add-last(description, company-code). The description is the label and the company-code is the value, but I found when I check the SCREEN-VALUE, it contains the label...
  19. R

    Numeric Format Problem

    I am using Progress V8.3d and I face a strange problem, both user and IT staff are using the same ini and pf file on the server, but one of our computer was showing the number in European format (i.e. 123.200,21) and all the other computer is using the American format. I does not specified the...
  20. R

    How to disable a FILL-IN widget

    Hi there, I am making a window for a report parameter input, I want to enable or disable a FILL-IN depends on the selected value of another parameter. I have read the Progress language and cannot find a ENABLER/DISABLE property for FILL-IN, I try to use the READ-ONLY property but I got a run...
Back
Top