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

Search results for query: *

  1. Tspoon

    menus and MDI

    Add the parent's menu to the child form and disable any sub-menus (found on parent form) of the child form that should not be allowed when focus is on the child. ~Troy
  2. Tspoon

    Print List View

    If your ListView is from a recordset, then keep in mind you might to use recordSetName.MoveFirst Do Until (intCounter > recordSetName.RecordCount Printer.Print yourField_or_Fileds recordSetName.MoveNext intCounter = intCounter + 1 Loop Printer.EndDoc Hope this helps. ~Troy
  3. Tspoon

    Calling sub or module to bind txt boxes on frmMain to ADO Recordset

    Personally, in order to make your code more reusable, I would open the connection in your code module (.bas) and create a class to open the recordset. Eliminate the bound ADODB control and populate your textboxes programmatically using paired property procedures (also will be located in your...

Part and Inventory Search

Back
Top