Search results

  1. W

    Question TAPI

    I will ask the vendor about a HTTP callback/webhook option
  2. W

    Question TAPI

    Hi everybody, OE12.8, Win 10 I have to create a program to monitor incoming phone-calls. All I have to do is getting the phone-number, nothing more ! The vendor of the telefone-system states that it can be accessed using TAPI 2.1. As I understand, the latest version delivered with Windows is...
  3. W

    Question Change forecolor of Combo-box

    This code works for me: run SetWindowTheme(COMBO-BOX-1:HWND, 0, ""). PROCEDURE SetWindowTheme EXTERNAL "uxtheme.dll": DEFINE INPUT PARAMETER hWnd AS LONG. DEFINE INPUT PARAMETER a AS LONG. DEFINE INPUT PARAMETER b AS CHARACTER. END PROCEDURE.
  4. W

    Question Weak spot

    Thanks Tom for this input. Some weeks ago we (as everybody I guess) got a Progress-Alert-Message about the secutiry-issues and the recommendation to upgrade to OE11.7.18/19. We forwarded this alert to the customer but nobody was interested. So that's the point we will start the discussion with...
  5. W

    Question Weak spot

    thanks to both of you for your explanations. I will discuss it wednesday with the rest of our team. We are using OpenEdge Explorer butwe are not using Jetty. Migth be easiest solution to just uninstall Eclipse.
  6. W

    Question Weak spot

    forgot to mention: there is only a database-server runing (OE WorkGroup RDBMS & Client Networking), no application-server. When we installed openedge, we just accepted the defaults and installed all.
  7. W

    Question Weak spot

    Hi everybody, Win10, OE11.7.15 Please forgive if this thread is mis-posted, but I have no clue at all in which forum it would fit. At a customer we have to work together with another company, which is responsable for overall system-security, but these guys are not very cooperative. Last...
  8. W

    Question How to send CTRL-V to a .NET control

    Unfortunately not. it gives compile-error "Parameter 1 for METHOD is not type compatible with its definition. (12905)"
  9. W

    Question How to send CTRL-V to a .NET control

    Hi everybody, OE12.6, Win10 I want to send CTRL-V to a RichTextBox, using this code: DEF VAR m AS System.Windows.Forms.Message NO-UNDO. m = NEW System.Windows.Forms.Message(). RichTextBox:ProcessCmdKey(m, CAST(Progress.Util.EnumHelper:Or(System.Windows.Forms.Keys:Control...
  10. W

    Resolved writing memorystream to file

    Found the solution: DO iLoop = 1 TO oMemStream:length: PUT-BYTE(mptr, iLoop) = oMemStream:ReadByte(). END. COPY-LOB mptr TO FILE SESSION:TEMP-DIR + "something.txt".
  11. W

    Resolved writing memorystream to file

    Hi everybody, OE12.6, Win 8/10 I have a MemoryStream and want to save it to an external file. Found some progress-examples (Knowledebase, ProgressTalk), but none of them works. Example 1 – using 'FileStream'. This gives 2 errors (at line "oFileStream:Write(oMemStream:GetBuffer(),": 984 -...
  12. W

    Treeview OCX - Set Focus

    oTreeView:Focus().
  13. W

    Answered Creating Thumbnail for Word-document using 'EnhMetaFileBits'

    Thanks Stefan, works like a charm !!! Using ImageMagick I can convert and resize the EMF-file to .PNG or whatever !
  14. W

    Problems with converting a piece of .net code to progress - MemoryStream

    Hi Den, I was asked by my boss to implement exactly the same: copy an Outlook-attachment by drag&drop to an ABL-window. Searching the web I found this thread and now I wonder, if you ever found a solution for this problem and managed to implement this feature. Wolf
  15. W

    Answered Creating Thumbnail for Word-document using 'EnhMetaFileBits'

    Thanks for your input, Rob ! It's not a real important thing for us, we do use some thumbnails, but if there are none, it's ok as well. Just stumbled over this piece of code and thought it looks small and easy and I'll give it a try. OK, it's not so easy.... Wolf
  16. W

    Answered Creating Thumbnail for Word-document using 'EnhMetaFileBits'

    Hi everybody, Win8, 10, OE11.7 & 12.5 Found a small piece of code which I try to translate from C# to ABL. var doc = new Microsoft.Office.Interop.Word.Application().Documents.Open(FileName: docxPath, Visible: false, ReadOnly: true); byte[] bytes = doc.Range().EnhMetaFileBits; Image page =...
  17. W

    Resolved Validation error in WebService

    Thanks Cecil ! I will have a look at the SAX-WRITE
  18. W

    Resolved Validation error in WebService

    Hi everybody ! OE12.5, Win10 I try to login to a WebService and get a validation-error, which I don't understand: "Invalid content was found starting with element tid....". My value for "tid" is "1000103u3032", which should be ok reguarding...
  19. W

    Question ACTIVE-FORM:ProWinHandle

    Hi everybody, OE12.5, Win 8 &10 I have a problem with the ACTIVE-FORM system reference. It has a property "ProWinHandle", which i thought might return the handle of the embedded ABL-Window. But I get an error when I try to reference the TITLE-attribut of this window, telling me "TITLE is not a...
  20. W

    Resolved EventHandler for ListView

    Osborne, works perfect, THANKS !!! Wolf
Back
Top