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!

Search results for query: *

  1. Jduenyas

    Can Access Change the Default Printer?

    The following works for me. Much simpler. No API. Must have a reference to MS WORD object Dim objWord As Word.Application Dim strOriginalPrinter As String On Error Resume Next Set objWord = GetObject(, "word.application") If Err.Number = 429 Then Debug.Print Err.Number...
  2. Jduenyas

    ListBox Instead of TextBox

    Here you go Oozy: This uses ADO so you need to have set your reference table to an ADO Library Object Private Sub List1_Click() Dim rstRst as ADODB.Recordset If Not IsNull(List1) And List1.Column(0) <> "" Then Set rstRST = New ADODB.Recordset With rstRST...

Part and Inventory Search

Back
Top