J
Jerry
Hi,
My app is controled by a treeview.
Each node brings a subform for input and calculations to the front. The
subforms are loaded as controls on the main form.
Dim ctl As Control
For Each ctl In Me.Controls
If TypeOf ctl Is Form Then
If ctl.Tag.ToString = sTabKey.ToString Then
ctl.BringToFront()
ctl.Show()
End If
End If
Next
Which event can I use to fire my update sub on the subform when the subform
is showen? I tryed gotfocus, but it didn't work.
Thanks,
Jerry
My app is controled by a treeview.
Each node brings a subform for input and calculations to the front. The
subforms are loaded as controls on the main form.
Dim ctl As Control
For Each ctl In Me.Controls
If TypeOf ctl Is Form Then
If ctl.Tag.ToString = sTabKey.ToString Then
ctl.BringToFront()
ctl.Show()
End If
End If
Next
Which event can I use to fire my update sub on the subform when the subform
is showen? I tryed gotfocus, but it didn't work.
Thanks,
Jerry