//flex table opened by JP

Click to See Complete Forum and Search --> : easy vb question


civic91dx
03-03-2003, 10:14 AM
ok i got this program that has a form with a couple of tabs(one of the microsoft component). and my problem was that i was trying to change the color of the backcolor but it wouldnt work. does anyone know how to ?
thanks carlos

Cpl_Squirrel
03-03-2003, 10:49 AM
Which version of VB are you working with?

civic91dx
03-03-2003, 11:10 AM
visual studio 6 pro

AltatemTC
03-04-2003, 04:17 PM
'-- Declare and Instantiate the form
Dim fForm as frmForm
Set fForm = New frmForm

'-- Set the background color
fForm.BackColor = 0 '-- turn it black

'-- If you are using code within the form then use
Me.BackColor = 0