Hi,
i used to enter a text in a textfield and store this with other textfields in a database using a recordset. This works fine without any errors. After changing one textfield to a combobox, my database update crashes with a NilObjectExeption.
I use the following code, where txtStatus is the combobox and i used the same name before for my textfield.
rs.Field("status").StringValue = txtStatus.Text
How do i get the text from the selected combobox-item?
Michael