Private Sub CommandButton1_Click()
Dim ctl As Control
For Each ctl In Me.Form
If ctl.ControlType = acBoundObjectFrame Then
If (ctl.Name = Me.TextBox1.Value) Then
ctl.BackColor = GetHexColor(Me.TextBox2.Value)
End If
End If
Next ctl
Set ctl = Nothing
End Sub
bu kod ile Excelde
"Me.TextBox1.Value" değerine formdan manuel olarak "Frame8"
"Me.TextBox2.Value" değerine formdan manuel olarak "#AAECDF" yazacağım butona bastığımda rengi değişecek kodda
"Me.Form" ve "acBoundObjectFrame" kalimelerinde hata veriyor nasıl yazmam lazım