KentMorand
Technical User
I have what I think is a very easy question that was so easy I couldn't find the asnwer in the other posts. I have an SQL string that will return a single value. I need to know how to put this value into a text box. Here is the code
SQL = "Select distinct(TechLan) from tblTechName where TechName = '" & strTechName & "'"
Set rsRecord = db.OpenRecordset(SQL)
What owns the value of the SQL string? I tried assigning SQL to a text box but nothing at all happens... Any ideas and thanks in advance.
SQL = "Select distinct(TechLan) from tblTechName where TechName = '" & strTechName & "'"
Set rsRecord = db.OpenRecordset(SQL)
What owns the value of the SQL string? I tried assigning SQL to a text box but nothing at all happens... Any ideas and thanks in advance.