Activex button not working

mtheriault2000

Well-known Member
Joined
Oct 23, 2008
Messages
826
Hello

I had this problem since a long time. I decided to resolved it Activex button on my sheet are not working. Each time I use one of them, It show that I select them like if I want to modify them. They don't execute their task.

Excuse my English

Martin
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
The most likely problem is an office update changing the fm20.dll library. Read the instructions here for some steps to try and resolve the issue (the parts about deleting .exd files are the most likely): Office Update breaks ActiveX controls | Excel Matters

If at all possible, use Form controls instead as they are a lot more stable.
 
Upvote 0
Post your code

Exemple. I got many button like this one. All activex function are not working. All other macro work flawlessly



Private Sub SpinButton19_Change() On Error Resume Next
Allowspin = True
SpinChange = SpinButton19.Value - 10
Value1 = LongLimitEntry_.Value
Value1 = Value1 + ((SpinChange) * Worksheets("Data_In_Out").Range("BigPipMouvementPerClick").Value)
LongLimitEntry_ = Value1
SpinButton19.Value = 10
Allowspin = False
Application.EnableEvents = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,563
Messages
6,114,329
Members
448,564
Latest member
ED38

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