K
kealaz
On my form frmWHEREUSE, I have a combo box with the following information:
Name: PART_NO
Control Source: PART_NO
Row Source Type: Table/Query
Row Source: SELECT tblComboLog.PART_NO, tblComboLog.NAME FROM tblComboLog;
tblComboLog is a table that is created by a macro, mcComboLog
The macro does the following:
Deletes tblComboLog -- qryDeleteCombo
Appends tblDWGLOG to the tblComboLog -- qryCombineA
Appends tblPARTSLOG to the tblComboLog -- qryCombineB
This macro is called On Got Focus for the combo box PART_NO
All of this is working exactly as I want it to, the first time around. The
problem is, when entering information into the form, if I need to enter more
than one record and I enter the first record and tab to continue to the
second record, the combo box PART_NO is not finding the information it needs
from tblComboLog and is empty.
Does the control box NOT get focus when tabbing in from the first record to
the second? Can someone help me understand why this is behaving this way and
what I might do to fix it?
Thank you very much for any and all help!!!
Name: PART_NO
Control Source: PART_NO
Row Source Type: Table/Query
Row Source: SELECT tblComboLog.PART_NO, tblComboLog.NAME FROM tblComboLog;
tblComboLog is a table that is created by a macro, mcComboLog
The macro does the following:
Deletes tblComboLog -- qryDeleteCombo
Appends tblDWGLOG to the tblComboLog -- qryCombineA
Appends tblPARTSLOG to the tblComboLog -- qryCombineB
This macro is called On Got Focus for the combo box PART_NO
All of this is working exactly as I want it to, the first time around. The
problem is, when entering information into the form, if I need to enter more
than one record and I enter the first record and tab to continue to the
second record, the combo box PART_NO is not finding the information it needs
from tblComboLog and is empty.
Does the control box NOT get focus when tabbing in from the first record to
the second? Can someone help me understand why this is behaving this way and
what I might do to fix it?
Thank you very much for any and all help!!!