J
Joe
I am writing a program that will allow you to type multiple codes in a
text box and display the records associated with those numbers on a
form. However, I am only able to enter 18 seperate numbers, after that
it won't display any records. Here's the query that's tying the text
box to the form:
SELECT [Master].[WH], [Master].[Item No], [Master].[DESC1], [Master].
[DESC2], [Master].[UM], [Master].[Vendor No]
FROM Master
WHERE (([Master].[WH])=[forms]![dashboard]![WHFrame]) And ((" " &
[forms]![dashboard]![number] & " ") Like "*[ ]" & [Master].[Item No] &
"[ ]*");
It works exactly like it should as long as I enter 18 numbers or less,
but at 19 it just diplays an empty form. Any ideas?
text box and display the records associated with those numbers on a
form. However, I am only able to enter 18 seperate numbers, after that
it won't display any records. Here's the query that's tying the text
box to the form:
SELECT [Master].[WH], [Master].[Item No], [Master].[DESC1], [Master].
[DESC2], [Master].[UM], [Master].[Vendor No]
FROM Master
WHERE (([Master].[WH])=[forms]![dashboard]![WHFrame]) And ((" " &
[forms]![dashboard]![number] & " ") Like "*[ ]" & [Master].[Item No] &
"[ ]*");
It works exactly like it should as long as I enter 18 numbers or less,
but at 19 it just diplays an empty form. Any ideas?