quote:
Originally posted by Mike
To show another form:
code:
frmName.Show
To change the background colour of the form:
code:
frmName.BackColor = vbBlack 'Black
And for the font colour...
Well, try doing something like this:
code:
Dim ctrl as Control
For Each ctrl in Me 'If this doesnt work, try changing Me to Controls
If TypeOf ctrl is label then
ctrl.Forecolor = vbWhite 'White
Next ctrl
is there a way for the font and colors, that i can just have them as option buttons?