Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default cannot find code

Using messages previously posted on this site I used code to create a custom
toolbar when file is opened. I now need to edit the toolbar, but I can't
locate the original code.

Here is partial content of previous message (which I also cannot locate).

From: Dave Peterson )
Subject: Separate Code and Data (Newbie Q)
View this article onlyNewsgroups: microsoft.public.excel
Date: 2004-06-28 15:05:08 PST
The code can be in any workbook. But if you have to click on a button (on
aworksheet?), then you're going to have a little trouble--since the
worksheetwith the button will be the activesheet.One way around it is to use
Tools|macro|macros..., to run the macro.Another way is to save your workbook
with the code as an addin. (In thefile|saveAs|Save as type dropdown box.)But
if your workbook is an addin, you'll need a different method to invoke
themacro.I really like John Walkenbach's MenuMaker for creating a nice access
to mymacros.http://j-walk.com/ss/excel/tips/tip53.htmAnother way is to add
another toolbar. I'd create the toolbar when the workbookwith the code opens
and delete the toolbar when you close that workbook.Here's a shell that I
keep when I want to add a custom toolbar:In a general module:Option
ExplicitSub create_menubar() Dim i As Long Dim mac_names As Variant
Dim cap_names As Variant Dim tip_text As Variant Call
remove_menubar mac_names = Array("mac1", _
"mac2", _ "mac3") cap_names =
Array("caption 1", _ "caption 2", _
"caption 3") tip_text = Array("tip 1", _
"tip 2", _ "tip 3") With
Application.CommandBars.Add .Name = "MyToolbar"
Read the rest of this message... (61 more lines)

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default cannot find code

Hi Gail

Search Google for the subject
http://groups.google.com/advanced_group_search

Or use my add-in
http://www.rondebruin.nl/Google.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Gail Hines" <Gail wrote in message ...
Using messages previously posted on this site I used code to create a custom
toolbar when file is opened. I now need to edit the toolbar, but I can't
locate the original code.

Here is partial content of previous message (which I also cannot locate).

From: Dave Peterson )
Subject: Separate Code and Data (Newbie Q)
View this article onlyNewsgroups: microsoft.public.excel
Date: 2004-06-28 15:05:08 PST
The code can be in any workbook. But if you have to click on a button (on
aworksheet?), then you're going to have a little trouble--since the
worksheetwith the button will be the activesheet.One way around it is to use
Tools|macro|macros..., to run the macro.Another way is to save your workbook
with the code as an addin. (In thefile|saveAs|Save as type dropdown box.)But
if your workbook is an addin, you'll need a different method to invoke
themacro.I really like John Walkenbach's MenuMaker for creating a nice access
to mymacros.
http://j-walk.com/ss/excel/tips/tip53.htmAnother way is to add
another toolbar. I'd create the toolbar when the workbookwith the code opens
and delete the toolbar when you close that workbook.Here's a shell that I
keep when I want to add a custom toolbar:In a general module:Option
ExplicitSub create_menubar() Dim i As Long Dim mac_names As Variant
Dim cap_names As Variant Dim tip_text As Variant Call
remove_menubar mac_names = Array("mac1", _
"mac2", _ "mac3") cap_names =
Array("caption 1", _ "caption 2", _
"caption 3") tip_text = Array("tip 1", _
"tip 2", _ "tip 3") With
Application.CommandBars.Add .Name = "MyToolbar"
Read the rest of this message... (61 more lines)



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default cannot find code

I'm afraid I wasn't clear in my previous post. I don't know where to look in
the Excel file for the code that creates my new toolbar. My code was
supposed to create the toolbar upon file/open then delete it when the file
closed. I've searched every bit of code in the project, but the code does
not appear. How can I access the code to create more buttons on the bar?



"Ron de Bruin" wrote:

Hi Gail

Search Google for the subject
http://groups.google.com/advanced_group_search

Or use my add-in
http://www.rondebruin.nl/Google.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Gail Hines" <Gail wrote in message ...
Using messages previously posted on this site I used code to create a custom
toolbar when file is opened. I now need to edit the toolbar, but I can't
locate the original code.

Here is partial content of previous message (which I also cannot locate).

