Display font size for DataSheet view

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
 
S

Sandra Daigle

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.
 
K

Kevin

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
.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top