Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you get forms to load on clicks?!

Status
Not open for further replies.

KingElBoriso

Programmer
Dec 7, 2000
1
US
Please help! I need to get a form to load when a radio button is clicked. The Form is named "Artists". Thanks!

Boris
yeltzen.tripod.com
 
Not sure what a radio button is, maybe a command button, but it sounds like it has a click event.
In it's click event put in 'artists.show'
David Paulson


 
VB - option button; Web - radio buton.

Putting the last two posts together, if you have a radio/option button called Option1, then use the click event of the radio / option button to call the Show method of the form Artists.

Private Sub Option1_Click()
Artists.Show
End Sub


Simon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top