M Microsoft Aug 26, 2004 #1 Is there a way in vb.net to have the user browse to a file and return that file's name and path as strings?
Is there a way in vb.net to have the user browse to a file and return that file's name and path as strings?
N Niki Estner Aug 27, 2004 #2 Microsoft said: Is there a way in vb.net to have the user browse to a file and return that file's name and path as strings? Click to expand... Try OpenFileDialog.FileName Niki
Microsoft said: Is there a way in vb.net to have the user browse to a file and return that file's name and path as strings? Click to expand... Try OpenFileDialog.FileName Niki
H Herfried K. Wagner [MVP] Aug 27, 2004 #3 * "Microsoft said: Is there a way in vb.net to have the user browse to a file and return that file's name and path as strings? Click to expand... You will find a component called OpenFileDialog in the toolbox.
* "Microsoft said: Is there a way in vb.net to have the user browse to a file and return that file's name and path as strings? Click to expand... You will find a component called OpenFileDialog in the toolbox.
J James Westgate Aug 27, 2004 #4 Also, the system.IO.FileInfo class has some nice methods and properties. James