Jump to content

[Solved] Some really weird errors in SciTE console


Recommended Posts

Hello everybody!

I get these weird errors in SciTE console:

[0801/210405:ERROR:tcp_socket_win.cc(335)] bind() returned an error: Only one usage of each socket address (protocol/network address/port) is normally permitted. (0x2740)
[0801/210405:ERROR:devtools_http_handler.cc(229)] Cannot start http server for devtools. Stop devtools.
[0801/210405:ERROR:browser_gpu_channel_host_factory.cc(119)] Failed to launch GPU process.
[0801/210405:ERROR:browser_gpu_channel_host_factory.cc(119)] Failed to launch GPU process.

My script:

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Misc.au3>
#NoTrayIcon

$title = "Hello"
$txt = "..."

; TODO: Make 4 of them
;~ #Region ### START Koda GUI section ### Form=
;~ $1_GUI = GUICreate($title, 370, 120, -1, -1)
;~ GUISetBkColor(0xFFFFFF)
;~ $1_B1 = GUICtrlCreateButton("B1", 136, 80, 107, 25)
;~ GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
;~ $1_B2 = GUICtrlCreateButton("B2", 248, 80, 107, 25)
;~ GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
;~ GUICtrlCreateLabel($txt, 16, 24, 338, 52)
;~ GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif")
;~ GUICtrlSetColor(-1, 0x000000)
;~ GUISetState(@SW_SHOW)
;~ #EndRegion ### END Koda GUI section ###

#Region ### START Koda GUI section ### Form=
$2_GUI = GUICreate($title, 370, 0?"Hi :)":120, -1, -1)
GUISetBkColor(0xFFFFFF)
$2_B1 = GUICtrlCreateButton("B1", 136, 80, 107, 25)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
$2_B2 = GUICtrlCreateButton(0?":D":"B2", 248, 80, 107, 25)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
GUICtrlCreateLabel($txt, 16, 24, 338, 52)
GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif")
GUICtrlSetColor(-1, 0x000000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

$u32dll = DllOpen("user32.dll")

;~ Opt("GUIOnEventMode", 1)
;~ GUICtrlSetOnEvent(-3, "_Exit") ; TODO: Fix, doesn't work with 2 GUI at the same time
;~ GUICtrlSetOnEvent($B11, "_Exit")
;~ GUICtrlSetOnEvent($B21, "_Exit")
;~ GUICtrlSetOnEvent($B12, "_Exit")
;~ GUICtrlSetOnEvent($B22, "_Exit")

;~ $pos1 = WinGetPos($GUI1)
;~ $pos2 = WinGetPos($GUI1)
While 1
;~  $pos1 = WinGetPos($GUI1)
;~  $pos2 = WinGetPos($GUI1)
;~  $x = $pos1[0] - 370
;~  $y = $pos1[1]
;~  WinMove($GUI2, "", $x, $y, $pos1[2], $pos1[3], 1)

    ; Press middle mouse button to close (it's gonna be a non malicious prank for my friend)
    If _IsPressed(4, $u32dll) Then Exit

    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            _Exit()
;~      Case $1_B1
;~          _Exit()
;~      Case $1_B2
;~          _Exit()
        Case $2_B1
            _Exit()
        Case $2_B2
            _Exit()
    EndSwitch
WEnd

Func _Exit()
    ; TODO: ...
;~  GUIDelete($1_GUI)
    GUIDelete($2_GUI)
    Exit
EndFunc   ;==>_Exit

How to get rid of these errors?

Edited by algiuxas

After switching years ago to Linux, sadly I don't use AutoIt anymore.

Link to comment
Share on other sites

Quote

>"C:\Program Files (x86)\AutoIt3\SciTE\..\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /run /prod /ErrorStdOut /in "C:\Users\Algirdas\Desktop\Tr.au3" /UserParams    
+>21:19:59 Starting AutoIt3Wrapper v.17.224.935.0 SciTE v.3.7.3.0   Keyboard:00000409  OS:WIN_10/  CPU:X64 OS:X64  Environment(Language:0809)  CodePage:0  utf8.auto.check:4
+>         SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE   UserDir => C:\Users\Algirdas\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper   SCITE_USERHOME => C:\Users\Algirdas\AppData\Local\AutoIt v3\SciTE 
>Running AU3Check (3.3.14.2)  from:C:\Program Files (x86)\AutoIt3  input:C:\Users\Algirdas\Desktop\Tr.au3
+>21:19:59 AU3Check ended.rc:0
>Running:(3.3.14.2):C:\Program Files (x86)\AutoIt3\autoit3_x64.exe "C:\Users\Algirdas\Desktop\Tr.au3"    
--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop
[0801/212000:ERROR:tcp_socket_win.cc(335)] bind() returned an error: Only one usage of each socket address (protocol/network address/port) is normally permitted. (0x2740)
[0801/212000:ERROR:devtools_http_handler.cc(229)] Cannot start http server for devtools. Stop devtools.
[0801/212000:ERROR:browser_gpu_channel_host_factory.cc(119)] Failed to launch GPU process.
[0801/212000:ERROR:browser_gpu_channel_host_factory.cc(119)] Failed to launch GPU process.
+>21:20:03 AutoIt3.exe ended.rc:0
+>21:20:03 AutoIt3Wrapper Finished.
>Exit code: 0    Time: 4.543

I get them after couple secounds of executing my script.

I'll try reinstalling AutoIT & SciTE

Edited by algiuxas

After switching years ago to Linux, sadly I don't use AutoIt anymore.

Link to comment
Share on other sites

  • Developers

Just did a quick search on " :devtools_http_handler.cc(229)] Cannot start http server for devtools. Stop devtools " and guess what that came back with....

Is it only this script that has this issue?
When did it Start?
Did you change anything?
ETC..ETC..

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

How?

Please share you solution so other can benefit.

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • 3 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...