Hello everyone,
I am trying send text to the File Name box and then click the button open. what I have came so far is below: Can anyone assist me with this? Thanks
import win32gui
WM_SETTEXT = 0x0c
t = win32gui.FindWindow( None, "Open" )
t1 = win32gui.GetDlgItem( t, 1 )
print (win32gui.SendMessage( t1, WM_SETTEXT, 1, "Open"))