Search results

  1. S

    how to print in protrait and landscape mode

    :( plzz help me on this plzzzzzzzzzzzzzzzzzzzzzzzzzz:o
  2. S

    Find ... No-lock no-wait

    hi TomBascom, NO-lock with no-wait iam hearing newly as we practiced with NO-lock NO-error :cool:. i never try using this, but after ur qustion i had try with it. There is nothing wrong with it, but as it specifed as wrong practice in basic of developers guide. i felt different with ur qustion...
  3. S

    Begins begins behave diffrently

    hi enoon, Wht u said is correct but in my customer system iam accessing record from database, when i am finding record using "Beigns" it says AMBIG the same data in my system says AVAIL (index is same in both systems). :confused: :cool: i dont know why it is behaving like this in my...
  4. S

    Performace of the excel by com handle

    hi AndrewSmith, Ur suggestions improved little bit :blush1: but not upto the mark, can u or any one suggest some more suggestions to make work more faster. :cool:
  5. S

    Begins begins behave diffrently

    HI all talkers, Yesterday a i have found Tricky think with "Begins". Can any one give me clear ideia on this.I know wht i happening but why it is happening i dont know. plz suggest on this. Hear is the example DEFINE TEMP-TABLE tt_cust FIELD cust-no AS CHAR FIELD custix AS...
  6. S

    how to print in protrait and landscape mode

    can any one help me on this? i am waiting for ur reply
  7. S

    FIND FIRST vs FOR FIRST (moved)

    Hi TamHas, This problem i have faced in my project, wht TomBascom has suggested was done by me tooo. This is good qusteion i feel to boz we have used the word First means first record. But can we come to a conclution that "Find First" is the first record created(recid) and for each is the...
  8. S

    Performace of the excel by com handle

    I have created an excle with com handles boz customer is asking to show some of the heading as BOLD and show some line level fields in table outlined. It is woking fine with com handles(wht customer want) but performace is very poor due to updateing of induvidual cells. can any one help me...
  9. S

    Extract from a MEMPTR

    Wht Casper said was right. iam just providing an example, ithink this can be helpfull to u. DEFINE VARIABLE vmem AS MEMPTR NO-UNDO. SET-SIZE(vmem) = 10. PUT-STRING(vmem,1) = "1sdfasdf". MESSAGE GET-STRING(vmem,5) VIEW-AS ALERT-BOX INFO BUTTONS OK.
  10. S

    concatenation

    def var lc-year as char no-undo. def var pi-startYear as int initial 2009. def var pi-endYear as int initial 2011. DEFINE VARIABLE vint AS INTEGER NO-UNDO. DO vint = pi-startYear TO pi-endYear: lc-year = lc-year + (IF lc-year = "" THEN "" ELSE ",") + string(vint). END. is this solve ur...
  11. S

    ** already has a conflicting use. (99)

    You have already assined a stream to one file and trying to assign to other file(it may be same file) this is the reason. when progress comes to 4th line that "output to stream" then stream is fixed to that output statement, but when the pointer comes to 5th line it has encountered output...
  12. S

    how to print in protrait and landscape mode

    plz help me in this how to print in protrait and landscape mode my reqriment is to print the document. but user will have check box wether to print as protrait or landscape. iam using crpe32.dll so plz help me in this so it whould be helpfull.
  13. S

    Excel

    Irrespective of user setting using com handle, how can I set the currency to ‘$’ always with two decimal places.
  14. S

    Conflict in number of buffers

    All tables should be used which u have declared in query.
  15. S

    request time out and zeroing all ctivities

    For first point the query is so slow boz the index used on that is not correct i think so.
Back
Top