VBA Problem Assigning Macro To Shape

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,562
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I am having difficulty assigning a macro to a grouped shaped. I took this from a recorded macro:
Code:
wsfront.Shapes.Range(Array("grp_login1")).OnAction = "TimeClock.xlsm!Login.login"

It is included in this code ...
Code:
Private Sub Workbook_Open()

Declarations
wsfront.Shapes("txtbx_msg1").Visible = True
wsfront.Shapes("txtbx_msg2").Visible = False
wsfront.Shapes.Range(Array("grp_login1")).OnAction = "TimeClock.xlsm!Login.login"
Application.OnTime Now + TimeSerial(0, 0, 1), "UpdateTimer"

End Sub

The OnAction line is giving me the error : "Object doesn't support this property or method"
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi

Try:

VBA Code:
wsfront.Shapes("grp_login1").OnAction = "TimeClock.xlsm!Login.login"
 
Upvote 0
Sorry for the delay in acknowledging your support PGC.
Thank you ... your suggestion eliminated the error!
 
Upvote 0

Forum statistics

Threads
1,213,564
Messages
6,114,334
Members
448,567
Latest member
Kuldeep90

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