cariobulog
Technical User
How can i open a subform from a main form using a combo box?
thanks.
thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub ComBox1_AfterUpdate()
Me.SubFormSpace.SourceObject = Me.ComBox1.Column(0)
End Sub