change font bold in report with vba

  • Thread starter Thread starter sapta
  • Start date Start date
S

sapta

dear experts,

what is the code to change Font became bold or vice versa,
in a report (run time).
i use this code but not work (object doesn't support the
property):

me.texboxt1.font.bold = true

any help would be appreciated
 
sapta said:
dear experts,

what is the code to change Font became bold or vice versa,
in a report (run time).
i use this code but not work (object doesn't support the
property):

me.texboxt1.font.bold = true


FontBold is one word.

Me.textbox1.FontBold = True
 
Back
Top