21-08-2008, 09:33 PM
Make two text boxes call them txtPlayerName and txtPlayerAccess. Make a label and call it lblSetAccess.
Double click the label. Enter this code.
Double click the label. Enter this code.
Code:
Private Sub lblSetAccess_Click()
If GetPlayerAccess(MyIndex) < ADMIN_CREATOR Then Exit Sub
Call SendSetAccess(txtPlayerName.Text, txtPlayerAccess.Text)
End Sub