Question enter value in text box in a web browser in forms app?

emad0418

New member
Joined
Aug 4, 2021
Messages
1
Programming Experience
1-3
I have an ipts-like program that runs in the background of Windows.I want this program, which is connected to the api and receives its required data in this way, to put it in the specified text box by receiving the string value. Does anyone have experience with such a thing?
 
What is "ipts"?

You can host a web browser control in WinForms. You'll have to do some coding to get access to the HTML elements that are active on the page currently being shown.

I have reservations about having to go the long way around by hosting a web page inside WinForms if an API already exists. Why not just use plain old WinForms and talk to the API directly?
 
Back
Top Bottom