Code:
Public Function BtnProperties(frm As Form)
For Each ctl In frm.Controls
If ctl.ControlType = acCommandButton Then
ctl.QuickStyle = 37
End If
I'm calling tis code in the onload of all my forms.
Problem is, mnost of the form's comand buttons are honoring the QuickStyle. But, on one nform none of the buttons are are using the quickstyle and on another form one button is and the other 2 isn't.
The only diffeence I can see is the top, bottom, left and right padding values.
And matching them up doesn't work.
Any ideas what's happening here??
James