Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Pop Up icons

Hi,

I've designed a macro that allows the user to select icons
controlling macros to pop up on demand from a menu.
I also write the details of which icons are open to the
registry so that when Excel opens they are again displayed.

However they have a tendancy to pop up all over the place
rather than attach themselves neatly to the end of an
existing tool bar.

The user then has to drag them back to the top so that the
s/sheet can be displayed full screen.

Any suggestions as to how to control this...??

Rgds

Chris
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Pop Up icons

By icons, I'm thinking you mean CommandBar.
You've got a docking problem.

In the Excel Help:

Position Property Example

This example steps through the collection of command bars, docking the
custom command bars at the bottom of the application window and docking the
built-in command bars at the top of the window.

For Each bar In CommandBars
If bar.Visible = True Then
If bar.BuiltIn Then
bar.Position = msoBarTop
Else
bar.Position = msoBarBottom
End If
End If
Next




"Chris Gorham" wrote in message
...
Hi,

I've designed a macro that allows the user to select icons
controlling macros to pop up on demand from a menu.
I also write the details of which icons are open to the
registry so that when Excel opens they are again displayed.

However they have a tendancy to pop up all over the place
rather than attach themselves neatly to the end of an
existing tool bar.

The user then has to drag them back to the top so that the
s/sheet can be displayed full screen.

Any suggestions as to how to control this...??

Rgds

Chris



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
Unable to use Icons on QAT Magellan1994 Excel Discussion (Misc queries) 2 October 19th 09 06:51 PM
Toolbar icons Weece Excel Discussion (Misc queries) 1 May 21st 06 12:20 PM
Cannot locate icons ?? Koko New Users to Excel 3 August 3rd 05 08:52 AM
icons joser Setting up and Configuration of Excel 0 July 22nd 05 03:34 PM
icons John A Grandy Excel Programming 5 July 20th 03 11:01 PM


All times are GMT +1. The time now is 12:46 PM.

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

About Us

"It's about Microsoft Excel"