Csharp Set text of a textbox from winforms
-
Hi, can I set the value of a textbox in a webpage from a windows application in my computer? For example, www.aaa.com there is a textbox (I know its variable name and it is constant) when I focus on that textbox, my windows application will appear. I will choose a text from a listbox and it will write the value to the target textbox?? Thanks.
-
Hi, can I set the value of a textbox in a webpage from a windows application in my computer? For example, www.aaa.com there is a textbox (I know its variable name and it is constant) when I focus on that textbox, my windows application will appear. I will choose a text from a listbox and it will write the value to the target textbox?? Thanks.
Why would you want to do this from a "windows" application (.NET ?): are you attempting to modify somebody else's website ? If you wrote the HTML, implement the solution in HTML which should be pretty simple: implement a way to make a List appear, catch the user's click on an item it, and so forth. best, Bill
"The first principle is that you must not fool yourself, and you are the easiest person to fool." Richard Feynman
-
Why would you want to do this from a "windows" application (.NET ?): are you attempting to modify somebody else's website ? If you wrote the HTML, implement the solution in HTML which should be pretty simple: implement a way to make a List appear, catch the user's click on an item it, and so forth. best, Bill
"The first principle is that you must not fool yourself, and you are the easiest person to fool." Richard Feynman
I want to do this because, the I don't have a chance to change the web site and I don't want to make changes on the site. For instance, I am working for an IT support of a company, we have a site that workers ask questions and we answer them. I have some constant answers so, when I focus on a textbox that for the answer, my form will appear and I will choose the constant answer for that question finally I'll send it. Thanks for the answer.