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 OCX/Dll

    if you want to use a dll/ocx without the need to register it you can use a manifest file (WinSxs) in which you store the information that is normally in the registry Here is a link with more information: en.wikipedia.org/wiki/Side-by-side_assembly
  3. M

    Question How to check the Character Value for Logical field

    have a look at the "lookup" function
  4. 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...
  5. 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...
  6. 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?
  7. 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:
  8. 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...
  9. M

    calling a method

    thank you!
  10. 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
  11. M

    OLE, "Struct" problem with StarOffice

    pushing this thread because i have the same problem with libreoffice which has the same api
  12. 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
  13. 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++...
  14. M

    how to convert DWORD to COLORREF

    thank you for your help, it works perfect :)
  15. M

    how to convert DWORD to COLORREF

    i need the COLORREF variable to change the menu color of an external program i start it has a function for that, that takes COLORREF as input when i try COLORREF NewColor = RGB(214, 211, 206); in an c# programm (214,211,206 are my system colors in rgb) the value of NewColor is 13554646 when i...
  16. 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...
  17. 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...
  18. M

    Find Number in a String....

    thank you, works fine :D
  19. 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?
  20. M

    How can i test if a programm is alredy running?

    i just want to check if the *.r programm is running at the moment
Top