C
cableguy47905 via AccessMonster.com
This is on an unbound form. This is what I have:
cboGroup
cboVerb
lstFormat
txtDesc
Right now I have cboGroup based on a small query.
cboVerb is based on a query that has forms.FRM_Verbs.cboGroup as the
criteria.
I have lstFormat being updated from a query that has forms.FRM_Verbs.cboVerb
as the criteria.
The after update() for cboVerb is:
Private Sub Verb_AfterUpdate()
Me.lstFormat.Requery
Me.txtDesc = Me.lstFormat.Column(2)
End Sub
There are 3 columns for lstFormat
Description is in the last column. I understand that the first column is
actually 0.
I still get a blank text box. I can substitute "test data" for Me.lstFormat.
column(2) and I do see that show up. Does anyone know what I am doing wrong?
Thanks,
Lee
cboGroup
cboVerb
lstFormat
txtDesc
Right now I have cboGroup based on a small query.
cboVerb is based on a query that has forms.FRM_Verbs.cboGroup as the
criteria.
I have lstFormat being updated from a query that has forms.FRM_Verbs.cboVerb
as the criteria.
The after update() for cboVerb is:
Private Sub Verb_AfterUpdate()
Me.lstFormat.Requery
Me.txtDesc = Me.lstFormat.Column(2)
End Sub
There are 3 columns for lstFormat
Description is in the last column. I understand that the first column is
actually 0.
I still get a blank text box. I can substitute "test data" for Me.lstFormat.
column(2) and I do see that show up. Does anyone know what I am doing wrong?
Thanks,
Lee