Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Visual Basic - How can i get File in TextBox?

Status
Not open for further replies.

monali Gupta

Newbie level 3
Joined
Mar 30, 2009
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,299
Added after 1 minutes:


Added after 2 minutes:

How can i get File in TextBox when i clicked Folder in directoryListBox?I want its Coding....
 

Visual Basic

What do you mean by "get File in TextBox"? Do you want to get the name of the file? If you want to get a File Name look at using the 'CommonDialog' control.
 

Visual Basic

Private Sub Dir1_Change()
File1.Path = Dir1.Path ' When directory changes, set file pathEnd Sub
End Sub

Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive ' When drive changes, set directory path.

End Sub

Added after 1 minutes:

this is from MSDN
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top