H Henrik Nov 29, 2003 #1 How do you access another window? For example if u whant tpo write something in a textbox in an other opwn window?
How do you access another window? For example if u whant tpo write something in a textbox in an other opwn window?
B Bhaskardeep Khaund Nov 29, 2003 #2 Hi, You can access the elements of the other window(pop-up) using javascript as:- window.opener.formname.textboxname.value Regards, Bhaskardeep Khaund
Hi, You can access the elements of the other window(pop-up) using javascript as:- window.opener.formname.textboxname.value Regards, Bhaskardeep Khaund
P phoenix Nov 30, 2003 #3 Another form in the same program? If so it just should be something like OtherForm.OtherFormsTextbox = ... If it's another application I think you're stuck with FindWindow to get the handle and then do SendKeys or so. And try not to post your question twice. Yves
Another form in the same program? If so it just should be something like OtherForm.OtherFormsTextbox = ... If it's another application I think you're stuck with FindWindow to get the handle and then do SendKeys or so. And try not to post your question twice. Yves
G Guest Nov 30, 2003 #4 I would like to access another window from another program with visual basic.. is that possible?