-
what is the code for the shell execute, my api viewer thing isnt working?
and
how do you obtain the arguments that are passed to your program right at the start of execution?
-
If you're talking about the declaration of this API, then here it is:
Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
-
Obtain arguments that are passed to your app:
via Command$
Sub Main()
msgbox Command$
end sub