Background
Total Access Memo lets you add rich text format (RTF) memos to Microsoft Access with sophisticated editing and spell checking.
Question
How do I set a default font in Total Access Memo?
Answer
For Total Access Memo you can set the default font and other settings in two ways:
1. Manually set the font property in the property sheet:
2. Programmatically set the font in an event such as Form_Load:
Private Sub Form_Load() Me.FMSMemo0.Object.Font.Name = "Arial" Me.FMSMemo0.Object.Font.Size = 14 Me.FMSMemo0.Object.Font.Bold = True End Sub
Comments
0 comments
Please sign in to leave a comment.