Click here to Skip to main content
15,914,488 members
Home / Discussions / C#
   

C#

 
GeneralRe: is scraping the right choice? Pin
Michael P Butler29-Dec-05 0:27
Michael P Butler29-Dec-05 0:27 
QuestionSplitter problem Pin
VPMahank28-Dec-05 8:12
VPMahank28-Dec-05 8:12 
Questionicon loading page Pin
vandread128-Dec-05 6:06
vandread128-Dec-05 6:06 
AnswerRe: icon loading page Pin
Dave Kreskowiak28-Dec-05 6:30
mveDave Kreskowiak28-Dec-05 6:30 
QuestionLoading Webpage - Wait until page is loaded Pin
Seraphin28-Dec-05 5:56
Seraphin28-Dec-05 5:56 
AnswerRe: Loading Webpage - Wait until page is loaded Pin
Judah Gabriel Himango28-Dec-05 6:08
sponsorJudah Gabriel Himango28-Dec-05 6:08 
GeneralRe: Loading Webpage - Wait until page is loaded Pin
Seraphin28-Dec-05 6:29
Seraphin28-Dec-05 6:29 
GeneralRe: Loading Webpage - Wait until page is loaded Pin
peshkunta28-Dec-05 9:28
peshkunta28-Dec-05 9:28 
Not sure if this is what you are looking for. The following example shows some of my code I've used where I have a timer event handler function call this piece of code every second. Without the if statement this would cause problems because the page doesn't always load in the browser at the same speed - it will make the program stop responding. But with the if statement this checks and makes sure the WebBrowser object is not loading anything at the moment and if it is, it doesn't execute the code (doesn't load anything else - until the statement is true):

if (webBrowser1.IsBusy == false && webBrowser1.IsOffline == false)
{
webBrowser1.Url = new Uri(strUrl);
}

Let me know if I can help further.
GeneralRe: Loading Webpage - Wait until page is loaded Pin
Seraphin28-Dec-05 15:47
Seraphin28-Dec-05 15:47 
QuestionHow Do I Capture Minimize, Maximize events.... Pin
JstDaNuGuy28-Dec-05 5:22
JstDaNuGuy28-Dec-05 5:22 
AnswerRe: How Do I Capture Minimize, Maximize events.... Pin
Robert Rohde28-Dec-05 5:37
Robert Rohde28-Dec-05 5:37 
AnswerRe: How Do I Capture Minimize, Maximize events.... Pin
JstDaNuGuy28-Dec-05 7:42
JstDaNuGuy28-Dec-05 7:42 
QuestionData Commands OleDb Pin
thepolishguy28-Dec-05 4:11
thepolishguy28-Dec-05 4:11 
AnswerRe: Data Commands OleDb Pin
WillemM28-Dec-05 8:46
WillemM28-Dec-05 8:46 
AnswerRe: Data Commands OleDb Pin
kourvoisier28-Dec-05 20:36
kourvoisier28-Dec-05 20:36 
QuestionAdding data from dataGridView to arrayList Pin
Duif28-Dec-05 3:04
Duif28-Dec-05 3:04 
AnswerRe: Adding data from dataGridView to arrayList Pin
albCode28-Dec-05 3:52
albCode28-Dec-05 3:52 
GeneralRe: Adding data from dataGridView to arrayList Pin
Duif28-Dec-05 4:15
Duif28-Dec-05 4:15 
GeneralRe: Adding data from dataGridView to arrayList Pin
albCode28-Dec-05 4:39
albCode28-Dec-05 4:39 
QuestionEvents Pin
nunom_c28-Dec-05 3:03
nunom_c28-Dec-05 3:03 
AnswerRe: Events Pin
albCode28-Dec-05 3:31
albCode28-Dec-05 3:31 
AnswerRe: Events Pin
VPMahank28-Dec-05 5:24
VPMahank28-Dec-05 5:24 
QuestionHow can I create a binary buffer of an image from a file? Pin
thomasa28-Dec-05 2:46
thomasa28-Dec-05 2:46 
AnswerRe: How can I create a binary buffer of an image from a file? Pin
Judah Gabriel Himango28-Dec-05 4:27
sponsorJudah Gabriel Himango28-Dec-05 4:27 
GeneralRe: How can I create a binary buffer of an image from a file? Pin
leppie28-Dec-05 6:49
leppie28-Dec-05 6:49 

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.