Search results

  1. K

    Question Reading regional language from text file

    An example of such a text file so we can see how the regional language is stored in that text file would help.
  2. K

    Question WebService Call TimeOut

    do stop-after 60 on stop undo, return: <your code> end. I thought the stop-after option is intended to provide this ? (Throw a stop condition after 60 seconds)
  3. K

    Question How do I read excel ?

    or proogle it ;)
  4. K

    Question Connect to progress from BizTalk

    The Proxy Generator can generate a webservice for connecting to the AppServer. Do you think you can work with that ?
  5. K

    Month/Year Variable

    What is the data type of this start_date db column ? Is it also character ?
  6. K

    Static Class Static Variable Bug?

    Setting startup parameters in Eclipse should be simple. Just open properties of your project and there you can set properties for OpenEdge, including startup parameters.
  7. K

    Answered how to use static variables

    Nice to know: when i run with the -nogc startup parameter i no longer see the issue. But the class containing my static property only has static methods. It is never instantiated. Why would garbage collection even touch it ?
  8. K

    Answered how to use static variables

    I tried the singleton approach, although not exactly as you describe it, only to see the garbage collector throw away my singleton class at some point. That is why is went to static.
  9. K

    Answered how to use static variables

    A static property is what i need. I changed the variable into a property. define protected static property vcDemo as character init "<empty>" no-undo get. set. But this does not help. I set the property in the appserver startup procedure. At first it returns correct value. After some time it...
  10. K

    Answered how to use static variables

    I should have used search before asking. Yes this is expected behaviour: http://knowledgebase.progress.com/articles/Article/P171033
  11. K

    Answered how to use static variables

    the appserver is a stateless appserver progress version is 11.3
  12. K

    Answered how to use static variables

    In my code i have a static variable, something like define protected static variable vcDemo as character init "<empty>" no-undo. I assign a value to this variable in the appserver startup procedure. I would expect i can use the value of this variable anywhere in my code any time. What i see is...
  13. K

    Error Adding file to procedure library

    I am quite sure -codepage is also supported in OE10. So what is the codepage of this library ?
  14. K

    Question Decimal formatting

    try this one :) string(3.1634567,'>>>>>.9<<<<<<')
  15. K

    Input from Serial Device (Arduino)

    Are you running on a system with .NET Framework ? .NET has a class System.IO.Ports.SerialPort that you might access through DLL calls.
  16. K

    Comment Finally

    FINALLY block is not executed in case of a stop condition. Are there other cases ?
  17. K

    Answered Valid Stream

    Question is, do you have access to make changes to the source code where this stream is opened and closed ?
  18. K

    Question OOABL, Calling methods with ABL functions.

    This error is not related to your class object at all. Try compiling this: MESSAGE datetime(now) VIEW-AS ALERT-BOX INFO BUTTONS OK.
  19. K

    Putting an Image on a Label

    Can you provide some sample code how you process the PRN file ?
  20. K

    Question Does this code crash your openedge/progress session?

    Confirmed, my client (OE 11.3.1 on windows) crashes when i do a syntax check on this code. :eek: (also when i syntax check without any database connection)
Back
Top