Sep 27, 2004 #1 fheyn Programmer Mar 22, 2001 198 DE A combobox-item read from database should be shown as 'selected'. I tried ComboBox.Text=rs!ID but this causes an error. Any ideas ? thanks in advance
A combobox-item read from database should be shown as 'selected'. I tried ComboBox.Text=rs!ID but this causes an error. Any ideas ? thanks in advance
Sep 27, 2004 1 #2 MattSTech Programmer Apr 10, 2003 333 US Guessing but is the error "text property is read only" if so the dropdown style is set to 2 and requires the item to actually be in the list... Matt Upvote 0 Downvote
Guessing but is the error "text property is read only" if so the dropdown style is set to 2 and requires the item to actually be in the list... Matt
Sep 27, 2004 Thread starter #3 fheyn Programmer Mar 22, 2001 198 DE hi Matt thanks for the response it's just like you say, but the item IS in the list since it originally came from the combobox. Upvote 0 Downvote
hi Matt thanks for the response it's just like you say, but the item IS in the list since it originally came from the combobox.
Sep 27, 2004 Thread starter #4 fheyn Programmer Mar 22, 2001 198 DE sorry Matt, since I use rs.Fields, I used the wrong index for this field. everything works fine ! Upvote 0 Downvote