I'm using this to select a record in a listbox.
Is this code OK?
Thnaks
DS
Forms!frmFXEventPlanner!ListEvent.Selected(Forms!frmFXEventPlanner!TxtPartyID
- 1) = True
>I'm using this to select a record in a listbox.
>Is this code OK?
Does it work? If so, then it's okay ... so long as frmFXEventPlanner is open, that is. If you're actually running this
code on frmFXEventPlanner, then you can use the Me keyword instead:
Me.ListEvent.Selected(Me.txtPartyID) = True
>Thnaks
>DS
>
>Forms!frmFXEventPlanner!ListEvent.Selected(Forms!frmFXEventPlanner!TxtPartyID
>- 1) = True
Scott McDaniel
scott@takemeout_infotrakker.com
www.infotrakker.com
DS - 22 Jul 2007 23:30 GMT
>>I'm using this to select a record in a listbox.
>>Is this code OK?
[quoted text clipped - 13 lines]
> scott@takemeout_infotrakker.com
> www.infotrakker.com
Great! Doesnt hurt to double check!
Thanks
DS