Hi
How do i check if field is filled width text then send something.
Like in php
How do i check if field is filled width text then send something.
Like in php
Code:
if (!empty($var1)) { // if not empty
// do stuff
}
Code:
If GUICtrlRead($input1) = "" Then ; how to check here if not empty
Send("{ENTER}")
Sleep(1000)
Send(GUICtrlRead($input1))
Send("{ENTER}")
Sleep(500)
EndIf