JonWolgamuth
Technical User
I'm attempting to add to a record using a SQL statement in code behind a form. I have an option group indicating which queue a piece of work is going into, then I want the SQL statement to look up the actual queue name from the table and paste the name (queue name, not the queue number) to the table. Here's the statement as I have it now...
QueueIn = "SELECT FixedQueuesTBL.QueueName FROM FixedQueuesTBL WHERE (((FixedQueuesTBL.ID)=[QueueOptionGRP]));"
I'm getting the following error which points to this line.
"The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data."
The field "QueueIn" is a text field and the field size is set to 50.
Any ideas what I'm doing wrong???
Thanks in advance!
QueueIn = "SELECT FixedQueuesTBL.QueueName FROM FixedQueuesTBL WHERE (((FixedQueuesTBL.ID)=[QueueOptionGRP]));"
I'm getting the following error which points to this line.
"The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data."
The field "QueueIn" is a text field and the field size is set to 50.
Any ideas what I'm doing wrong???
Thanks in advance!