Customizing with foreign button

D

debellis14

How do I add non-Microsoft buttons to the Word toolbar, such as Quickbooks.
Note: this can be done in WordPerfect?
 
G

Graham Mayor

What can and cannot be done in Word Perfect is irrelevant here.

Applications that are designed to work in partnership with Word will have an
add-in that provides the necessary interface. Those that don't have any
relationship with Word don't really need to be on the Word toolbar, but if
you must then you need to create a macro to call the application and add the
macro to the toolbar e.g.

Sub Calculator()
Dim RetVal
RetVal = Shell("C:\WINDOWS\SYSTEM32\CALC.EXE", 1)
End Sub

will call the Windows calculator. I don't know the path and exe file for
Quickbooks but if you replace the path to the calculator with the path to
Quickbooks exe file it will call Quickbooks instead.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top