Search results

  1. S

    Compile Preprocess issue...

    Yeah this type of errors occured to me also. Actaully we should be very carefull when using the double and single quotes. I think you can try some of the things like, passing the character var (combination of both double and single quotes) to a doti and fetch the same thing to display the result.
  2. S

    Land Scape printing - Xerox printer

    Thanks for reply, I have tried that and it is not working. but one thing I have tried with some other option like , In device path name itself I gave -o landscape and it is working upto some mark. I think in unix it is very difficult using control characters. Prasad
  3. S

    Land Scape printing - Xerox printer

    Hi, Please let me know If any one have done Printer Setup Maintenance in Mfgro for LandScape printing for Xerox printer. I have tested with all types of control characters but not able to print in Landscape. The page is printing in Portrait. Please give me the control characters if any one...
  4. S

    Clarification needed..

    I think it is meaningless of having "first" and "last" for that type records. Thanks for the information.
  5. S

    Clarification needed..

    He All, I need clarifications for below mentioned points please help me. 1. I have only one record in table and I'll write a two queries like "find first" and "find last". I know that the result will be the same for two queries, but I want to know is there any performance issues with that...
  6. S

    Search function

    As search function returns boolean value, you cannot give that path inside search function. It will be ambigous for search function to find the file. You can always find single file name using search function. If you want result for that then there is one alternative way, you can import one...
  7. S

    replacement for NOT CAN-FIND in SDO

    As you specified that table “C” provides links to table “A” and table “B”. I think you have foreign key in table “C” and primary keys in other two tables. Now you can do one thing, Take all records which are in table “C” to temp-table and based on event (add, delete etc) update the records in...
  8. S

    Decompiler for Progress 4GL

    Check this link. I think it ll be useful for you. http://www.maizels.nu/progress/decomp.html
  9. S

    REPLACE Function

    If it is static then I think you can use the substitute statement also like, disp substitute("Hello it&1s there &2 here as well",":",":") format "x(50)".
  10. S

    Help with this logic

    for each idh_hist where idh_inv_nbr = ih_inv_nbr and idh_nbr = ih_nbr and idh_qty_inv > 0 break by idh_nbr by idh_inv_nbr : il = il + 1. iv = iv + (idh_qty_inv * idh_price)...
  11. S

    Get table properties of a given database

    Casper, It is not like that, your program also works fine but it was giving list of only table names of all connected database. Actually I wanted to see list of field names for all tables for all databases which are connected. I came to know about .field concept through above code. Prasad
  12. S

    Get table properties of a given database

    Nice code from sphipp
  13. S

    How to supress data dictionary table validation

    TomBascom, I want to thank you for giving nice suggession. Actually client has already specified the validation expression at table level. I think we want to tell them to remove validation expression at table level and do alternative for the same. I thank all for their efforts. Prasad
  14. S

    How to supress data dictionary table validation

    Casper, I dont want to overide my trigger. I just want to suppress the validation expression during the execution of program. What ever you specified above works only if my validation expression is within schema trigger. But here it nothing related to trigger. Here they have specified the...
  15. S

    How to supress data dictionary table validation

    How to override data dictionary table validation Hi All, I want to override the table validation which is specified in data dictionary through programming. for example: I have two tables t1 and t2. So in data dictionary for table t2 i'll specify some validation. During programming I want...
  16. S

    Sending an event to main application window

    I think you can do it like this, on <key> <anywhere> do: if frame-name = <framename> then do: ----- ----- end end. if you want to fire it on any specified field then you add one more criteria like frame-field = <framefield> along with frame-name.
  17. S

    Problem with Excel File Open

    Hi, I got some code from peg which uses kernel32.dll and now my program is working fine. Thanks for reply
  18. S

    Problem with Excel File Open

    Hello All, I have developed a excel report which first saves the data into excel file(.csv) using output to value(filename) and open the same file using the following command chExcelApplication:Workbooks:OpenText. when I run the report the excel is opening and I ll come out of the program...
  19. S

    How to store data in predefined excel Template

    Hi Casper I got some idea from your posting and I opened the existing excel template and assigned the same thing to the handle. Now it is working perfectly. thanks
  20. S

    How to store data in predefined excel Template

    Hi , I have predefined Excel Template which is given by client. The Excel Template contains header description and each column is formatted according to data fields. I have to store information in that predefined excel template. Iam not getting how to store information in already predefined...
Back
Top