Recent content by balasenthilsp

  1. B

    can-find or not can-find

    Hi, Which one is faster either can-find statement or not can-find statement if can-find (first...) then do : end. else do: "my condition" end. if not can-find(first..) then do: " my condition" end. which query is executes faster
  2. B

    what is webspeed ?

    What is webspeed tech about?
  3. B

    Attempt to define too many indexes

    We are using PRO version: 9.1E
  4. B

    Attempt to define too many indexes

    Hi, Is any one explain what are the possibilities to occur the following error SYSTEM ERROR: Attempt to define too many indexes. (40)
  5. B

    Create table by coding

    Thanks for your reply, i just like to learn what are the differnt ways to create a table structure.
  6. B

    Create table by coding

    Hi all, How to create a table throug progress coding in progress Database version 9.
  7. B

    Improve performance

    What are the basic ponts to improve the performance of the code. example - how to use indexing , matching etc
  8. B

    Dynamic frame

    How to define a dynamic frame? For example I have to display in a frame Label1 Label2 Label3 Val1 Val2 Val3 Val1 Val2 Val3 The above frame has to be flexible if there are only two values then i have to display lable1 Label3 val1 val3 If there are more...
  9. B

    How to improve performance

    How to change this code to increase the performance? for each table : if condition 1 then call program1.p else if condtion 2 then call program2.p else if condtion 3 then call program3.p else if condtion 4 then call program4.p end. /* end of table */ each and every called program...
  10. B

    How to scroll a frame?

    Is it possible to scroll a frame? let the frame size is 15 lines. suppose i force to display 25 records/lines an that frame, so i need scrollable for that frame... Is it possible?
  11. B

    how to clear the content of a file?

    hi all, Suppose i created one file and write the values in it. and after some time i like to clear the content of the file only (not deleted). eg : output to value("filename"). put unformatted 'something'. if condition then clear the content of the file
  12. B

    How to dynamically increase the frame variables?

    Example form variabl1 variable 2 with frame frm_name. now the frame contains only two variable... suppose i like to display the variables var3 var4 and var5 with frame frm_name at run time,...... how to do that. ???????????
  13. B

    Browse

    In browse window if i select an row it shows by this > mark, instead of > i need * to show that row is selected. how can i do that instead of ">" this i need "*"
  14. B

    Multiple selection?

    hi all, how to get/select more than one rows from the browse window and the same has to be displayed in a new frame?
  15. B

    How to get table properties?

    hai, I would like to get all the table properties(data dictionary). Ex. A table is created with three fields, with one as primary key. field1 integer primary key. field2 character field3 decimal. i would like to retrieve the which key is primary key, how many index that table has, what are...
Top