this works in vb6 but as a newbie to vb2005 I am at loss to convert
Also, after the font dialog box is opened (.showdialog)
Thanks for the help.
Code:
If rtfText.SelBold = True Then
rtfText.SelBold = False
Call BoldStatus(False)
Else
rtfText.SelBold = True
Call BoldStatus(True)
End If
Code:
fdgLetters.ShowDialog()
rtfText.SelFontName = cdlText.FontName 'how to set font?
rtfText.SelFontSize = cdlText.FontSize 'How to set font size?