Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a control button on a UserForm and would like to make it possible for
the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Don't believe editing an image is a function supported by the MS forms 2.0
image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a
way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message ... Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You want to edit the image in the button you clicked. Again, I don't
believe there is any support for that since even in manual mode, the toolbars are disable when you edit the image. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message ... Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Could I display the desired button on a toolbar, then call the procedure
from a userform or separate toolbar? Is there anyway you can think of that I could allow a user to edit the image of a button? What I am in the infant stages of doing is creating a utility that helps create/manage toolbars, menu bars, and shortcut menus. I could limit the utility to the use of builtin FaceIDs, but was looking for a way to accomodate custom images as well. "Tom Ogilvy" wrote in message ... You want to edit the image in the button you clicked. Again, I don't believe there is any support for that since even in manual mode, the toolbars are disable when you edit the image. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message ... Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
toolbars/menu bars go away in Office 12
http://blogs.msdn.com/bowerm/archive...13/464798.aspx so you might be inventing something with little useful life. In any event, you would probably be better off writing your own icon editor and learning how to read and write the bitmap. Check http://msdn.microsoft.com Then again, someone may be able to say how to do what you want. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... Could I display the desired button on a toolbar, then call the procedure from a userform or separate toolbar? Is there anyway you can think of that I could allow a user to edit the image of a button? What I am in the infant stages of doing is creating a utility that helps create/manage toolbars, menu bars, and shortcut menus. I could limit the utility to the use of builtin FaceIDs, but was looking for a way to accomodate custom images as well. "Tom Ogilvy" wrote in message ... You want to edit the image in the button you clicked. Again, I don't believe there is any support for that since even in manual mode, the toolbars are disable when you edit the image. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message ... Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Tom for all the replies. I'll probably continue with the project
just to further my knowledge, even if it will be obsolete in the near future! "Tom Ogilvy" wrote in message ... toolbars/menu bars go away in Office 12 http://blogs.msdn.com/bowerm/archive...13/464798.aspx so you might be inventing something with little useful life. In any event, you would probably be better off writing your own icon editor and learning how to read and write the bitmap. Check http://msdn.microsoft.com Then again, someone may be able to say how to do what you want. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... Could I display the desired button on a toolbar, then call the procedure from a userform or separate toolbar? Is there anyway you can think of that I could allow a user to edit the image of a button? What I am in the infant stages of doing is creating a utility that helps create/manage toolbars, menu bars, and shortcut menus. I could limit the utility to the use of builtin FaceIDs, but was looking for a way to accomodate custom images as well. "Tom Ogilvy" wrote in message ... You want to edit the image in the button you clicked. Again, I don't believe there is any support for that since even in manual mode, the toolbars are disable when you edit the image. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message ... Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This might help get up started done the do-it-yourself route.
http://www.andypope.info/vba/buttoneditor.htm Cheers Andy M. Authement wrote: Thanks Tom for all the replies. I'll probably continue with the project just to further my knowledge, even if it will be obsolete in the near future! "Tom Ogilvy" wrote in message ... toolbars/menu bars go away in Office 12 http://blogs.msdn.com/bowerm/archive...13/464798.aspx so you might be inventing something with little useful life. In any event, you would probably be better off writing your own icon editor and learning how to read and write the bitmap. Check http://msdn.microsoft.com Then again, someone may be able to say how to do what you want. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... Could I display the desired button on a toolbar, then call the procedure from a userform or separate toolbar? Is there anyway you can think of that I could allow a user to edit the image of a button? What I am in the infant stages of doing is creating a utility that helps create/manage toolbars, menu bars, and shortcut menus. I could limit the utility to the use of builtin FaceIDs, but was looking for a way to accomodate custom images as well. "Tom Ogilvy" wrote in message . .. You want to edit the image in the button you clicked. Again, I don't believe there is any support for that since even in manual mode, the toolbars are disable when you edit the image. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message . .. Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Andy. I happened to stumble across your add-in yesterday through a
search...I took a look at it this morning (thank you for allowing others to look at your work) and will have to spend much more time trying to understand it. "Andy Pope" wrote in message ... This might help get up started done the do-it-yourself route. http://www.andypope.info/vba/buttoneditor.htm Cheers Andy M. Authement wrote: Thanks Tom for all the replies. I'll probably continue with the project just to further my knowledge, even if it will be obsolete in the near future! "Tom Ogilvy" wrote in message ... toolbars/menu bars go away in Office 12 http://blogs.msdn.com/bowerm/archive...13/464798.aspx so you might be inventing something with little useful life. In any event, you would probably be better off writing your own icon editor and learning how to read and write the bitmap. Check http://msdn.microsoft.com Then again, someone may be able to say how to do what you want. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... Could I display the desired button on a toolbar, then call the procedure from a userform or separate toolbar? Is there anyway you can think of that I could allow a user to edit the image of a button? What I am in the infant stages of doing is creating a utility that helps create/manage toolbars, menu bars, and shortcut menus. I could limit the utility to the use of builtin FaceIDs, but was looking for a way to accomodate custom images as well. "Tom Ogilvy" wrote in message .. . You want to edit the image in the button you clicked. Again, I don't believe there is any support for that since even in manual mode, the toolbars are disable when you edit the image. -- Regards, Tom Ogilvy "M. Authement" wrote in message ... My mistake. I wrote UserForm but was actually thinking Toolbar. Is there a way to allow the user to edit the button image on a Toolbar by cliking on the button (something in the _Click Event)? "Tom Ogilvy" wrote in message .. . Don't believe editing an image is a function supported by the MS forms 2.0 image control. -- Regards, Tom Ogilvy "M. Authement" wrote in message .. . I have a control button on a UserForm and would like to make it possible for the user to edit the image. Is there a way to call Edit Button Image or some other way to accomplish this? Thanks. -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - Edit button image | Excel Worksheet Functions | |||
Edit Button Image Excel 2007 | Excel Discussion (Misc queries) | |||
Edit Button Image in Excel 2007? | Excel Discussion (Misc queries) | |||
image edit control | Excel Programming | |||
Image Edit and WebBrowser controls | Excel Programming |