U
undrline via AccessMonster.com
I need to convert it back from a string into code. I'm a newbie - so I'm
really looking for a "how-to."
Function mouseover(buttonname)
Dim buttonname2 As String
buttonname2 = "Me." & buttonname & "a.Visible"
buttonname = "Me." & buttonname & ".Visible"
' BROKEN PART . . . the string is not equal to true or false, it is equal to
the string value
If buttonname = True Then
buttonname = False
buttonname2 = True
End If
End Function
really looking for a "how-to."
Function mouseover(buttonname)
Dim buttonname2 As String
buttonname2 = "Me." & buttonname & "a.Visible"
buttonname = "Me." & buttonname & ".Visible"
' BROKEN PART . . . the string is not equal to true or false, it is equal to
the string value
If buttonname = True Then
buttonname = False
buttonname2 = True
End If
End Function