VBA button question

asad

Well-known Member
Joined
Sep 9, 2008
Messages
1,434
Hi All,

Can I have a button in excel workbook that have one half assigned to a macro and the other half gives an error message.

Thanks
Asad
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Can I have a button in excel workbook that have one half assigned to a macro and the other half gives an error message.
Yes, if you use an ActiveX CommandButton control. This is the general idea using the MouseDown event for the control (assuming the control's name was CommandButton1)...
Code:
[table="width: 500"]
[tr]
	[td]Private Sub CommandButton1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  If Y < CommandButton1.Height / 2 Then
    MsgBox "Call macro here"
  Else
    MsgBox "Display error message here"
  End If
End Sub[/td]
[/tr]
[/table]
 
Upvote 0
Beautiful.

Thanks a lot Rick.

Yes, if you use an ActiveX CommandButton control. This is the general idea using the MouseDown event for the control (assuming the control's name was CommandButton1)...
Code:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Private Sub CommandButton1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  If Y < CommandButton1.Height / 2 Then
    MsgBox "Call macro here"
  Else
    MsgBox "Display error message here"
  End If
End Sub[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top