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...
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 ====...
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
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
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...
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
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.