Click here to Skip to main content
15,913,210 members
Home / Discussions / C#
   

C#

 
GeneralRe: altering a merge sort to compare strings from input box Pin
harold aptroot11-Feb-15 21:42
harold aptroot11-Feb-15 21:42 
AnswerRe: altering a merge sort to compare strings from input box Pin
Pete O'Hanlon11-Feb-15 21:47
mvePete O'Hanlon11-Feb-15 21:47 
AnswerRe: altering a merge sort to compare strings from input box Pin
OriginalGriff11-Feb-15 22:01
mveOriginalGriff11-Feb-15 22:01 
GeneralRe: altering a merge sort to compare strings from input box Pin
Member 1083623511-Feb-15 23:23
Member 1083623511-Feb-15 23:23 
GeneralRe: altering a merge sort to compare strings from input box Pin
OriginalGriff11-Feb-15 23:49
mveOriginalGriff11-Feb-15 23:49 
QuestionDeclare the type of cell of DevExpress GridView ? Pin
Member 245846711-Feb-15 20:15
Member 245846711-Feb-15 20:15 
AnswerRe: Declare the type of cell of DevExpress GridView ? Pin
Dave Kreskowiak12-Feb-15 2:44
mveDave Kreskowiak12-Feb-15 2:44 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Member 245846715-Feb-15 19:49
Member 245846715-Feb-15 19:49 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Dave Kreskowiak16-Feb-15 2:41
mveDave Kreskowiak16-Feb-15 2:41 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Member 245846716-Feb-15 16:53
Member 245846716-Feb-15 16:53 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Dave Kreskowiak16-Feb-15 17:56
mveDave Kreskowiak16-Feb-15 17:56 
QuestionAny examples on using libsodium-net , saving keypairs, encrypt/decrypt files? Pin
vizimuchi11-Feb-15 8:32
vizimuchi11-Feb-15 8:32 
AnswerRe: Any examples on using libsodium-net , saving keypairs, encrypt/decrypt files? Pin
Afzaal Ahmad Zeeshan11-Feb-15 9:23
professionalAfzaal Ahmad Zeeshan11-Feb-15 9:23 
GeneralRe: Any examples on using libsodium-net , saving keypairs, encrypt/decrypt files? Pin
vizimuchi11-Feb-15 16:01
vizimuchi11-Feb-15 16:01 
QuestionHow can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 2:14
turbosupramk311-Feb-15 2:14 
AnswerRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 6:31
turbosupramk311-Feb-15 6:31 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen11-Feb-15 7:33
professionalEddy Vluggen11-Feb-15 7:33 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 7:42
turbosupramk311-Feb-15 7:42 
Hi, thanks for the response.

I've been trying with webbrowser for the past hour or so. Depending on my code that I'm using, it will read the page and set the value, but not open the page with the set value. Or it will open the page but not set the value. I'm missing something that allows the two to work in harmony. Can you tell what I'm doing wrong?

I believe I need to open the page, download the source, update the elements and reopen it in my browser, is this correct?

I started with this: http://stackoverflow.com/questions/8425593/c-sharp-httpwebrequest-post-login-to-facebook/15772387#15772387[^]


string email = "firstlast@gmail.com";
                string password = "12345678";
                string url = @"https://www.url.net/v4/ee/ee-login.php";


                WebBrowser webbrowser1 = new WebBrowser();
                webbrowser1.Navigate(url);
                Application.DoEvents();
                webbrowser1.Document.GetElementById("txtlogin").SetAttribute("value", email);

GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen11-Feb-15 7:59
professionalEddy Vluggen11-Feb-15 7:59 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 8:25
turbosupramk311-Feb-15 8:25 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 8:58
turbosupramk311-Feb-15 8:58 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen12-Feb-15 5:46
professionalEddy Vluggen12-Feb-15 5:46 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk312-Feb-15 8:51
turbosupramk312-Feb-15 8:51 
QuestionRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen12-Feb-15 11:35
professionalEddy Vluggen12-Feb-15 11:35 
AnswerRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk313-Feb-15 1:55
turbosupramk313-Feb-15 1:55 

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.