anixon Posted December 21, 2006 Share Posted December 21, 2006 Netcomm.ocx and its upgrade has been instaled. The AutoIT script is compiled using the Beta version of the software. The bluetooth modem responds to the modem query command in Windows XP. The code queries the modem (Bluetooth flashes on the handset) Blue screen of death occurs after this event with the following information: [RQL_NOT_LESS_OR_EQUAL] STOP 0X0000000A (0X0000FFDF, 0X00000002, 0X00000001, 0X806FFA83) This is the code CODE $Time2Wait = 5000 dim $FromModem = "" $ModemString = "ATZ" & ";" & @CR $com = ObjCreate ("NETCommOCX.NETComm") With $com .CommPort = 5 .PortOpen = True .Settings = "9600,N,8,1" .InBufferCount = 0 .Output = $ModemString EndWith $StopWatch = TimerInit() While 1 If $com.InBufferCount Then $FromModem = $FromModem & $com.InputData If StringInStr($FromModem, "OK") Then ExitLoop EndIf EndIf If (TimerDiff($StopWatch) > $Time2Wait) Then ExitLoop EndIf WEnd Help would be appreciated Ant Link to comment Share on other sites More sharing options...
HackerZer0 Posted December 29, 2006 Share Posted December 29, 2006 this happened while i was using my dad's laptop 2 or 3 times with a bluetooth dongle...hmm.... i thought it was the computer overheating because it was very hot to the touch, so i turned it off and let it sit, and it worked fine with no errors afterwards Earn money on CASHCRATE by sitting around doing nothing.. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now