|
|
|
|
|
Hello All Swish-DB Members ,
This Tutorial Will Show How To Make A Tree View Menu change when clicked
[b]Start An Standard EXE or Open the Project lasrt with the TreeVIew.[/b
Example of what i mean


Step 1)Add Your Controls to the same form

Step 2)Make Everyone of you Controls Invisable

Step 3)Now Add This code : Private Sub TreeView1_Click()
WebBrowser1.Visible = False 'fades out every property 'Add All your controls here like above ^
Select Case TreeView1.SelectedItem.Index
Case 1:
'dont add nothing here
Case 2: 'This is News for e.g. say on your tree it has +main menu then news this is this property
'show new items
WebBrowser2.Visible = True
Case 3:
Case 4:
Case 5: 'keep adding more case's for the more menu's you have
End Select
thats it
|
|
|