Search results

  1. O

    Calling function from .NET WebBrowser

    Really good to hear you have got it working. So in the propath you have something like this?: ,C:\Development\Webwiew\WebView2Loader.dll Just tried that but still find the same in that nothing appears.
  2. O

    Answered Question on menu and sub menu handle

    It has been a long time since I used CREATE MENU-ITEM but think once created it is always available even if created in a trigger/internal procedure. So either delete or remove from the relevant widget: SELF:POPUP-MENU = ?.
  3. O

    Calling function from .NET WebBrowser

    I think you are correct in that it is a runtime issue and postings here mention an extra file - WebView2Loader.dll - required for runtime: https://community.progress.com/s/question/0D74Q000008IUBHSA4/detail This file is in the package so included that in the working directory but still no joy.
  4. O

    Calling function from .NET WebBrowser

    I have never used this control but had a quick look - Progress 11.7.4 - and found the exact same problem. Tried the following as well but nothing: webView21:Show(). Checking on the changed events and they never fired: METHOD PRIVATE VOID webView21_LocationChanged( INPUT sender AS...
  5. O

    Table Data Records

    I am really not sure on this. It may be possible you want something like this: /* Firstly create a dynamic temp-table for all the required fields */ CREATE TEMP-TABLE hTemp. /* Add all the fields */ FOR FIRST _file NO-LOCK WHERE _file._file-name = "test" ,FIRST _index OF _file NO-LOCK...
  6. O

    Table Data Records

    The error means one of your handle variables has not been created or set: If I had to guess it looks to be fh as you are referencing it but cannot see where it is being assigned/created: hTemp:ADD-LIKE-FIELD(fh:NAME,fh). ... ASSIGN fh = bh:BUFFER-FIELD( _field._field-name )...
  7. O

    Table Data Records

    As Stefan has posted it is really not easy to make heads nor tails of your code. Are you trying to create a single JSON file of all the tables or separate JSON files for each table? If the former then a bit of thought is required because as Stefan posted JSON is not a line based format, you...
  8. O

    Table Data Records

    With a dynamic temp-table it is the variable handle you use: hTemp:WRITE-JSON(vTargetType, vFIle, lformatted).
  9. O

    Convert some simple .net code to progress code

    I came to the solution with a bit of trial and error. In most cases you can normally assign directly as in this example: DEFINE VARIABLE oStartInfo AS System.Diagnostics.ProcessStartInfo NO-UNDO. DEFINE VARIABLE oVerbs AS "System.String[]" NO-UNDO. oStartInfo = NEW...
  10. O

    Convert some simple .net code to progress code

    I have not worked with System.Windows.Forms.DragEventArgs so a rough translation only but hope it points you in the right direction: PROCEDURE Form1_DragDrop: // or if a class METHOD PUBLIC VOID Form1_DragDrop (INPUT sender AS System.Object, INPUT e AS System.Windows.Forms.DragEventArgs)...
  11. O

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

    A bit of a long shot, but if you read each byte and add the characters together does the file name appear anywhere?: DEFINE VARIABLE i AS INTEGER NO-UNDO. DEFINE VARIABLE j AS INTEGER NO-UNDO. DEFINE VARIABLE vCharacters AS CHARACTER NO-UNDO. j = FileGroupDescriptor:Length - 1. DO i = 0 TO j...
  12. O

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

    Unfortunately I have not worked with memory streams or System.Bytes so cannot answer your questions of what everything is actually doing. The code posted was a best guess at what I thought the ABL code could be. Having a fresh look though I wonder if the two lines should be something similar...
  13. O

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

    I think this could be a rough translation of the code: DEFINE VARIABLE FileGroupDescriptor AS "System.Byte[]" NO-UNDO. DEFINE VARIABLE theStream AS System.IO.MemoryStream NO-UNDO. DEFINE VARIABLE fileName AS System.Text.StringBuilder NO-UNDO. DEFINE VARIABLE i AS INTEGER NO-UNDO...
  14. O

    Question Paged outputs "next-page" event

    Depending on the report it may be possible to distinguish by checking line-counter, page-size or page-number: DEFINE STREAM p1. OUTPUT STREAM p1 TO PRINTER /* PAGE-SIZE 58 */ PAGED. ... IF LINE-COUNTER(p1) > PAGE-SIZE(p1) THEN DO: ... END. // or IF PAGE-NUMBER(p1) <> vPrevPage THEN DO...
  15. O

    Calling function from .NET WebBrowser

    As Cringer points out AppBuilder does not do OO so not possible directly. However, if this is correct and Chromium can be used for Winforms then it may be possible: https://thechriskent.com/2014/08/18/embedded-chromium-in-winforms So what you could try is embed an AppBuilder window onto a...
  16. O

    Question Display HTML File

    There is also the .NET Web Browser which was highlighted in this thread: https://www.progresstalk.com/threads/calling-function-from-net-webbrowser.200196 Also the Microsoft Webview, but from this thread seems a little tricky to implement...
  17. O

    Answered Sucession of if else if with some weird behavior

    The rough example you posted should reach condition4 as this does: DEFINE VARIABLE condition1 AS LOGICAL NO-UNDO. DEFINE VARIABLE condition2 AS LOGICAL NO-UNDO. DEFINE VARIABLE condition3 AS LOGICAL NO-UNDO. DEFINE VARIABLE condition4 AS LOGICAL INITIAL YES NO-UNDO. IF condition1 THEN...
  18. O

    Unable to find and edit the source code of GUI application

    Rob has outlined things perfectly and you should have been provided with a lot more information. This error usually always means the program has a shared variable defined in it something similar to: DEFINE SHARED VARIABLE company AS CHARACTER NO-UNDO. So this suggests the program is not run...
  19. O

    Unable to find and edit the source code of GUI application

    Is the full path of the ".i" in the ".w" file or is it just the name of the ".i" file? If the latter then the common reason for the error is that the path where the ".i" file resides is not in the PROPATH:- https://knowledgebase.progress.com/articles/Knowledge/P4891 To check the directories...
  20. O

    System.Text Namespace Crash

    It seems to suggest there is a problem with the .NET bridge link, and as Cringer outlines there may be a protrace or procore file that could list the reason. If instead of 'NEWING' you have something like this does it crash as well?: MESSAGE System.Text.RegularExpressions.Regex:IsMatch...
Back
Top