I have the following code :
this inserts text into my table just fine, however i would like for the code to insert text that is in a unbound text box on my form. in essence where the word "test" is, i would like to put the text in the text box, i just have no idea on how to reference the text in the text box. The text box is called "txtPcName"Qst = "INSERT INTO tbl_Activation (ID, Status, PCname) " & _
"VALUES (1,'Yes','test');"
CurrentDb.Execute Qst