Recent content by Yohn

  1. Yohn

    Resizing Dialog-Frame

    I have two input parameters - one for height, and width. I have editor, some fill-in and four buttons. I use run name_of_program("customer.txt", 200, 40) and then run it. Frame and Dialog-Frame make resize, but fill-ins and buttons don't resize with frame.
  2. Yohn

    Comparing fields

    tProdajnaMjesta is temp-table.
  3. Yohn

    Comparing fields

    code sample: IF STRING(tProdajnaMjesta.sifpm) <> STRING(prod-mjesto.sifpm) THEN ASSIGN cPromjena = cPromjena + "sifpm:" + STRING(prod-mjesto.sifpm) + " ". IF tProdajnaMjesta.naziv <> prod-mjesto.naziv THEN ASSIGN cPromjena = cPromjena +...
  4. Yohn

    Comparing fields

    Hy I have doing some buffer compare, and I need save result in list. My question is how can I write these changes in other table. For example if I have to change customer records, fields name and address, then I need to compare old record with new and write that new record in other table, but...
  5. Yohn

    Resizing Dialog-Frame

    Hy. I need re size frame dialog-frame using input parameters. What is best way to that. When I call program i send him a file, and 2 parameters for wight and height.
  6. Yohn

    Dynamic window frame

    Hy. I have program for universal list. I choose file and then insert it in that program, and print from it. I want that program size re-sizes frame depending of document loaded to him. If I have just 2 rows of text then window program re-sizes to that size plus buttons. thx.
  7. Yohn

    Writing changes to another table

    Hy. I have to record all changes made on program. For exampe I want if I change some record that I save in other table name of user, date, and what the user changed. thanks.
  8. Yohn

    GET statement

    here is sample of code: ON ANY-PRINTABLE OF browseDropDown IN FRAME frameDropDown DO: IF KEYFUNCTION(LASTKEY) = "backspace" OR KEYFUNCTION(LASTKEY) = "delete" THEN kaj = SUBSTRING(kaj, 1, LENGTH(kaj) - 1). ELSE kaj = kaj + LAST-EVENT:LABEL...
  9. Yohn

    GET statement

    Thank, you help me a lot. No I know what to do - you clear my way to objectives. Ones more THANK YOU VERY MUCH. yeah!
  10. Yohn

    GET statement

    Thanks. Actually I am beginner in Progress, so until I learn basic very well I will ask stupid questions. I use ON-ANY PRINTABLE because I want position to row when I start typing in fill-in. For example if I start typing yoh that positions to first record in row that matches yoh. ok?
  11. Yohn

    GET statement

    Hy. Can I use GET statement for find some record in table and compare it with fill in value. How do I do that? I use ON ANY-PRINTABLE OF statement.
  12. Yohn

    Find with GET statement

    Hy. I had to create find with GET statement. I have opened query, and I had to use GET to find record. I use one field in witch i enter letter, and had column and rows above it. When I start typing it must matches record with field in. thx.
  13. Yohn

    Running under Windows 7 64bit

    Hy. I use Windows 7 64 bit. I installed Progress 10.1c SP4 and when I use RUN in Procedure Editor I retrieve error: ** "" was not found. (293). Can anybody help me. thx.
  14. Yohn

    Reposition

    Hi, I have next situation: I have button that opens searching browse with 2 columns. On that brows I have variable what. when I start typing letters It must scroll trough the column depending what letter or set of letters I enter. For example when I start typing mus it must find first record...
  15. Yohn

    Color coding in 10.1c

    Well, I installed a new version 10.1c, and license of Architect, because I have for OE workgroup RDMS, Network Client, and OE Aplication Svr Ent. So I thing that I need Architect license. But thing is when I installed it, in procedure editor I do not have color coding, and when I write for...
Top