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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Grids 1

Status
Not open for further replies.

WWinter

MIS
Apr 23, 2000
38
US
I have a form that shows info about contacts that also contains a pagefram with a grid that shows orders for that contact, on the pagefram I have a button that loads the order form to add orders for that contact. here is the problem, when I load the order form it displays the first the first record in the table,if close this form whihtout doing anything it takes this record and displays it the grid, when I click on the record in the grid it disappers how can I stop that record from showing up. Also would prefer that the first record in the table did show up when the form opens but can live with it.

Thanks
 
It would be great to see a blank form when the order form loads
Bill
 
It would be great to see a blank form when the order form loads

The I would suggest that just before your load that form use something like:
Code:
SELECT ORDERS
GO BOTTOM 
APPEND BLANK
DO FORM ORDERS.SCX

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first or check this link
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top