I have a list box (lclient), which consist of 2 fields CLIENTNO, CLIENTNAME and the CLIENTNO is the bound column. On my ONCLICK evenhandler I want to assign the value of CLIENTNO to a global variable gClientNo, but i'm not getting any value.
Private Sub lclient_Click()
'assign value to global variable
lclient.Value = gClientID
End Sub
Please advise. Thanks.
Private Sub lclient_Click()
'assign value to global variable
lclient.Value = gClientID
End Sub
Please advise. Thanks.
Comment