Versions: AutoIt3Wrapper v.2.1.4.0 SciTE v.3.3.7.0
I would change this:
Local $H_INP_ICON = GUICtrlCreateEdit($INP_Icon, 100, 205, 440, 20)
-->
Local $H_INP_ICON = GUICtrlCreateINPUT($INP_Icon, 100, 205, 440, 20)
This way you have no useless scrollbar.
I hope this small bug-report was helpful.
P.S.: I also found this lines quite useless, but this is only my opinion:
If @error = 1 Then
$rc = MsgBox(4100, "AutoIt3 Compile", "do you want to stop the process?")
If $rc = 6 Then Exit
EndIf
I think, if somebody clicks on "cancel" he also wants to "cancel" and stop the process.