Recent content by jhdandliai

  1. J

    Cim program.

    the first, you should write code to dynamic output to cim file dependt on diferenct conditon, because mabybe differnet conditon , the cim file is different . the second, you should call QAD standard CIM to process cim, the benefic is origial function can control and ensure the error data will...
  2. J

    Dont want to see title header comming from mfdtitle.i

    it is okay if have source code.
  3. J

    Export Data - Report

    if your OS is Windows, I think you can archive your wanted, just look into Excel OLE help, I also can give you demo code for it if need, but if your OS is Linux/Unix, it's diffcult to achieve.
  4. J

    combo box and database

    maybe these code is you wanted . def var i as char view-as combo-box LIST-ITEMS "a","b" ,"c" . form i with frame one . ........ get data from your table . for each your table: i:insert(table.field1,"a"). end. update i with frame one .
  5. J

    FTP files containing Chinese characters from windows env to unix env

    Maybe your doc which you want to FTP from Window to Unix is GB codepage or BIG5 codepage,BUT your unix environment can not support this kinds codepage, you can try translate the doc into UTF 8 codepage, then try FTP.
  6. J

    Appserver Pf file

    agree with GregTomkins
  7. J

    Ask for help, Can't start progress db

    Thanks for your reply. I just tried it followed with your guide and the issue is solved now
  8. J

    Ask for help, Can't start progress db

    Hi, there are two Linux server, both servers have linux 5.5, openedge 10.2b, I just backuped a DB (mfgtest) into a file named mfgtest.bk with command probkup in server A, and then upload mfgtest.bk to server B, restore in server B with prorest command, restore is ok. but when I try to start...
  9. J

    Sales Order/Purchase Order Invoice/Material Reciept Lock after End/Expiry Date

    I think you can write a UI trigger program to match your requirement. it is easy
  10. J

    Reducing the transaction size.

    try this code find first bcust bcust.id = 10 and bcust.rcode = 5 no-error. if avail bcust then do: repeat: assign bcust.discount = 1.5. find next bcust bcust.id = 10 and bcust.rcode = 5 no-error. if not avail bcust then leave. end. end.
  11. J

    Some basic progress queries.

    1) Fastet way to count the records in database table. >> you can use these simple code, def var count# as ineger . count# = 0 . for each table no-lock: count# = count# + 1. end. disp count# . 2)Without putting the exclusive lock can we modify the record? you must lock a record before you...
  12. J

    [ask] duplicate output

    as your wanting, I can give your some advice. you should define a temp table for storing data which you want to total by different DATE at first, then you can FOR EACH your temp table and list table content .
  13. J

    Mask and fill-in

    I think you can not get a normal way to set it by Mask, but you could have another way to achieve, see the following code which can control end user only can input A--Z or 0--9 , you can modify it base on your requrement. def var a as char format "x(11)" . def var key as integer . update a...
  14. J

    Assigning a progess variable from a javascript variable

    only a other way for your reference you can design a ACTIVEX component in WIN32 and use it in your web page, it can hold the parameter, also you can make it own export XLS function by ODBC for progress .
  15. J

    Display through Fill-INs

    maybe nobody know what you are wanting .
Top