Using VBA, when assigning values to variables from textboxes or comboboxes.
the property "Text" or "Value" does not capitalize, yet the assignment
works.
In addition, appending "Text" or "Value" to the control name is not even
necessary to make the assignment work.
Examples:
strStringValue1 = Me.cmbCombo1.va lue
strStringValue2 = me.txtTextBox2. text
Does this indicate a problem with other pieces of code, or settings for the
database in general?
Thanks for any help.
Larry Mehl
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.555 / Virus Database: 347 - Release Date: 12/23/2003
the property "Text" or "Value" does not capitalize, yet the assignment
works.
In addition, appending "Text" or "Value" to the control name is not even
necessary to make the assignment work.
Examples:
strStringValue1 = Me.cmbCombo1.va lue
strStringValue2 = me.txtTextBox2. text
Does this indicate a problem with other pieces of code, or settings for the
database in general?
Thanks for any help.
Larry Mehl
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.555 / Virus Database: 347 - Release Date: 12/23/2003
Comment