Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dear Friends.. I am fascing a pr

Status
Not open for further replies.

Siddiq

MIS
Sep 23, 2000
46
PK
Dear Friends..

I am fascing a problem plz help me if anyone can..

I have created a form when I build an exe it shows the
an another window with records.. I don't want that window
how to rmove that..

I just want my Form to run and close by it..

Thanks and best regards [sig][/sig]
 
Hi Siddiq,

If you provide more details of your problem, someone here would definately help.

Thanks

Yue Jeen [sig][/sig]
 
Probably you use SELECT-SQL command somewhere in the form without 'INTO' clause. For example, put such command into RowSource property of combobox or RecordSource property of Grid. To do not show browse window (Extra Rows form, as you said), add 'INTO CURSOR MyTemporaryAlias' to SELECT-SQL command, like in sample below:

SELECT * FROM MyTable INTO CURSOR MyTempAlias

[sig]<p>Vlad Grynchyshyn<br><a href=mailto:vgryn@softserve.lviv.ua>vgryn@softserve.lviv.ua</a><br>[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top