OLEObject Update LinkedCell witch VBA Code for a Check-Box

PZiegler12

New Member
Joined
Aug 25, 2015
Messages
3
Hi,

I have this code which creates an ActiveX Check-Box with vba:

Code:
With .OLEObjects.Add(ClassType:="Forms.CheckBox.1", Link:=False, DisplayAsIcon:=False, _
         Left:=30, _
         Top:=30, _
         Width:=20, _
         Height:=5)
     .Name = "check_Sb_"
     .Object.Caption = "checkbox Sb"
     .Object.Value = False
     .LinkedCell = Cells(10, 13).Address(0, 0)
     .Enabled = True
End With


So far. Now how can I update the LinkedCell immidiately after I created the CheckBox?
Is there a OLEObject-Method? The Value which is updated can be "WAHR" oder "FALSCH"
which is written to the LinkedCell.

Thanks for Answers
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
I found out a workaround of this issue. I symply write into the LinkedCell after it is referenced the "WAHR" oder "FALSCH" value and the
checkbox changed automatically.
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,825
Members
449,096
Latest member
Erald

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