Hi. I added controls in the multipage like text box, combo box and calendar button. The problem is there's no event for each control inside a multipage. I can put values in the combo box, I want to place values into another combo box based from his choices of the previous combo box. I hope you could help me on this. Thanks!

Programming with MULTIPAGE
Adi2
Hi,
The events of the controls held in the mutipage are still usable. If you double click the control the default event handler for the control is added to the form. The controls used in mutipages (tab control) are available seperate from the mutipage, what I mean by that is you don't need to go through the mutipage to get to the controls.
i.e. you can use a combo on a multipage like this
Me.ComboBox1 'correct
without needing to go through the mutipage
Me.Mutipage1.ComboBox1 'incorrect
Valentin
Per our support engineer:
Have you checked Derek's suggestion It is right.
For example, if you add a command button control on the multipage control, we can add a "button clicked" event as follows.
Private Sub CommandButton1_Click()
Me.CommandButton1.Caption = "button1"
End Sub
When you click the button, the button caption is changed to "button1".
For dynamically created control on the same form, try to refer to the following link.
http://www.mcse.ms/message688004.html
-brenda (ISV Buddy Team)