really this script let me think along about reason of wrong result
#include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 392, 316, 282, 246) $Input1 = GUICtrlCreateInput("", 184, 176, 65, 21) $Input2 = GUICtrlCreateInput("", 112, 176, 65, 21) $Button1 = GUICtrlCreateButton("result", 48, 248, 75, 25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### $Input4 = $Input1*20 $Input5 = $Input2*20*20 $Input3 =$Input4 + $Input5 While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 MsgBox(0,"result is",$Input3) EndSwitch WEnd







