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 IamaSherpa 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. ChuckUpNorth

    faxing word document from within visual basic application

    I had a simualar request, but didn't get an answer yet. I wanted to fax from VB or VBA within MS-Word, but skip the faxes popup that asks who/what number to send to. The code has the phone number and wants to pass it to the fax printer directly. We could try WinFaxPro or HP's FaxPrinter...
  2. ChuckUpNorth

    Maximize Visio Application Window

    NOTE: This was also posted in VBA forum Visio doesn't seem to have WindowState for Application. I got around the problem with the following code: '==== Maximize visio application ==== Visio.Application.DoCmd (Visio.VisUICmds.visCmdAppMaximize) '==== Maximize window within visio ====...
  3. ChuckUpNorth

    Maximize Visio Application Window

    Visio doesn't seem to have WindowState for Application. I got around the problem with the following code: '==== Maximize visio application ==== Visio.Application.DoCmd (Visio.VisUICmds.visCmdAppMaximize) '==== Maximize window within visio ==== Visio.ActiveWindow.WindowState = visWSMaximized
  4. ChuckUpNorth

    Maximize Visio Application Window

    NOTE: I have posted this in the Visio forum also How do you maximize a Visio Application Window? ActiveWindow.WindowState = visWSMaximized maximizes the window within Visio, but how do I maximize the application? Thanks, Chuck
  5. ChuckUpNorth

    Visio: Setting focus to main window after form.show (modeless)

    NOTE: I have posted this in the Visio forum also I have a form that is modeless. When item is selected on main visio window, I display a modeless status form. The problem is now the form has focus, so you have to click once on main window to get focus, then again to make a new selection. I...
  6. ChuckUpNorth

    Maximize Visio Application Window

    How do you maximize a Visio Application Window? ActiveWindow.WindowState = visWSMaximized maximizes the window within Visio, but how do I maximize the application? Thanks, Chuck
  7. ChuckUpNorth

    Setting focus to main visio window after form.show (modeless)

    I have a form that is modeless. When item is selected on main visio window, I display a modeless status form. The problem is now the form has focus, so you have to click once on main window to get focus, then again to make a new selection. I would like to remove focus from the form after...

Part and Inventory Search

Back
Top