Display font size for DataSheet view

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

I have a subform which is displayed in datasheet view. No
matter what I seem to do, I can't get the displayed font
sizxe to change. I hange it in the form propertioes, but
see no change as long as it is displayed in datasheet
voew. If I change to, it displayes correctly.

Any help would be appreciated.

Kevin
 
It is a different property - one that I believe you have to set in code:

Me.DatasheetFontName = "centaur"
Me.DatasheetFontHeight = 14

This code would go into the subform's class module in the open event.
 
Thankyou!

Kevin
-----Original Message-----
It is a different property - one that I believe you have to set in code:

Me.DatasheetFontName = "centaur"
Me.DatasheetFontHeight = 14

This code would go into the subform's class module in the open event.

--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.

I have a subform which is displayed in datasheet view. No
matter what I seem to do, I can't get the displayed font
sizxe to change. I hange it in the form propertioes, but
see no change as long as it is displayed in datasheet
voew. If I change to, it displayes correctly.

Any help would be appreciated.

Kevin
.
 
Back
Top