PDA

View Full Version : combo box Itemdata Property



wikush
02-21-2005, 12:04 AM
I am currently having problems assigning any values to the itemdata property of the combo box in Microsoft Access. I get a runtime error 424 OBJECT REQUIRED. I know an Visual Basic you can assign any value to this property. Is it also possible to use the new index property of the Combo box in MSAccess like you can use it in Visual Basic. Any help will be appreciated.

TonyJollans
02-21-2005, 02:38 AM
ItemData is Read-only. What are you trying to do that you want to set it? To change the contents you can use the .AddItem and .RemoveItem Methods, or set the .ControlSource Property.