arkadaşlar aşağıdaki döngü ile excel hücresinden textbox'a veri alıyorum. fakat döngüde tanımladığım renklendirme işlemi olmuyor, veriler gri renk te sorun nerde acaba ?
For X = 1 To 8
With UserForm2
.Controls("textbox" & X + 25).Text = Format(Cells(21, X), "##,#00")
.Controls("textbox" & X + 25).Font.Bold = True
.Controls("textbox" & X + 25).ForeColor = vbRed
End With
Next
For X = 1 To 8
With UserForm2
.Controls("textbox" & X + 25).Text = Format(Cells(21, X), "##,#00")
.Controls("textbox" & X + 25).Font.Bold = True
.Controls("textbox" & X + 25).ForeColor = vbRed
End With
Next
