I want to show a dialog where the user can pick a file, click OK, and then the path to the file will be saved in the database.
I have just one problem, I can't figure out how tho show the dialog window. Do you?
|
I want to show a dialog where the user can pick a file, click OK, and then the path to the file will be saved in the database. I have just one problem, I can't figure out how tho show the dialog window. Do you?
| |||
|
feedback
|
|
You can use the WinAPI for that. Import
You also have to import the OPENFILENAME structure.
Then you fill out the structure and call GetOpenFileName.
Where VBString is a helper function to convert a null-terminated string.
| |||||
feedback
|
|
Similar to @dwo's answer: How to display the Common 'File-Open' Dialog to Choose a File Create a new module and paste the code in your new module. | |||
|
feedback
|
|
Do not forget the fileDialog object, easy, allows multiple selection, fileOpen, folder selection, etc, to be used this way:
| |||||||||
feedback
|
|
This code did it. | |||||
feedback
|