Forum Post: RE: Open WindowForm from ABL Window

  • Thread starter Thread starter Damien 3D
  • Start date Start date
Status
Not open for further replies.
D

Damien 3D

Guest
Hi, I don't understant very well your question : if you want to open a non progress Windows, try : PROCEDURE ShellExecuteA EXTERNAL "shell32.dll" : DEFINE INPUT PARAMETER hwnd AS LONG. DEFINE INPUT PARAMETER lpOperation AS CHARACTER . DEFINE INPUT PARAMETER lpFile AS CHARACTER . DEFINE INPUT PARAMETER lpParameters AS CHARACTER . DEFINE INPUT PARAMETER lpDirectory AS CHARACTER . DEFINE INPUT PARAMETER nShowCmd AS LONG. DEFINE RETURN PARAMETER hInstance AS LONG. END PROCEDURE. RUN ShellExecuteA (0, "open", "Monfichier.doc", "", "", 1 /* 0 hidden, 1 normal, minimized 2, maximized 3*/ , OUTPUT O_fin). Regards Damien

Continue reading...
 
Status
Not open for further replies.
Back
Top