M
mark
Hey.
I have a range of cells for which I would like to put a
checkbox in the center of each cell.
This works for creating the checkbox:
ActiveSheet.OLEObjects.Add(ClassType:="Forms.CheckBox.1",
Left:=ActiveCell.Left + ActiveCell.Width / 2 - 7,
Top:=ActiveCell.Top + ActiveCell.Height / 2 - 7,
Width:=14, Height _
:=14).Select
What I need now is to link the checkbox to the cell that
it was just placed in.
I know it's using the .LinkedCell property, but I haven't
found what vb code will do it.
??
Thanks.
I have a range of cells for which I would like to put a
checkbox in the center of each cell.
This works for creating the checkbox:
ActiveSheet.OLEObjects.Add(ClassType:="Forms.CheckBox.1",
Left:=ActiveCell.Left + ActiveCell.Width / 2 - 7,
Top:=ActiveCell.Top + ActiveCell.Height / 2 - 7,
Width:=14, Height _
:=14).Select
What I need now is to link the checkbox to the cell that
it was just placed in.
I know it's using the .LinkedCell property, but I haven't
found what vb code will do it.
??
Thanks.