When I compile, it directs me to:
Code:
Public Function ShowFontDialog() As BooleanDim f As FormFontInfo
' Set some Defaults for the Font Dialog
With f
.color = m_ForeColor
.height = m_FontSize '12
.Weight = m_FontWeight
.Italic = m_FontItalic
.UnderLine = m_FontUnderline
.Name = m_FontName '"Arial"
End With
' Call the Font Dialog
blRet = DialogFont(f)
If blRet Then
' Copy users selections over to
' our class vars
With f
m_FontName = .Name
m_FontSize = .height
m_FontWeight = .Weight
m_FontItalic = .UnderLine
m_FontUnderline = .UnderLine
End With
End If
End Function
The red hightlight is where it directs me and states "User type not defined". I have a 64-bit system and Access 2010 and the database is in Access 2007 format. What could be wrong?
Thanks for the help... =)