I state that I am a beginner.
I am creating a C# WinForms application where there is a button that auto enters the user's password and username from a textbox;
I saw that onr support page there is the metod but I don't understand how to use it.
Normally in c # the code is:
private void button1_Click_4(object sender, EventArgs e)
{
webBrowser1.Document.GetElementById("username").SetAttribute("value", webBrowser1e_Username_TextBox.Text);
webBrowser.Document.GetElementById("password").SetAttribute("value", webBrowser1_Password_TextBox.Text);
How can I use this code with EO web browser for WinForm ???
Sorry for my little English