Sorry, back again...
I use a TexTBox and InteractiveChange Event with
and all I want to do is populate a GRID with the Temp1.. and update as I type in more of the name
I learned (and that took me an age to discover) that I had to execute a " ZAP in temp1 " for each new search
to get rid of previous temp file
But even with that, and with every permutation under the sun, I still cant seem to get the grid to display...
I use recordsource = temp1 <-- SURELY THAT IS CORRECT
each TextBox is controlled with the LAST_NAME FIRST_NAME etc etc
But I have tried recordsource type as Table SQL ALias but I cannot get it to display
In desperation, I used Ramamni's FAQ code on incremental search and I am still trying to get that to work ((GridBase errors or something))
OK SO IN THE MEANTIME !!!
May I ask .. What are the CORRECT SETTINGS on the Grid so that it will show the wretched incremental search using that SELECT code outlined in this post.
Thanks again
JF
PS I replaced the 'This form dot' variables with others /// then executed the select in the Command Window and Browsed the temp file... No problems....
Sydney, Australia
I use a TexTBox and InteractiveChange Event with
Code:
Actual Last Name is calculated to lcLastName
Actual First Name is lcFirstName
SELECT LAST_NAME, FIRST_NAME, FILE_NUM, INSURANCE FROM 1;
WHERE First_name = UPPER(ThisForm.lcFirstName);
AND Last_name = UPPER(ThisForm.lcLastName);
INTO CURSOR Temp1 READWRITE
and all I want to do is populate a GRID with the Temp1.. and update as I type in more of the name
I learned (and that took me an age to discover) that I had to execute a " ZAP in temp1 " for each new search
to get rid of previous temp file
But even with that, and with every permutation under the sun, I still cant seem to get the grid to display...
I use recordsource = temp1 <-- SURELY THAT IS CORRECT
each TextBox is controlled with the LAST_NAME FIRST_NAME etc etc
But I have tried recordsource type as Table SQL ALias but I cannot get it to display
In desperation, I used Ramamni's FAQ code on incremental search and I am still trying to get that to work ((GridBase errors or something))
OK SO IN THE MEANTIME !!!
May I ask .. What are the CORRECT SETTINGS on the Grid so that it will show the wretched incremental search using that SELECT code outlined in this post.
Thanks again
JF
PS I replaced the 'This form dot' variables with others /// then executed the select in the Command Window and Browsed the temp file... No problems....
Sydney, Australia