Q: Changing Fontpropertys at runtime
As I see It I have to walk throuh every control and choose fontbold =
false via the font dialog. And this property cant be copied and pasted.
I tried to change in the ASCII-file but some controls does not save the...
c.sehlstedt@consultec.se
A:
you can use the forms collection:
Sub ChangeFontBold(x As Form)
Dim Control
For Each Control In x.Controls
If TypeOf Control Is TextBox Then Control.FontBold = False
Next Control
End Sub
Set it in every form_load event; it wil take some tiome of starting
but what a millisecond now a day....
Return