P
Pwyd
On a status page, i have a query-fed list box (which has multiple columns).
what i'd like to do is when someoen clicks on one of the records, i'd like it
to open up a small form that shows some information that isn't shown in the
listbox already (there isn't any room and it'd look crappy.)
Batch Status Page is the original form. Earliest Date in Batch is the
"subform" if you will. It will be opened, and i'd like it to simply show the
earliest date in the batch related to the record i've clicked on, in the
"subform." It won't let me assign data to that member though, probably
because i do not know how to parse out everything except the batch number in
that listbox.
Private Sub List94_Click()
DoCmd.OpenForm ("Earliest Date in Batch")
Me.Filter = "[Batchnumber] = " & [Forms]![Batch Status Page]![List94]
Me.FilterOn = True
End Sub
what i'd like to do is when someoen clicks on one of the records, i'd like it
to open up a small form that shows some information that isn't shown in the
listbox already (there isn't any room and it'd look crappy.)
Batch Status Page is the original form. Earliest Date in Batch is the
"subform" if you will. It will be opened, and i'd like it to simply show the
earliest date in the batch related to the record i've clicked on, in the
"subform." It won't let me assign data to that member though, probably
because i do not know how to parse out everything except the batch number in
that listbox.
Private Sub List94_Click()
DoCmd.OpenForm ("Earliest Date in Batch")
Me.Filter = "[Batchnumber] = " & [Forms]![Batch Status Page]![List94]
Me.FilterOn = True
End Sub