Oct 28, 2000 #1 Siddiq MIS Sep 23, 2000 46 PK I am using a combobox in my form and using a query in it.. when I run that form it shows me a query window. I want to disable that query window.
I am using a combobox in my form and using a query in it.. when I run that form it shows me a query window. I want to disable that query window.
Oct 29, 2000 #2 Creeder Programmer Jul 5, 2000 110 MY Hi Siddiq, Try doing something like SELECT * FROM <table> INTO CURSOR tmpCursor That will prevent the browse window from opening. You then can basically use the cursor like a table. Hope that helps Yue Jeen Upvote 0 Downvote
Hi Siddiq, Try doing something like SELECT * FROM <table> INTO CURSOR tmpCursor That will prevent the browse window from opening. You then can basically use the cursor like a table. Hope that helps Yue Jeen
Oct 29, 2000 Thread starter #3 Siddiq MIS Sep 23, 2000 46 PK Thanks Creeder.. It's working but how to keep the cursor in order Upvote 0 Downvote
Oct 30, 2000 #4 Creeder Programmer Jul 5, 2000 110 MY Hi Siddiq, You basically can do something like this, SELECT * FROM customer ORDER BY name INTO CURSOR tempCursor Therefore you have a table/cursor sorted by the column name. You then can manually assigned the Rowsource of the combo box to this cursor. Hope this helps. Yue Jeen Upvote 0 Downvote
Hi Siddiq, You basically can do something like this, SELECT * FROM customer ORDER BY name INTO CURSOR tempCursor Therefore you have a table/cursor sorted by the column name. You then can manually assigned the Rowsource of the combo box to this cursor. Hope this helps. Yue Jeen