G
Guest
hi
Private Sub accessallcontrol(ByVal paramcontrol As Control)
Dim childcontrol As Control
With paramcontrol
'If CType(paramcontrol, Control) =
System.Windows.Forms.RadioButton Then
'End If
.BackColor = Color.NavajoWhite
For Each childcontrol In .Controls
accessallcontrol(childcontrol)
Next
End With
but i want to change only combo box color different
and label box different color...
where to change it
Private Sub accessallcontrol(ByVal paramcontrol As Control)
Dim childcontrol As Control
With paramcontrol
'If CType(paramcontrol, Control) =
System.Windows.Forms.RadioButton Then
'End If
.BackColor = Color.NavajoWhite
For Each childcontrol In .Controls
accessallcontrol(childcontrol)
Next
End With
but i want to change only combo box color different
and label box different color...
where to change it