Properties Window in VB

  • Thread starter Thread starter gum
  • Start date Start date
G

gum

Hi very new to VB since only used to program in VBA.....
is there a way to set a default font when displaying the
properties window so i dont have to keep changing it to
the font it want when adding new buttons etc etc.....

ta.

gum
 
Hi Gym,
Set it on the parent control.
In normal words when you start,
Set the font from the form, if you not change it, all controls on it will
have that font.
I hope this helps a little bit?
Cor
 
* "gum said:
Hi very new to VB since only used to program in VBA.....
is there a way to set a default font when displaying the
properties window so i dont have to keep changing it to
the font it want when adding new buttons etc etc.....

Change the font of the container you are adding the controls to. Then
all controls you add to it at design time will use the font selected for
the container.
 
Back
Top