Navigation Toolbar

annir

Active member
Joined
Sep 1, 2008
Messages
32
Programming Experience
Beginner
Hi guys,

I'm creating a program in VS2005 VB.Net somehow like a windows explorer, my problem was on creating a navigation toolbar in my form.

Does anyone know what is the code for back,forward,up one level in navigation toolbar??

thank you.

annir
 
Hello.

Depends on how you manage the Folder/File view.
If you use a Treeview to get the position I'd say that you need to select another node and refresh everything.
If you use the path you simply need to manipulate the path and refresh everything.

For the backward/forward you'll have to keep a history, f.e. an ArrayList which cleans itself at a defined number (cuts out the first item before adding another at the end).

Bobby
 
Back
Top