Search results

  1. P

    Message problem

    Please try this MESSAGE FILL("yohn " , 10) VIEW-AS ALERT-BOX INFO BUTTONS OK. Regards Philip
  2. P

    Disadvantages of CAN-FIND function

    No disavantages. Faster because not brings the record to record buffer. Usage depends on either make use of the record(Find) or just to check the availability(Can-Find) Regards Philip
  3. P

    call procedure in 2 smart viewers

    You can do it in different ways. Try using PUBLISH - SUBSCRIBE facility in Progress Or get the handle of the viewer and run that procedure in handle. Rgeards Philip
  4. P

    Hard drive partition of Server

    Dear All, Is there any advantage/dis advantage , if I install Progress and Applications in a single partitioned Hard drive (Only C- Drive) ? Or in another way - Is there any advantage if I install the progress and application in the D-drive of my server(Not the OS Drive). OS is Windows...
  5. P

    App Builder Changes the code in v10 while save

    Dear All, we are working with OpenEdge10.1B. While we open 9.1E screens in 10.1B and save, causes the different widget order and widget sizes. We chaked all the INI files for following parameters Default font, font size, and Use-3D-size. All are exactly same. Can any one tell , how can we...
  6. P

    Best way to do this without an idex?

    Hello, As a quick reply , Break By is comparatively slow . Just to avoid that can't we change the code as follows. FOR EACH User-file NO-LOCK: FOR FIRST SystemTracker NO-LOCK WHERE SystemTracker.USER- ID = User-File.User-ID: ASSIGN userName =...
  7. P

    Archieving Data on a Progress V8 database

    Hello, Usually we are keeping Date & Time(hh:mm:ss) fields aloing with every records & Simply using the FOR EACH statements along with an appropriate WHERE clause on the FOR EACH statement. Obviously, the WHERE clause can be as simple or complex as needed. Backup the database be taken before...
  8. P

    Before Image File Problem

    If you want to use the same corrupted Db , then Connect the databse with -F paramenter and do an immediate dump and load!! Please don't ever OS copy a database while it is connectd. Regards Philip P Oommen
  9. P

    What is the abbrevation DLC

    Please look into the [Startup] portion of Progress.ini file U can see DLC=D:\DLC101B. We might have different versions of progress in the same machine. So we map the DLC in INI file as follows. Progress will always look into INI file for propath. For OS path we have to change the...
  10. P

    Know about RETURN NO-APPLY

    Suppresses the default behavior for the current user-interface event. For example, in the leave trigger of a fill-in if u say If self:Screen-value = "" Then Do: Message "Entry Needed". Return No-apply. End. If the screen value is blank it will not leave the field (Normal behaviour -...
  11. P

    zlib1.dll

    Please make use of the KB 17261 , I am pasting it for your review Error 3258 -- Why Am I Getting It?? There are several possible reasons for getting error 3258 when calling a procedure located in a DLL. Those reasons are as follows: 1) You are using a 16-bit version of Progress (i.e. V7, V8.0...
  12. P

    Syntax Error :/

    Redability of error message very poor and could not understand. Anyway as quick response pls try the following Regards Philip P Oommen edDetails:ScREEN-VALUE = edDetails:SCREEN-VALUE + (IF fiUmsDateVon:SCREEN-VALUE <> "":U THEN "Datum":T10 + ":":U + CHR(9) + CHR(9) +...
  13. P

    Lst open date mismatch

    Hello, I think you coped the DB to new location via OS copy.So that Database structure points back to the original database.To fix the copied database prostrct repair can be used with new location st file. always use use procopy to copy the database to the new location. Above prostruct will...
  14. P

    Populating a Combo-Box with a DB Field

    FOR EACH Customer NO-LOCK : x-ComboBox:ADD-LAST(Customer.custcode). END. x-ComboBox:SCREEN-VALUE = x-ComboBox:ENTRY(1). Try the above in any of the initialization trigger. Regards Philip P Oommen
  15. P

    FOR EACH with BY question...

    Intresting !! But The "look ahead" buffer cannot be referenced directly by the 4GL developer. Progress will generate INTERNAL buffer for preselect and BY. I think its almost impossible. May be a draw back!! Regards Philip P Oommen
  16. P

    Column/Record Count

    /* Hello Pls check the following snippet code will help u Regards Philip P oommen */ DEF VAR cnt AS INT NO-UNDO. OUTPUT TO c:\X.txt. FOR EACH _Field NO-LOCK , EACH _File OF _Field NO-LOCK WHERE _Tbl-Type = 'T' AND NOT _Hidden BREAK BY _file._file-name: cnt = cnt + 1...
  17. P

    What is the abbrevation DLC

    In 1981 – Progress Software Corporation was founded. Originally called Data Language Corporation, the "DLC" name lives today as the name for the Progress install directory. Regards Philip P Oommen
  18. P

    Filling data into a browser.

    Hope following code will help you =================================== DEFINE VARIABLE iFields AS INTEGER NO-UNDO. DEFINE VARIABLE Field-hdl AS HANDLE NO-UNDO. CREATE BROWSE Browse-Hndl ASSIGN FRAME = FRAME F1:HANDLE QUERY = qh TITLE = " " X = 2 Y = 2 WIDTH = 130 DOWN = 12 VISIBLE = TRUE...
Back
Top