Search results

  1. D

    VB With Progress

    Just an idea, but couldn't you use the progress ODBC-driver to pop in (in V8 Merant ODBC-driver)
  2. D

    Question on procedure 'create-record'

    Actually, the dispatch procedure will handle the create-record. Indeed you won't find any procedure doing a create temp-table, but it will happen. This is standard behavior of smartobjects, and is the main reason why they are so easy to use... You will also find the delete, update, copy and...
  3. D

    Evaluation of time...

    To make some simple query with SO; to configure appserver; and to do some customisation where necessary; and to integrate the demand as an example of a course; and if you can work 2 days full-time on it, with internet access (progresstalk or so :awink: ); I'm sure it will work fine...
  4. D

    Evaluation of time...

    V9 isn't easy to understand, especially the adm2; but there is some good documentation on the net : URL=http://www.progress.com/v9/documentation/start.htm]www.progress.com/v9/documentation/start.htm[/URL] I would advice you however, to follow some course, or to get a copy of some courses, so...
  5. D

    Evaluation of time...

    If nothing is configured at all, let's say 2 days in total... Appserver configuration course is 2 days, and can be given in actually 1 day... In that course, there is also some explanation of SDO,...
  6. D

    Evaluation of time...

    I would say, if you don't know anything about V9... 1 day, and we use the customer table as an example :-)
  7. D

    QueryPrepare

    Try DYNAMIC-FUNCTION('setQuerySort':U IN SDO, INPUT pcSort /* CHARACTER */). Should work like a charm...
  8. D

    Simple one for you guys ;) (Smart Objects)

    Then you can use exact the same logic in local-enable-fields and local-disable fields...
  9. D

    Simple one for you guys ;) (Smart Objects)

    I will assume you're using appserver. If you don't, just ignore the 'in getASHandle' and unbindserver statements. You should write a function which searches the 2nd table in your SDO: function findrecord returns logical: return can-find ('blablabla'). end function. In the...
  10. D

    Modify Partition of SDO on runtime

    I don't see any reason to change the partition dynamically. I suppose that the 2 uses of the sdo will be on separate windows, and in these you can select a partition. An alternative is to use the 'alias'-function of the appserver-partition : you can let listen any partition to a different...
  11. D

    Writing to registry in Win 2000

    I never used that particular dll, but for other functionality, I never had any problems since I use win2000 (about a year now). My opinion is on the other hand that it isn't necessary to use a dll when there is a similar 4GL statement, unless you would gain a lot of speed...
  12. D

    Multiple sensitive windows.

    Emma, another approach is to a "PUBLISH" and subscribe the first 2 windows to that statement. Or, you can have the first beeing subscribed to statement in handle of second screen, do a publish again to the first window... Mail me if you need further help.
  13. D

    Writing to registry in Win 2000

    Actually there are some 4GL statements you can use to read/write the registry : read : LOAD "Software" BASE-KEY "HKEY_CURRENT_USER". USE "Software". GET-KEY-VALUE SECTION "TVH-Applicatie" KEY "LastLogin" VALUE charUser. UNLOAD "Software". IF charUser = ? THEN ASSIGN charUser = ""...
  14. D

    Progress & Windows XP

    it seems your mstartup.p procedure needs some database. You better make the connection before, in your .pf file like this : -db database -H DBhost -S DBservice -N TCP Good luck
  15. D

    problem when connecting to DB (V9.1C) SQL92

    A small call to tech support learned me that I don't have to start a broker anymore on the serverside. The ODBC-sql support has been incorperated into the database itself. You just have to make sure that the -Mn parameter is set high enough.
  16. D

    problem when connecting to DB (V9.1C) SQL92

    Hello, I'm having troubles to connect through odbc to our database. The configuration is as follows : Server AIX 4.3 with Progress V9.1 patch 09 server script: /************************/ DLC=/apple/dlc91 PROMSGS=$DLC/promsgs IDLC=/apple/dlc91 IPROMSGS=$DLC/promsgs...
  17. D

    Refresh ADM2 Browse

    Hello, It's quite simple to refresh the browser : Just do DYNAMIC-FUNCTION('openQuery':U IN h_dappserverinfo). where h_dappserverinfo is the handle of your SDO connected to the SDB. That way the query is refreshed... Good luck
  18. D

    move rows in abrwoser

    I suggest you use a calculated field which holds the ordernumber of the specific record. The table is sorted on this record. When you push up, he changes the current record and the above record; when you push down, he changes the currect and the beneith record.
  19. D

    Problem with 9.1C/07 ==> UpdateFromSource

    Yannick, Thank you for the answer. I shall try to remember these wise words.:awink: Your collegue Dries
  20. D

    Problem with 9.1C/07 ==> UpdateFromSource

    :confused:hello, We just received recently the version 9.1C from Progress. After installation we patched the latest version on it (91C07.exe) While this version has many advantages towards version 9.1B (eg : the SBO finally works as it should !), we encounter an error. When we try to...
Back
Top