![]() |
#1
|
|||
|
|||
![]()
Hi,
I wish to make a macro which will show/hide a specific toolbar. Eg I wish to have a macro to show/hide my "Screen Print" Toolbar, then another macro to show my "Vinyl" Toolbar. It would save me having to go into Options, Customisation, Command Bars then checking/unchecking appropriate toolbar. It sounds lazy but i have to switch these toolbars on and off many times during the day and also have to keep my screen area large so i can see the detail in my work... Do you know what i mean? I'll try and explain it a different way if necessary... Many thanks, Fungel |
#2
|
||||
|
||||
![]()
Hi!
You can get exactly that here from an awesome macro creator who goes by the name of wOxxOm: http://recentfiles.netfirms.com/ -John |
#3
|
||||
|
||||
![]()
Here you go:
Code:
Sub HideMyToolbar() If CommandBars("Screen Print").Visible Then CommandBars("Screen Print").Visible = False CommandBars("Vinyl").Visible = True Else CommandBars("Screen Print").Visible = True CommandBars("Vinyl").Visible = False End If End Sub |
#4
|
|||
|
|||
![]()
Cheers guys,
That is exactly what I needed ![]() My working life is now so much easier. Fungel |
#5
|
|||
|
|||
![]()
Hi,
The macro works great in Draw but not Photopaint. Do you know how to code it for Photopaint? Kind regards, Fungel |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Macro to hide all but the selected object | cooloox | Macros/Add-ons | 2 | 28-09-2008 21:19 |
HOW-TO implement in VB : show/hide ALL toolbars (as AI) | wOxxOm | CorelDRAW/Corel DESIGNER VBA | 7 | 09-03-2007 10:06 |
Hide/ Show Toolbars | ivelink | CorelDRAW/Corel DESIGNER VBA | 1 | 23-06-2005 11:17 |
Object colors on print do not match those on screen | Alex | FAQ | 1 | 06-06-2005 21:02 |
Assign macro to toolbar | joexx | Corel Photo-Paint VBA | 6 | 03-02-2004 23:05 |