Search results

  1. S

    doubt in index

    @sureshp: FOR EACH Customer WHERE State = "NH" BY City: DISPLAY Cust-Num Name City. FOR EACH Order OF Customer: DISPLAY Order-Num Order-Date Ship-Date. END. END. * The above code doesn’t give any error. * The Report of the above query is that, Cust-Num Name...
  2. S

    Buffer Tuning

    I Thank You Sir.
  3. S

    Buffer Tuning

    http://www.wss.com is this Pay Based site? if yes, i've made a membership in this and i want to leave from there. then how can i remove myself from there?
  4. S

    Does Find First Increments Progress Counter

    @mayur kovle, first of all, FIND st/- is a single record fetcher at a time. it'll move a single record DB-Table into Record Buffer. FIND FIRST St/- always find the first Record in the DB-Table. if u Specify any selection criteria with FIND FIRST St/ then it find first record from subset of...
  5. S

    Export to excel file

    v can use the following code also, DEFINE VARIABLE icntr AS INTEGER NO-UNDO. DEFINE VARIABLE chExcelApplication AS COM-HANDLE. DEFINE VARIABLE chWorkbook AS COM-HANDLE. DEFINE VARIABLE chWorksheet AS COM-HANDLE. DEFINE VARIABLE lcDate AS CHARACTER FORMAT "X(10)" NO-UNDO. CREATE...
  6. S

    question about Progress : SEARCH COMMAND

    Dear Chipke, I've given one sample pgm for, if v know the file name, but want the directory of the filename, then the bellow sample may help.... DEFINE VARIABLE lcDir AS CHARACTER INITIAL "X(70)" NO-UNDO. DEFINE VARIABLE lcFileName AS CHARACTER NO-UNDO. ASSIGN lcFileName = "PrintImage.p". IF...
Back
Top