changing certain font

  • Thread starter Thread starter stephendeloach via AccessMonster.com
  • Start date Start date
S

stephendeloach via AccessMonster.com

Is there a way to change certain font in a form? I have a description field
and in the field I will have, for example, Hrs on Daywork Drilling 6/1/07 to
6/17/07, is there a way I can change the font of 6/1/07 to 6/17/07 to a
smaller size?
 
You can change it on the property sheet or using the formatting menu. You can
also change it dynamically in code. If the field name is description on a
form called MyForm then it would be ME.Description.fontsize=8
 
Back
Top