Hi, I'm new to both this Forum and C#. I am currently working on a project and I'm having problem with the following: I populated a comboBox (windows form) with data from an OleDb database, I intend to re-use any selected data from the comboBox by inserting it to another table on the database. I have absolutely no problem doing this with a textbox but the comboBox and ListBox are giving me some problem. Example ---------- INSERT INTO TableName (Column1, Column2) VALUES ('"textBox1.text"', '"combBox1...."') As I said, the textbox works if I don't include the comboBox, but I've tried different methods for the comboBox e.g. .SelectedText, .SelectedItem and etc please help. Thanks