Format Text using VBA

  • Thread starter Thread starter JK
  • Start date Start date
J

JK

Would anyone know where I could find an example that would show me how to
alter the formatting of text using VBA? I want to be able to change the font,
size and bold/italic info using visual basic.

Thanks,
Jason
 
Me.ControlName.FontSize = 10
Me.ControlName.FontName = "Tahoma"
Me.ControlName.FontBold = 0


try that...
--
Jack Leach
www.tristatemachine.com

"I haven't failed, I've found ten thousand ways that don't work."
-Thomas Edison (1847-1931)
 
Back
Top