Ok, I am making a Binary Chat bot for Battle.net/BNETD Chat Servers. I was Making a About Form, to show who Helped me/What Scripts and functions i used.
I Have a Combo Box Called Sections, With
Programmers
Special - Thanks
Beta - Testers
In the List.
I Have another Combo Box With The Names, Listed Under Each Topic. I Was trying to make it so Like, If the User Picks Programmers, Out of the Sections Drop Down, A Frame Is UnHidden, I have 3 Frames, i want Hidden/Show.
Programmers
Testing
Thanks
Than After the Frame is UnHidden, They Choose a Name from the list. It then tells them what they did via a label.
Right now, i'm just trying to get the Programmers, Testing, Thanks Frames to Change.. But it's not working.. This is my Code so far:
VB Code:
Private Sub Sections_Change() If Sections.Text = "Programmers" Then Programmers.Visible = True Testing.Visible = False Thanks.Visible = False End If If Sections.Text = "Beta - Testers" Then Testing.Visible = True Programming.Visible = False Thanks.Visible = False End If If Sections.Text = "Special - Thanks" Then Thanks.Visible = True Testing.Visible = False Programming.Visible = False End If End Sub
I think that should work... But it doesn't
Any Help and or Suggestions with This, Or My anything else relating to my about form, Would be Greatly Apreciated
