Search results

  1. schaapie

    Test to see if buffer exists

    OK, I don't have much experience with widget-pools. But this is considered "good practise"? Sounds like "def global shared buffer" to me.
  2. schaapie

    Test to see if buffer exists

    Maybe I don't get it, but for the buffer to still exist and be filled, the procedure creating it must still exist (persistent). Or is the login-procedure always in your stacktrace? Couldn't you just ask this persistent-procedure the login/audit-name?
  3. schaapie

    crystal reports

    I have no idea what crwprt.i is/does.
  4. schaapie

    Trapping stop AND errors

    When I test, the stop caused by a lock-wait-timeout does NOT set error-status:error to true. So I end up leaving the block with num-messages = 0 and error-status:error = no.
  5. schaapie

    Trapping stop AND errors

    OE 10.1c03
  6. schaapie

    Trapping stop AND errors

    I am trying to catch stop conditions (caused by a lock timeout) and errors in a program calling another program. I have tried various options, but end up trapping either errors OR the stop: Has anyone any clue how to do this? Following code is some of the things I tried, but now I can't...
  7. schaapie

    crystal reports

    Is it not enough to change the datasource name of the odbc-connection you are using asuming you use this? Otherwise you could try something like: def var codbcnaam as char no-undo init 'newname'. /* kbases: P115877 P122620 P55350 P47202 P106992 P115258 */ function ConnectTables returns...
  8. schaapie

    Fill Pdf??

    Don't know about mfg/pro, but maybe this helps? http://www.oehive.org/pdfinclude
  9. schaapie

    problem with XML

    You are skipping subtype = "TEXT". Try adding: if hNoderef:subtype = "TEXT" then message hNoderef:node-value view-as alert-box info buttons ok. above the if "element" then next and see what happens.
  10. schaapie

    Search for specific words in a string...

    The question is do you want searching for "test" in "test123: 123456" to give a true of false? Do you want "complete entries" using , or : as seperators? index("test123: 123456","test") = 1 index("test123: 123456","test123") = 1 index("test123: 123456","123") = 5 index("test123...
  11. schaapie

    OpenEdge ABLDatareader

    To GregTomkins: No I don't mean a dump from Progress and a load into a SQL-database. I mean a .Net program using data from a Progress-db. To sdjensen: This would be somewhat similar to a statefull appserver call or something? Hmm could be a possibility.
  12. schaapie

    OpenEdge ABLDatareader

    We are trying to get data from a Progress-db into .Net. I have tried several ways, including ODBC and Appserver. Now I am wondering if anyone has any experience on this. The Appserver-solution would use something like the gettemptable.p example sourcecode from Progress. But I was wondering if...
  13. schaapie

    Appserver error

    Have you looked in the Nameserver.log [DLC]\NS1.ns.log
  14. schaapie

    Case statement

    How about: display prospect.active format "1/0". and wouldn't/shouldn't "if active = yes" just be "if active"?
  15. schaapie

    Easy

    We use UltraEdit as an editor in which you can add extra helpfiles. So I have added [progress-install-dir]\prohelp\lgrfeng.chm to the help-files and now when I press F1 when I have a keyword highlighted, I can go directly (1 extra enter) to the Progress-help on the keyword.
  16. schaapie

    Supplying domain for -proxyUserid

    I am trying to access a webservice from ABL (OE10.1c) through a proxyserver. I can get the following code to work on a machine which doesn't route this through the proxy, but when I want to add the proxy-credentials I get a 407 error (proxy authentication). When I access this webservice from...
  17. schaapie

    Calling Axis WebService Methods from Progress 9.1C

    Hope this gives you some tips. I have got this working on a OpenEdge 10.1c machine which doesn't route this through a proxy. (still have a problem with the domain for the proxy-user) define variable hWebService as handle no-undo. define variable hVolumeUnitSoap as handle no-undo. create...
  18. schaapie

    Get PID of current session

    You mean something like this? if opsys = "WIN32" then run GetCurrentProcessId (output piPID). else if opsys = "UNIX" then do: input through"echo $PPID"no-echono-convert. import piPID. input close. end. procedure GetCurrentProcessId external "kernel32.dll": define return parameter PID...
  19. schaapie

    extracting data form multiple tables dynamically

    Read the documentation on dynamic (Pro)datasets. you could: create temp-tables containing the fields needed create a dataset contianing these temp-tables create the data-relations between the tables create the data-source (mapping, keys, query) you would like to perform and then perform a fill...
Top