|
-
Jun 24th, 2004, 10:58 AM
#1
Thread Starter
Member
Word Custom Toolbar
How could I go about making a custom toolbar in word that once clicked would run a specific macro? Also, is it possible to make some sort of installer that would install this button?
Thanks in advance.
-
Jul 20th, 2004, 04:18 PM
#2
Thread Starter
Member
-
Aug 2nd, 2004, 09:28 PM
#3
Sorry but I can't seem to remember how to create the Word
AddIn .dot to attach to every instance of Word as they get
created, but this should help to actually create the .dot file. The
rest is up to you.
VB Code:
Option Explicit
'CREATES A NEW TOOLBAR AND ADDS THE OPEN BUTTON TO IT
'AND DOCKS IT LEFT AND LAST TB ON TOOLBAR ROWS
Private Sub Document_Open()
Dim oTB As CommandBar
Set oTB = Application.CommandBars.Add(Name:="MyToolBar").Visible = True
oTB.Controls.Add Type:=msoControlButton, ID:=23, Before:=1, Temporary:=True
oTB.Left = 0
oTB.Position = msoBarTop
oTB.RowIndex = msoBarRowLast
Stop
'UNCOMMENT TO DELETE TOOLBAR
'Application.CommandBars("MyToolBar").Delete
End Sub
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|