19-09-2008, 11:12 PM
I had to reprogram everything, in the new MS4, because I lost it all (Yay), but now in my new and improved Admin panel, when I try to push the ban button, to send a ban, to the char in the txtbox, it says that theres a compile error, method or data member not found. Heres what I have for the button:
Yes, the textbox is named txchar. However, when I double click the txtbox, it has this:
Sorry to pester you all about such trivial shit, but I'd really like a fix. I tried myself, but to no avail.
Code:
Private Sub btnban_Click()
If GetPlayerAccess(MyIndex) >= ADMIN_MAPPER Then
Call SendBan(Trim(txtchar.Text))
End If
End Sub
Yes, the textbox is named txchar. However, when I double click the txtbox, it has this:
Code:
Private Sub txtchar_Change(Index As Integer)
End Sub
Sorry to pester you all about such trivial shit, but I'd really like a fix. I tried myself, but to no avail.