Search results

  1. JamesBowen

    Write to xml file

    Their are two new programs virtualKeyboardMaintenance.w and DynamicKeyboardEdit.w is this new code,
  2. JamesBowen

    Write to xml file

    New code available GitHub - Jimbobnz/ABL-Virtual-Keyboard-.NET: ABL Virtual Keyboard using .NET It not a finished product, use at own risk . BACKUP UP YOUR XML FIRST BEFORE USING IT!
  3. JamesBowen

    Write to xml file

    Work in progress
  4. JamesBowen

    Write to xml file

    I started looking at developing a WYSIWYG editor to manipulate the buttons (resize, position, caption/label, images etc. ) and to save to XML . But this would take a bit of time to develop. I could look a developing a simpler GUI tool to have an updatable browser which edits the temp-table and...
  5. JamesBowen

    Write to xml file

    It sound like you want a visual button maintenance editor which will regenerate the XML.
  6. JamesBowen

    Write to xml file

    Digging though my code I found this. Source Code: https://github.com/Jimbobnz/ABL-Virtual-Keyboard-.NET
  7. JamesBowen

    Write to xml file

    This looks like my dynamic visual keyboard code. import the xml into a temp table. manipulate the temp-table and write back to file. if you need to do this from a back office machine that updates the POS machine, this can be done a few ways. The simplest way without intro introducing new...
  8. JamesBowen

    Answered Crystal Report to RTF File

    Last time I touched Crystal Reports it was owned by Seagate . Just doing a quick google search I found this. https://learn.microsoft.com/en-us/previous-versions/ms226492(v=vs.90) ExportOptions exportOpts = new ExportOptions(); PdfRtfWordFormatOptions pdfRtfWordOpts =...
  9. JamesBowen

    Error Error in Consuming Service (v11.3.3)

    Here is my bodge code since the client it not willing to update the OE version. I've spent a total of 25 mins to hack this together. Is does rely on curl being installed, but that's standard with Windows 10. these days. DEFINE TEMP-TABLE xml-cambio NO-UNDO FIELD seq AS INT FIELD...
  10. JamesBowen

    Question Data Exchange between multiple prowin32 applications

    I been doing a lot of reading about Inter process Communication (IPC) and through my investigation I have found Mailslot. I found a very old ABL Mailslot example Mailslot example | The OpenEdge Hive and it sort of works, but it's having some stability issues that I need to debug. But it looks...
  11. JamesBowen

    Question Data Exchange between multiple prowin32 applications

    I was hoping for a Event Driven solution rather that "Put down , Pick up" polling solution.
  12. JamesBowen

    Question Data Exchange between multiple prowin32 applications

    Window 10/11 OE 11.7.x 64bit I have a requirement where I would like to implement a publish & subscribe model between two separate prowin32 sessions. My scenario would be I would have application "ABC" already running and any additional prowin32.exe session (on the same users window session)...
  13. JamesBowen

    ABL Time-based one-time password (TOTP)

    As you know bitwise operations in the ABL are my nemesis. I think I have your variant somewhere.
  14. JamesBowen

    ABL Time-based one-time password (TOTP)

    Min Requirements Openedge 11.7.4 As a pet project, I wanted to create a Time-based one-time password (TOTP) generator. In the near future, I can see that I'm going to need one because some websites use Multi-Factor Authentication. The end user does not want to use a mobile app (i.e. Microsoft...
  15. JamesBowen

    Color Picker - OCX

    I've attached an ABL .w example program of calling the windows winform color dialog. Is this what you are looking for Or did you want to embed the colour picker into a .w?
  16. JamesBowen

    Color Picker - OCX

    Somthing like this?
  17. JamesBowen

    Resolved Base32 Decoder and Encoder

    I think I have figured it out. Function charToValue returns integer (input charByte as character): DEFINE VARIABLE inCharByte AS INTEGER NO-UNDO. inCharByte = asc(charByte). //65-90 == uppercase letters if inCharByte < 91 and inCharByte > 64 then...
  18. JamesBowen

    Resolved Base32 Decoder and Encoder

    Has anyone ever written a base32 decode function/method in the ABL?
  19. JamesBowen

    HTTP client holding onto connections?

    I think you need to raises a support ticket. I'm connecting to MS Graph to create emails with attachments and I found that it would just hang for about 60 seconds and the return an error (can't remember the error). I was only after I stipulated to use ciphers in the connection it worked...
  20. JamesBowen

    HTTP client holding onto connections?

    @Tarby777 did including the cipher work for you?
Back
Top