Hi all,
I have my main form (say Form1). On this form there is a button and if the button is pressed, a Modal Dialog box pops up. Let's say the Modal Dialog box is called (Form99).
Furthermore, if the button (described above) is clicked, I want a piece of code to manipulate the Caption of Form99. How to do this. Basically, I have no clue how to reference to Form99 while I am in Form1.
Thanks,
Barbados.
I have my main form (say Form1). On this form there is a button and if the button is pressed, a Modal Dialog box pops up. Let's say the Modal Dialog box is called (Form99).
Furthermore, if the button (described above) is clicked, I want a piece of code to manipulate the Caption of Form99. How to do this. Basically, I have no clue how to reference to Form99 while I am in Form1.
Code:
Private Sub cmd_Button_Click()
[INDENT]' Code called from Form1.
' What code goes here?
[/INDENT]End Sub
Thanks,
Barbados.