Make Table Formatting Problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a make table query and in one of the query's fields
I have it taged to a text box in a form so the user knows
when the data is made that the data is for say client 6610
but when the table is made the field is made as a Binary
type (not) text is their a way I can fix that? I need it
to be text!
 
I have a make table query and in one of the query's fields
I have it taged to a text box in a form so the user knows
when the data is made that the data is for say client 6610
but when the table is made the field is made as a Binary
type (not) text is their a way I can fix that? I need it
to be text!

Use the CStr() function around the reference to the form's TextBox. E.g.:

CStr(Forms!FormName!ControlName)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top