Listbox and Textbox

A

Asif

I have a listbox and a textbox in a form the listbox contains three
columns; ID, DATE and QUANTITY when I click on an entry in the listbox
the textbox displays the ID related to the entry highlighted. The
on_click event of the listbox is a macro with the following condition

ITEM:- [Forms]![frm_edit]![Text4]
EXPRESSION :- [Forms]![frm_edit]![lst_Process Date]

Instead of Text4 picking up the ID field I want it to pick up the Date
Field.

Any suggestions??

Thanks
 
S

Storrboy

Asif said:
I have a listbox and a textbox in a form the listbox contains three
columns; ID, DATE and QUANTITY when I click on an entry in the listbox
the textbox displays the ID related to the entry highlighted. The
on_click event of the listbox is a macro with the following condition

ITEM:- [Forms]![frm_edit]![Text4]
EXPRESSION :- [Forms]![frm_edit]![lst_Process Date]

Instead of Text4 picking up the ID field I want it to pick up the Date
Field.

Any suggestions??

Thanks


ITEM:- [Forms]![frm_edit]![Text4]
EXPRESSION :- [Forms]![frm_edit]![lst_Process Date].Column(1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top