|
-
Dec 14th, 1999, 06:47 AM
#1
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?
-
Dec 14th, 1999, 09:14 AM
#2
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
-
Dec 14th, 1999, 02:28 PM
#3
Guru
Obtain arguments that are passed to your app:
via Command$
Sub Main()
msgbox Command$
end sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|