lol my coding has improved by alot since this topic began
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
'say that youv'e already obtained the users access
Public Sub RunData(Message As String)
On Error Goto ErrInfo
Dim CmdSplt() As String,Command() As String
CmdSplt() = Split(Message," ",2)
Command(0) = CmdSplt(0)
Command(1) = CmdSplt(1)
Select Case LCase(Command(0))
Case "say","s"
Send " " & Command(1)
Case "op","designate"
Send "/designate " & Command(1)
Send "/rejoin"
End Select
ErrInfo:
End Sub
Public Sub AddUsers()
Dim String1 As String,S() As String
Open App.Path & "\Users.txt" For #1 As Input
Do Until EOF(1)
Line Input #1,String1
S() = Split(String1," ",2)
Form1.ListUser.Additem S(0)
Form1.ListAccess.Additem S(1)
Loop
Close #1
End Sub
Page created in 0.129 seconds with 16 queries.