command button if

tubar

Registered User.
Local time
Today, 05:54
Joined
Jul 13, 2006
Messages
190
Private Sub Command38_Click()
If Me.Command38_Click Then
Me.[PREP] = True
Else
Me.[PREP] = False
End If
End Sub

can someone fix this
 
Code:
Private Sub Command38_Click()
If [B]Me.Command38_Click[/B] Then
Me.[PREP] = True
Else
Me.[PREP] = False
End If
End Sub

What are you trying to do? this is a circular reference.
 
fix what ?
 
Command38 is already clicked then what to decide if it is clicked???
 

Users who are viewing this thread

Back
Top Bottom