BruceBussell
Programmer
How do you use the Windows "Open With" drop down list in VB6 when no File Association exists so you can't use ShellExecute as noted below
r = ShellExecute(plngHandle, "open", OpenFile1Path$, 0, 0, SW_SHOWNORMAL)
This code will give me an error that I can process if a File is not found, but I don't know how to then call the "Open With" drop down list where a user can select a program to open the chosen file with if there is no existing File Association.
r = ShellExecute(plngHandle, "open", OpenFile1Path$, 0, 0, SW_SHOWNORMAL)
This code will give me an error that I can process if a File is not found, but I don't know how to then call the "Open With" drop down list where a user can select a program to open the chosen file with if there is no existing File Association.