How do I pass the PATH parameter to an executable to open a database????
Printable View
How do I pass the PATH parameter to an executable to open a database????
I think you mean this:
If you start your program with parameters ie 'Test.exe C:\Database.db' then u can use Command to get the argument line.
-
Form_Load()
Dim Temp as String
Temp = Command
'Temp will be "C:\Database.db"
End Sub
-
------------------
[email protected]
...
Every program can be reduced to one instruction which doesn't work.