Search results

  1. T

    TAB-order between smart viewers?

    How do I control taborder between smartviewers in a window. The window contains pages. Now the functionallity is randomlike and in som cases you never get focus to a viewer att all, if you only use the tab-key. (Mouse-click always work of course) What I can see, the tabeditor settings in the...
  2. T

    How do I detect if a user on a client network is logged into the database or not?

    I want to build a license control in my application. Max X simultaneous users is allowed. If I create a record on login, and delete the record on logoff, its ok if the user logs off. But if the user logon and crash out, the record is still there, and the account is used. My problem: How do I...
  3. T

    On Leave Validation

    If I have a on leave vaildation on a fill-in. The leave trigger will not fire when pressing the save button in the toolbar. How do I do to solve this the best way? Thanx in advance.
  4. T

    F1 HELP and applhelp in 9.1D01 don't work

    F1 HELP and applhelp in 9.1D01 don't work in a smart viewer. It worked ok in 9.1C24. Is it a bug or what? Regards Lennart
  5. T

    printing to COM1 results incomplete page

    If you use form header with page-bottom the last line is not ended correctly. I had som problems with a duplicate last line when using form header with page-bottom. Try to direct the output to a file and check the last character in your print (EOF,CR,EOL) I think Progress have had some...
  6. T

    Row-display trigger in a smart-browse error 5906

    OK this is really hard to understand. My next problem. In the Deafult-action trigger of the browser I want to get rowObject values. How do I do? Now the rowObject is not available but screen-value in browse {browse-name} works. But I want a value thats not visible in the browser. Like...
  7. T

    Row-display trigger in a smart-browse error 5906

    Not really. It's still magic for me. I beleve I understand the behaivour of tables and temp-tables. At least in V8. How can I read the data if the data-buffer is not available? I think Progress have a bug in there. Or there are different levels of availablility of temp-table rowObject...
  8. T

    Row-display trigger in a smart-browse error 5906

    Thanks Stefan! It works but I still don't understand how rowObject can be available when it not available. The problem I had was the first line in my ROW-DISPLAY trigger: IF NOT AVAILABLE rowObject THEN RETURN. rowObject was never available, so I always exit with a RETURN. When I...
  9. T

    Row-display trigger in a smart-browse error 5906

    I want to colour a row/columns value red then value is < 0 in a browser. In 8.3 it is easy. In row-display trigger I test on buffer.myfield < 0 then buffer.myfield:fgcolor in browse {browse-name} = 14. But in 9.1 the rowObject is not available and screen-value is not readable (Error 5906)...
  10. T

    SmartSelect Event on change doesn't work

    That was just it! Thanks VERY MUCH! I really like this place.
  11. T

    SmartSelect Event on change doesn't work

    Nothing happens when I Subscribe to my SmartSelect event on change! Has anybody out there any idéa whats wrong? Thanks in advance.
  12. T

    {&ADM-CREATE-FIELDS} in ADM2?

    Thanks but in my case I don't have father child. I only have father. I want a easy way of disable the key-field when updating, but enable the field when add/copy. Just like good old 8.3. I suppose I have to code that myself.
  13. T

    include file references

    I have written my own Search.w program for just that. 1. The input is a include, many includes or any string. 2. The output is a list of all program that needs recompiling. The program loops our project and finds all .p, .w and .i depending on search string. It keeps looking down the...
  14. T

    {&ADM-CREATE-FIELDS} in ADM2?

    A Simple Question! What is the ADM2 version of ADM {&ADM-CREATE-FIELDS}? :rolleyes: Thanks in advance
  15. T

    setUpdatableColumns

    Thanks Norman! You found it for me! F1 help wrongly say it is in the query.p! I got confused. I tried also with the "only for internal use!?" {set UpdatableColumnsByTable cValue} it worked fine but... However I'm not sure I dare to use it like I first thought. A completely diffrent...
  16. T

    setUpdatableColumns

    How do I use setUpdatableColumns in my SDO? I cant get it to work. gcUpdatableColumn = DYNAMIC-FUNCTION('getUpdatableColumns':U). MESSAGE gcUpdatableColumn. Works OK. lReturnLog = DYNAMIC-FUNCTION('setUpdatableColumns':U, INPUT ""). Don't work. Progress error 'Cant find...
  17. T

    Customize assignDBRow?

    Thanks MSilva I say "I want to completely DISCONNECT progress default when add, copy and update record in my table. " Therefore I can't do RETURN "" beacuse I don't want Progress to do the update. My database will be logically corrupt if a normal update/add/copy or delete is performed on...
  18. T

    Sending Mail using a SMTP Socket

    Hi MSilva! We use MSMAPI32.OCX If you are interrested I can send you our sendmail.w and sendmail.wrx sourcecode + MSMAPI32.OCX. :cool:
  19. T

    Customize assignDBRow?

    Has anybody tried to customize assignDBRow in your SDO? I want to completely DISCONNECT progress default when add, copy and update record in my table. I have my own MyCreateRecord.p But I want to use Progress toolbar for view and update viewers/ browsers. I do as follows in my SDO...
Top