Search results

  1. B

    .NET - Call NotInheritable Class

    Hello, I am starting in .NET in OpenEdge. How do i call a NotInheritable Class in OE? I am trying to use Spire.Xls. This don´t work. Thanks, Baltazar
  2. B

    Regedit - Return ?

    I have entry with another user on my PC and it works.. Acess rights is very strange. I am the administrator..
  3. B

    Regedit - Return ?

    Hello, i have this code load "SOFTWARE" base-key "HKEY_LOCAL_MACHINE". use "SOFTWARE". get-key-value section "Microsoft\Windows\CurrentVersion\App Paths\EXCEL.exe" key default value o-Path_LeitorPDFs. unload "SOFTWARE". That dont´ work... The key is there. Can help? Thanks, Baltazar
  4. B

    Change Window Title by include

    I talked in an include, but i open to another suggestions. We have GUI, Windows with OE 11.6.4. The idea is to add "automatically" some info to title Window. A Global Way... If you have any code/idea please share. Thanks.
  5. B

    Change Window Title by include

    Hello, it is possible to change the window Title by include? Do you have any sample? Thanks, Baltazar
  6. B

    Call .cls from other file

    Thanks for your input! At this moment I am doing tests how net works... If you could send recommend code, I appreciate.
  7. B

    Call .cls from other file

    Have discovered. Thanks a lot for your help!
  8. B

    Call .cls from other file

    Works like this... It is possible to call this .cls from ABL and fill some values?
  9. B

    Call .cls from other file

    Do you a example of working code?
  10. B

    Call .cls from other file

    Right. My mistake, but same error.
  11. B

    Call .cls from other file

    I have already that fixed, but same problem.
  12. B

    Call .cls from other file

    Hello, i am trying to call a "shared" cls file from a main file. The class I am call doing this. Can help? Thanks, Baltazar
  13. B

    Open Net Window from ABL

    It is possible the class name be dynamic?
  14. B

    Open Net Window from ABL

    Yes. Thanks a Lot!
  15. B

    Open Net Window from ABL

    Hello, can anyone send the code to open a Net Window from ABL? Did not find the code.. Thanks Baltazar
  16. B

    Read Json Array

    Thanks a Lot! :) Doing this.. length(ResultObject_arr):
  17. B

    Read Json Array

    Hello, Any have code to read a Json Array from a file and do the loop? DEFINE VARIABLE JsonParser_arr AS ObjectModelParser NO-UNDO. DEFINE VARIABLE ResultObject_arr AS JsonArray NO-UNDO. JsonParser_arr= NEW ObjectModelParser(). ResultObject_arr =...
  18. B

    Get Image Dimensions

    Thanks a Lot!
  19. B

    Get Image Dimensions

    We use Windows, so no problem. With Leak Memory Fix DEFINE VARIABLE vImage AS System.Drawing.Image NO-UNDO. vImage = System.Drawing.Image:FromFile("s:\imagens_web\1010150005000528_web.jpg") . MESSAGE "Width: " + string(vImage:Width) + ", Height: " + string(vImage:Height) VIEW-AS...
  20. B

    Get Image Dimensions

    Found the solution! DEFINE VARIABLE vImage AS System.Drawing.Image NO-UNDO. vImage = System.Drawing.Image:FromFile("s:\imagens_web\1010150005000528_web.jpg") . MESSAGE "Width: " + string(vImage:Width) + ", Height: " + string(vImage:Height) VIEW-AS ALERT-BOX INFO BUTTONS OK.
Back
Top