Ok, I feel really stupid now, there is "code" behind the form. Did I just hear a great big duuuuhhhhhhh. I am sorry, my brain is not working this morning. By the way, this code was inside the form and not in an external module.
Option Compare Database
Option Explicit
'**************** Code Start *************
Dim mstPrevControlBlue As String
Dim mstPrevControlGreen As String
Dim mstPrevControlRed As String
Dim mstPrevControlBlack As String
Function fSetFontBoldBlue(stControlName As String)
On Error Resume Next
With Me(mstPrevControlBlue)
.ForeColor = 10485760
End With
mstPrevControlBlue = stControlName
With Me(stControlName)
.ForeColor = 16711680
End With
End Function
Function fSetFontBoldRed(stControlName As String)
On Error Resume Next
With Me(mstPrevControlRed)
.ForeColor = 255
End With
mstPrevControlRed = stControlName
With Me(stControlName)
.ForeColor = 8421631
End With
End Function
Function fSetFontBoldGreen(stControlName As String)
On Error Resume Next
With Me(mstPrevControlGreen)
.ForeColor = 32768
End With
mstPrevControlGreen = stControlName
With Me(stControlName)
.ForeColor = 65280
End With
End Function
Function fSetFontBoldBlack(stControlName As String)
On Error Resume Next
With Me(mstPrevControlBlack)
.ForeColor = 0
End With
mstPrevControlBlack = stControlName
With Me(stControlName)
.ForeColor = 8421504
End With
End Function
Function fRemoveFontBold()
On Error Resume Next
With Me(mstPrevControlBlue)
If .ForeColor = 16711680 Then .ForeColor = 10485760
End With
With Me(mstPrevControlGreen)
If .ForeColor = 65280 Then .ForeColor = 32768
End With
With Me(mstPrevControlRed)
If .ForeColor = 8421631 Then .ForeColor = 255
End With
With Me(mstPrevControlBlack)
If .ForeColor = 8421504 Then .ForeColor = 0
End With
End Function
'***************** Code End ****************
[This message has been edited by Talismanic (edited 06-07-2001).]