Recent content by J.madray

  1. J

    kernel32.dll OpenFile

    ".txt" files are associated with "ultraedit.exe" with "ShellExecute" the ".txt" files are openned with "Write.exe". with "Shell.application" the ".txt" files are openned with "ultraedit.exe". cya.
  2. J

    kernel32.dll OpenFile

    I have found an other solution wich works. DEFINE VARIABLE v-file AS COM-HANDLE NO-UNDO. CREATE "shell.Application" v-file CONNECT NO-ERROR. IF NOT VALID-HANDLE(v-file) THEN CREATE "shell.Application" v-file. v-file:OPEN(f-file:SCREEN-VALUE IN FRAME {&FRAME-NAME}). RELEASE OBJECT...
  3. J

    kernel32.dll OpenFile

    Hi. I'm using the procedure ShellExecuteA (0,"Open",f-file:SCREEN-VALUE IN FRAME {&FRAME-NAME},"","",1,OUTPUT iError). But this procedure doesn't run as I want. It s opening Word, excel and other files type, but not ".err" files associated with "Ultraedit".
  4. J

    kernel32.dll OpenFile

    Hi. I'm trying to open a file using a kernel32.dll method. I need to open many files using associated application (Word, excel, acrobat reader, outlook, outlook express...) I'm trying with method "OpenFile" but I always get an error message : 'C' Call Stack has been compromised after calling...
  5. J

    Strange behaviour in AppBuilder

    in v9 : Procedure in structured objects have 20Ko length max... it s really less than in V8...
Back
Top