21-08-2008, 05:45 AM
No, he's just saying you don't need to code exery little thing. Pictureboxes have a .Visible property which is already like a Boolean variable.
Code:
Private Sub picSpells_Click()
picPlayerSpells.Visible = not picPlayerSpells.Visible
If picPlayerSpells.Visible = True Then
CallSendData("spells" & END_CHAR)
End If
End Sub