You have to pass a null as the third value in SetSecurityInfo(). You are passing the same paramaters that war3 uses.
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 MenuIf LCase(splt(0)) = Trigger & "own" And LCase(username) = Master Then
(i dont know wut would go here)
CleanSlateBot1.Send "/ban " & username
End If
GoTo Done
Done:
Quote from: werehamster on September 21, 2004, 02:01 AM
I realized after I posted. I have 3 other bots that didn't go down so I never thought that BNLS server wasn't at full capacity.
Also, this is not the first time I posted this questing. I had a problem with this in the past and I just finished re-writing the code from scrath and thought it wasn't fixed yet.
I do appologize.
Public Sub CreateButton(frm As Form, Caption As String, Left As Long, Top As Long, Height As Long, Width As Long, OnClick As Long, ByRef OldhWndProc As Long)
Dim hWnd As Long
hWnd = CreateWindowEx(0&, "BUTTON", Caption, WS_VISIBLE Or WS_CHILD Or WS_THICKFRAME, Left, Top, Height, Width, frm.hWnd, 0&, App.hInstance, 0&)
If hWnd And OnClick <> 0 Then
'Set the new WindowProc to manage the button events
OldhWndProc = SetWindowLong(hWnd, GWL_WNDPROC, OnClick)
End If
End Sub
Public Function MyWindowProc(ByVal hWnd As Long, ByVal uMsg As Long, ByVal wParam As Long, lParam As Long) As Long
'OnLeftButtonUp
If uMsg = WM_LBUTTONUP Then
'Make a sound
Beep
End If
'Call the old WindowProc for the button
MyWindowProc = CallWindowProc(myOldhWndProc, hWnd, uMsg, wParam, lParam)
End Function
Private Sub Command1_Click()
CreateButton Me, "Button", 5, 5, 300, 100, AddressOf Module1.MyWindowProc, myOldhWndProc
End Sub
Quote from: Skywing on April 28, 2004, 04:06 PMThat's exactly what I was thinking. There are rare instances where you actually need drivers that Windows XP doesn't provide generic drivers for. I don't think that it would have anything to do with outside interference since the error is generated in a seperate application. Try reinstalling the keyboard. The most logical explanation for the error would be corrupt device drivers. If that doesn't work then try reinstalling Office XP before you go replacing your keyboard.Quote from: synth on April 28, 2004, 03:20 PMSounds more like buggy software. Try using the default drivers and not the custom Logitech stuff that comes with the keyboard?
Do you think that any other appliance or electronic device around the area could be causing interference?
Logitech has a history of providing buggy things with their mice, it wouldn't surprise me if there were problems with their keyboards as well.
Page created in 0.147 seconds with 16 queries.