Hi friends,
If i link a extension to a program i made in vb and double click on it. how can i program my application that he reads that file?
thanks,
Printable View
Hi friends,
If i link a extension to a program i made in vb and double click on it. how can i program my application that he reads that file?
thanks,
"how can i program my application that he reads that file?"
you would need to do the showing the data part yourself, but if you got your program to open after they double clicked it, just use the Command() function to get the filename:
private sub form_load()
msgbox Command
end sub
Use Command