From: Dave Peterson )
Subject: Separate Code and Data (Newbie Q)
View this article onlyNewsgroups: microsoft.public.excel
Date: 2004-06-28 15:05:08 PST
The code can be in any workbook. But if you have to click on a button (on
aworksheet?), then you're going to have a little trouble--since the
worksheetwith the button will be the activesheet.One way around it is to use
Tools|macro|macros..., to run the macro.Another way is to save your workbook
with the code as an addin. (In thefile|saveAs|Save as type dropdown box.)But
if your workbook is an addin, you'll need a different method to invoke
themacro.I really like John Walkenbach's MenuMaker for creating a nice access
to mymacros.
http://j-walk.com/ss/excel/tips/tip53.htmAnother way is to add
another toolbar. I'd create the toolbar when the workbookwith the code opens
and delete the toolbar when you close that workbook.Here's a shell that I
keep when I want to add a custom toolbar:In a general module:Option
ExplicitSub create_menubar() Dim i As Long Dim mac_names As Variant
Dim cap_names As Variant Dim tip_text As Variant Call
remove_menubar mac_names = Array("mac1", _
"mac2", _ "mac3") cap_names =
Array("caption 1", _ "caption 2", _
"caption 3") tip_text = Array("tip 1", _
"tip 2", _ "tip 3") With
Application.CommandBars.Add .Name = "MyToolbar"
Read the rest of this message... (61 more lines)




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default cannot find code

Hi

Using messages previously posted on this site I used code to create a custom
toolbar when file is opened. I now need to edit the toolbar, but I can't
locate the original code.


Maybe you copy it in your personal.xls
Do you see this file when you do Alt-F11?



--
Regards Ron de Bruin
http://www.rondebruin.nl


"hinesgg" wrote in message ...
I'm afraid I wasn't clear in my previous post. I don't know where to look in
the Excel file for the code that creates my new toolbar. My code was
supposed to create the toolbar upon file/open then delete it when the file
closed. I've searched every bit of code in the project, but the code does
not appear. How can I access the code to create more buttons on the bar?



"Ron de Bruin" wrote:

Hi Gail

Search Google for the subject
http://groups.google.com/advanced_group_search

Or use my add-in
http://www.rondebruin.nl/Google.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Gail Hines" <Gail wrote in message ...
Using messages previously posted on this site I used code to create a custom
toolbar when file is opened. I now need to edit the toolbar, but I can't
locate the original code.

Here is partial content of previous message (which I also cannot locate).

From: Dave Peterson )
Subject: Separate Code and Data (Newbie Q)
View this article onlyNewsgroups: microsoft.public.excel
Date: 2004-06-28 15:05:08 PST
The code can be in any workbook. But if you have to click on a button (on
aworksheet?), then you're going to have a little trouble--since the
worksheetwith the button will be the activesheet.One way around it is to use
Tools|macro|macros..., to run the macro.Another way is to save your workbook
with the code as an addin. (In thefile|saveAs|Save as type dropdown box.)But
if your workbook is an addin, you'll need a different method to invoke
themacro.I really like John Walkenbach's MenuMaker for creating a nice access
to mymacros.
http://j-walk.com/ss/excel/tips/tip53.htmAnother way is to add
another toolbar. I'd create the toolbar when the workbookwith the code opens
and delete the toolbar when you close that workbook.Here's a shell that I
keep when I want to add a custom toolbar:In a general module:Option
ExplicitSub create_menubar() Dim i As Long Dim mac_names As Variant
Dim cap_names As Variant Dim tip_text As Variant Call
remove_menubar mac_names = Array("mac1", _
"mac2", _ "mac3") cap_names =
Array("caption 1", _ "caption 2", _
"caption 3") tip_text = Array("tip 1", _
"tip 2", _ "tip 3") With
Application.CommandBars.Add .Name = "MyToolbar"
Read the rest of this message... (61 more lines)






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Code to find code D. Excel Discussion (Misc queries) 2 August 12th 07 06:16 PM
Help with this Find code please [email protected] Excel Programming 2 December 18th 03 03:05 AM
VBA code 'find next' Simon[_10_] Excel Programming 3 October 29th 03 08:02 AM
Find Code Bob Phillips[_5_] Excel Programming 0 July 25th 03 01:53 PM
VBA Code to FIND Christine[_4_] Excel Programming 3 July 17th 03 08:24 PM


All times are GMT +1. The time now is 12:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"