G
Guest
This one is probably tougher to explain than to solve!
cmbVendor lists all vendors
cmbGLDesc is a combination of General Ledger codes and their descriptions
(two separate fields combined through a query for display purposes).
The Vendor table contains the GL Code, and once the Vendor has been
selected, I want the cmbGLDesc combo box to show that particular vendor's GL
code & Description.
I've gotten code written to the point where I get the combined GL Code &
Description, but can't get it to display in the cmbGLDesc box as the default
value.
Code I've already attempted is:
cmbGLDesc.Value = rec("FULLGL")
-- and --
cmbGLDesc.DefaultValue = rec("FULLGL")
-- and I've even tried --
With Me.cmbGLDesc
.DefaultValue = rec("FULLGL")
End With
(and .Value of course).
None get the combo box to display the default value.......all they display
is blanks....Oh, and if it matters, I still need to be able to have the user
override the default.
Thank you for your patience with me!
cmbVendor lists all vendors
cmbGLDesc is a combination of General Ledger codes and their descriptions
(two separate fields combined through a query for display purposes).
The Vendor table contains the GL Code, and once the Vendor has been
selected, I want the cmbGLDesc combo box to show that particular vendor's GL
code & Description.
I've gotten code written to the point where I get the combined GL Code &
Description, but can't get it to display in the cmbGLDesc box as the default
value.
Code I've already attempted is:
cmbGLDesc.Value = rec("FULLGL")
-- and --
cmbGLDesc.DefaultValue = rec("FULLGL")
-- and I've even tried --
With Me.cmbGLDesc
.DefaultValue = rec("FULLGL")
End With
(and .Value of course).
None get the combo box to display the default value.......all they display
is blanks....Oh, and if it matters, I still need to be able to have the user
override the default.
Thank you for your patience with me!