Search results

  1. M

    Developer Studio Syntax Color

    I just udated to Openedge 11.3. But the syntax coloring seems to be wrong on the string justifications (like :U and :T) In 10.x (Architect) the textcolor was yellow, but now (Developer Studio) its just black, which is really horrible to read... Is there an option to change this?
  2. M

    Question override OnPaint method (Net GUI)

    Hello, I am trying to override the OnPaint method in my inherited textbox so i can change the textcolor when the textbox is disabled (afaik thats the only way to do this) the problem is that the text gets painted white when the textbox has no focus and when it gets focus it draws it in some...
  3. M

    EXPORT DELIMITER "µ" in UTF-8 R-Code

    I have a huge problem exporting data. I use OpenEdge 10.2B07 !! You can reproduce this issue with following source code: MESSAGE "~265" VIEW-AS ALERT-BOX INFO BUTTONS OK. OUTPUT TO VALUE("C:\Temp\Test.asc"). EXPORT DELIMITER "~265" "string1" "string2". OUTPUT CLOSE. MESSAGE "doesn't...
  4. M

    code assist (ctrl+space) doesn't work in openedge architect

    I have a class with a mehtod, everything works fine but when i create an object (like oTest or something) and try to use code assist in openedge architect (oTest: and then ctrl+space) my method doesn't show up :/ Has anyone a idea why this doesn't work?
  5. M

    what's the difference between INPUT FROM VALUE AND INPUT FROM OPSYS-FILE

    so what's the difference between INPUT FROM VALUE(lcFile) AND INPUT FROM OPSYS-FILE(lcFile) :confused:
  6. M

    Problem with OE10 on network drive

    i am trying to start my application on a network drive but i get the error: Error loading the .NET runtime. This may be because required .NET assemblies are on a network share for which the .NET Framework security policy is set to less than Full Trust. (14081) i tried to set the rights with...
  7. M

    calling a method

    Is there a way that i can make a method available in my whole program? i wrote a test class with a method and i want to use it in my programm without having to do this before every call: definine variable xxx as class class.yyy no-undo. xxx = NEW class.yyy thx for your help
  8. M

    OE Architect - Change auto indent

    Is there a way to change the auto indentation in open edge architect from this: IF xxxx THEN DO: END. to this: IF xxxx THEN DO: END. thx for your help
  9. M

    Get "Windows" Button handle...

    is there a way to get the windows handle of an button? not the internal progress handle (:handle), the external handle which you can get with for example spy++...
  10. M

    how to convert DWORD to COLORREF

    i need the color of an display element... i get it with the function GetSysColor (http://msdn.microsoft.com/en-us/library/ms724371%28VS.85%29.aspx)... the return value of this function is DWORD... but i need the value in COLORREF...(http://msdn.microsoft.com/en-us/library/ee505694.aspx) how do...
  11. M

    Call CreateWindowExA in "USER32.DLL"

    WinAPI: Call CreateWindowExA in "USER32.DLL" Im trying to call the CreateWindowEx function in the User32.dll, and create a Marquee Style Process Bar but i always get the message: Mismatch in the parameter datatypes in DLL procedure CreateWindowEx.here is my source code: DEFINE VARIABLE...
  12. M

    Find Number in a String....

    i have this string: (test testest 123456789) the number of words is diffrent each time... so i want to get the number out of this string so that the string ist: 123456789 has someone an idea?
  13. M

    How can i test if a programm is alredy running?

    so i want to look from my main programm if another .r programm is alredy running...
  14. M

    how do i sort by alphabet...

    i have a txt file and i read this file line by line... the text file look like: test\test.txt newtest\newtest.txt anothertest\text.bat newtest\newtest.txt now i want to sort the lines by alphabet and write it back to the file in the right order so that it will look like...
  15. M

    Search for specific words in a string...

    i have a string...example: test1234: 12345957827 and i have a list with words: "test,progress" how can i test if the string contains one of the words? thank you for your help and sorry for my bad english
  16. M

    Get RSS Feeds with Progress 9.1

    is it possible to get and display RSS Feeds in Progress?
  17. M

    search for specific file tipes...

    search for specific file types... i want to search a specific Directory (for example C:\test) for files with .smf ending, i need a character string with all files that end with .smf, can someone help me?
  18. M

    10 values in Substitute- compile error

    10 variables in Substitute- compile error ASSIGN lcOutput = SUBSTITUTE("&1;&2;&3;&4;&5;&6;&7;&8;&9;&10":U, variable1, /* &1 */ variable2, /* &2 */ variable3, /* &3 */ variable4, /* &4 */ variable5...
  19. M

    single character out of a string...

    is there a way in progress how i can get the single characters out of a string? for example my string is: hello but i want only the first letter... (h) ....thank you for your help
  20. M

    Hinding a Text with :Hidden in a Smart Dialog!

    How do i hide a simple Text in my SmartDialog with :Hidden?
Top