I programmed a vb.net program to browse .apk file and install in on emulator , now i want to make it a default program to open .apk files
problems : - how to make program that can open a file ! - how to get opened file path
thanks for your time :)
I programmed a vb.net program to browse .apk file and install in on emulator , now i want to make it a default program to open .apk files
problems : - how to make program that can open a file ! - how to get opened file path
thanks for your time :)
The whole "Double-Click to Open" part is done by Windows, not by your program. If you double-click a file Windows checks the registry for settings on what to do with the program. You need to set these settings so that your program is the default program for the datatype. Try google
file association windows
.The filename of the file that was double-clicked is passed to the program through a command line parameter. You can access these through
Use this to then open the file in your program.