Click here to Skip to main content
16,007,610 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Dispatching for events? Pin
Don Rolando1-Apr-08 23:28
Don Rolando1-Apr-08 23:28 
GeneralRe: Dispatching for events? Pin
Don Rolando2-Apr-08 3:47
Don Rolando2-Apr-08 3:47 
GeneralRe: Dispatching for events? Pin
led mike2-Apr-08 4:30
led mike2-Apr-08 4:30 
GeneralRe: Dispatching for events? Pin
led mike2-Apr-08 4:33
led mike2-Apr-08 4:33 
GeneralRe: Dispatching for events? Pin
Don Rolando2-Apr-08 5:54
Don Rolando2-Apr-08 5:54 
Generalmigrating from Visual Studio .NET 2003 to Visual Studio 2005 Pin
mayag1-Apr-08 0:53
mayag1-Apr-08 0:53 
GeneralRe: migrating from Visual Studio .NET 2003 to Visual Studio 2005 Pin
led mike1-Apr-08 4:30
led mike1-Apr-08 4:30 
Generalfill and submit a form Pin
joscha31-Mar-08 9:21
joscha31-Mar-08 9:21 
i have a major problem with the HtmlDocument HtmlElement ... methods...

im tryn to code a browser in wich i can automaticle fill a form and submit it.

this is the form code <code>form name="loginform" method="POST" action="/login.php">
<input class="loginname" type="text" name="name" value="" style="width:8em;" maxlength="60" />
<input class="passwort" type="password" name="password" value="" style="width:8em;" maxlength="60" />
<input type="submit" name="login" value="Login" style="width:7em;" /><br /></code>

this are my attempts

<code> HtmlDocument ^doc = webBrowser1->Document;
label1->Text = doc->Title->ToString();

//HtmlElement ^feld1 = webBrowser1->Document->GetElementsByTagName("name");
//HtmlElement ^feld1 = webBrowser1->Document->Forms->GetElementsByName("loginname");
//feld1->SetAttribute("HALLO",name);
//doc->GetElementsByTagName("loginname");
HtmlElementCollection ^feld2 = webBrowser1->Document->Forms;
feld2->GetElementsByName("loginname");


//HtmlDocument ^feld2 = webBrowser1->Document->Forms->GetElementsByName("name");
//feld2->SetAttribute("Hallo",name);

//HtmlElement ^button = webBrowser1->Document->GetElementById("Login");
//button->InvokeMember;
//HtmlInputDocument ^name = doc("name",0);
//doc->HtmlDocument::Forms::get();

//doc->GetElementsByTagName("login");
//doc->Forms->GetElementsByName("login");
//doc->GetElementById("login")</code>

can anyone help me with this? i'm desperated
GeneralRe: fill and submit a form Pin
led mike31-Mar-08 9:24
led mike31-Mar-08 9:24 
GeneralRe: fill and submit a form Pin
joscha31-Mar-08 9:33
joscha31-Mar-08 9:33 
GeneralRe: fill and submit a form Pin
fredsparkle3-Apr-08 7:44
fredsparkle3-Apr-08 7:44 
Questiontext files in C++ Pin
Cary D. Rutherford31-Mar-08 5:03
Cary D. Rutherford31-Mar-08 5:03 
GeneralRe: text files in C++ Pin
Mark Salsbery31-Mar-08 7:12
Mark Salsbery31-Mar-08 7:12 
GeneralRe: text files in C++ Pin
Cary D. Rutherford31-Mar-08 7:48
Cary D. Rutherford31-Mar-08 7:48 
GeneralRe: text files in C++ Pin
Mark Salsbery31-Mar-08 7:59
Mark Salsbery31-Mar-08 7:59 
GeneralRe: text files in C++ Pin
Cary D. Rutherford31-Mar-08 8:51
Cary D. Rutherford31-Mar-08 8:51 
GeneralRe: text files in C++ Pin
led mike31-Mar-08 9:10
led mike31-Mar-08 9:10 
GeneralRe: text files in C++ Pin
Cary D. Rutherford31-Mar-08 9:19
Cary D. Rutherford31-Mar-08 9:19 
GeneralRe: text files in C++ [modified] Pin
Cary D. Rutherford2-Apr-08 9:22
Cary D. Rutherford2-Apr-08 9:22 
GeneralRe: text files in C++ Pin
Mark Salsbery2-Apr-08 13:43
Mark Salsbery2-Apr-08 13:43 
GeneralRe: text files in C++ Pin
Cary D. Rutherford2-Apr-08 14:50
Cary D. Rutherford2-Apr-08 14:50 
QuestionHow to add Gif file into Datagrid Pin
palanirajan30-Mar-08 22:56
palanirajan30-Mar-08 22:56 
QuestionCannot open appication on other pc. Pin
Member 454227230-Mar-08 20:40
Member 454227230-Mar-08 20:40 
GeneralRe: Cannot open appication on other pc. Pin
led mike31-Mar-08 4:25
led mike31-Mar-08 4:25 
GeneralRe: Cannot open appication on other pc. Pin
Member 454227231-Mar-08 23:53
Member 454227231-Mar-08 23:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.