Hi,
Is it possible to set the default font size and name, etc for the
Leban's Rich Text box. I am using the latest version 1.5 but the
following code does not work (but also produces no errors.)
Dim x As RTF2
Dim fnt As New StdFont
Set x = Me!rchtxtCalend ar.Object
With fnt
.Name = "arial"
.Size = 44
.Italic = False
.Bold = False
.Strikethrough = False
.Underline = False
End With
set x.Font = fnt
Thanks
Nigel
Is it possible to set the default font size and name, etc for the
Leban's Rich Text box. I am using the latest version 1.5 but the
following code does not work (but also produces no errors.)
Dim x As RTF2
Dim fnt As New StdFont
Set x = Me!rchtxtCalend ar.Object
With fnt
.Name = "arial"
.Size = 44
.Italic = False
.Bold = False
.Strikethrough = False
.Underline = False
End With
set x.Font = fnt
Thanks
Nigel
Comment