Dec 12, 2003 #1 Softop Programmer Sep 26, 2003 18 GB I need to format a textbox on a report to italics depending on the result of another field. i.e. Code: If Me.txtVerse = "C" Then Me.txtLine 'format to italics ??????? Else Me.txtLine 'format to normal ??????? End If Any idea how to do this?
I need to format a textbox on a report to italics depending on the result of another field. i.e. Code: If Me.txtVerse = "C" Then Me.txtLine 'format to italics ??????? Else Me.txtLine 'format to normal ??????? End If Any idea how to do this?
Dec 12, 2003 Thread starter #2 Softop Programmer Sep 26, 2003 18 GB Don't worry - solved it myself! Code: If Me.txtVerse = "C" Then Me.txtLine.FontItalic = True Else Me.txtLine.FontItalic = False End If Thanks for looking anyway! Upvote 0 Downvote
Don't worry - solved it myself! Code: If Me.txtVerse = "C" Then Me.txtLine.FontItalic = True Else Me.txtLine.FontItalic = False End If Thanks for looking anyway!
Dec 12, 2003 #3 JR2913 MIS Sep 21, 2002 115 GB Try Me.txtLine.FontItalic = True John R Upvote 0 Downvote