Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi Dave, Thanks for all the help.( Same to you, ste mac :) ) What I would like is to write code that, like the buttons code : Sub testme() Dim myRng As Range Dim myCell As Range Dim wks As Worksheet Dim myBTN As Button Set wks = ActiveSheet With wks .Buttons.Delete 'remove existing buttons??? Set myRng = .Range("a1:a10") For Each myCell In myRng.Cells With myCell Set myBTN = .Parent.Buttons.Add(0, 0, 0, 0) myBTN.Name = "BTN_" & .Address(0, 0) myBTN.OnAction = ThisWorkbook.Name & "!myBTNmacro" myBTN.Caption = "Click Me" End With Next myCell End With End Sub Except that I would like the button to look like an image file. I there a property like myBtn.Image or something like that? Or do I hav to add an image that is clickable? If so, how do I do it -- junx1 ----------------------------------------------------------------------- junx13's Profile: http://www.excelforum.com/member.php...nfo&userid=562 View this thread: http://www.excelforum.com/showthread.php?threadid=26151 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
have toggle buttons but everytime print preview buttons move | Excel Discussion (Misc queries) | |||
Draw Buttons | Excel Programming | |||
Draw Buttons | Excel Programming | |||
Draw Buttons | Excel Programming | |||
Control Buttons vs. Command Buttons | Excel Programming |