Pookiemeister
Well-known Member
- Joined
- Jan 6, 2012
- Messages
- 626
- Office Version
- 365
- 2010
- Platform
- Windows
On my form I have 5 textboxes. Each will be pulling its value from a Query based on the value of the first textbox. The error in the subject displays in the ItemDescriptiontxtbx when the form loads. Textbox names and their order below:
Textbox Names
1. Itemtxtbx
2. ItemDescriptiontxtbx
3. ManufactureNametxtbx
4. ManufacturerPartsNotxtbx
5.UOMtxtbx
QUERY FIELD NAMES (These were imported from an Excel spreadsheet)
1. Item
2. ItemDescription
3. ManufacturersName
4. ManufacturersPartNo
5. UOM
I have the following DLookup code inside the "Control Source"
Would it possible that the issue maybe from something that is set in the property sheet for ItemDescriptiontxtbx?
I hope I provided enough information. Thank you
Textbox Names
1. Itemtxtbx
2. ItemDescriptiontxtbx
3. ManufactureNametxtbx
4. ManufacturerPartsNotxtbx
5.UOMtxtbx
QUERY FIELD NAMES (These were imported from an Excel spreadsheet)
1. Item
2. ItemDescription
3. ManufacturersName
4. ManufacturersPartNo
5. UOM
I have the following DLookup code inside the "Control Source"
VBA Code:
=DLookUp("ItemDescription","InventoryDetailsQuery","Item = " & [Itemtxtbx])
Would it possible that the issue maybe from something that is set in the property sheet for ItemDescriptiontxtbx?
I hope I provided enough information. Thank you
Last edited: