Well, however i thought it's something obvious but i didn't found anything related.
An InputBox that shows a default text while it's empty. Any idea?
GUICreate('Accounts List', 300, 150)
GUISetFont(9, 400, 0, 'Segoe UI')[/left]
GUICtrlCreateInput('Username', 11, 11, 125, 23)
GUICtrlCreateInput('Password', 11, 41, 125, 23)
GUISetState()
While True
Switch GUIGetMsg()
Case -3
Exit
EndSwitch
WEnd