Assign a variables value to a TextBox

E

ed

I am using the application.getfile in the following
manner to send the selected applications path to a
variable. But I don't know how to send it to a textbox.


dim strpath as string

application.getopenfilename = strpath


Thanks
Edward
 
T

Tom Ogilvy

dim strpath as string

strPath = application.getopenfilename
Useform1.Textbox1.Value = strPath
 
Top