D
Dagoon
I was wondering if anyone from the group could please offer me some
help with a database I have developed with MS Access 2002.
Here is the deal
Within this database I have a form named frmPreStart that I use to add
data to a table named tblPreStart. On frmPreStart I have a combo box
named cbo1 that looks up data in another table named tblEmployee.
Table tblEmployee contains the following fields:
1) RefNum (key)- AutoNumber
2) Name- Text
3) Position- Text
4) YTDRPB- Number
For cbo1 I am using the name field as the bound column (2). The Row
Source for cbo1 is as follows:
SELECT tblEmployee.RefNum, tblEmployee.Name, tblEmployee.YTDRPB FROM
tblEmployee ORDER BY tblEmployee.Name;
Now here is where I need help. After I lookup the name field with
cbo1, on frmPreStart, I would like to take the data in the YTDRPB
column from cbo1 and put it in a separate text box. How do I go about
putting just the YTDRPB data in a separate textbox?
Can someone please point me in the right direction? Any help is
greatly appreciated!
help with a database I have developed with MS Access 2002.
Here is the deal
Within this database I have a form named frmPreStart that I use to add
data to a table named tblPreStart. On frmPreStart I have a combo box
named cbo1 that looks up data in another table named tblEmployee.
Table tblEmployee contains the following fields:
1) RefNum (key)- AutoNumber
2) Name- Text
3) Position- Text
4) YTDRPB- Number
For cbo1 I am using the name field as the bound column (2). The Row
Source for cbo1 is as follows:
SELECT tblEmployee.RefNum, tblEmployee.Name, tblEmployee.YTDRPB FROM
tblEmployee ORDER BY tblEmployee.Name;
Now here is where I need help. After I lookup the name field with
cbo1, on frmPreStart, I would like to take the data in the YTDRPB
column from cbo1 and put it in a separate text box. How do I go about
putting just the YTDRPB data in a separate textbox?
Can someone please point me in the right direction? Any help is
greatly appreciated!