Assign a variables value to a TextBox

  • Thread starter Thread starter ed
  • Start date Start date
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
 
dim strpath as string

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