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