Click here to Skip to main content
15,884,537 members
Home / Discussions / C#
   

C#

 
AnswerRe: Multipe navigating (doing it in loop) Pin
Greg Chelstowski26-Feb-09 23:32
Greg Chelstowski26-Feb-09 23:32 
GeneralRe: Multipe navigating (doing it in loop) Pin
Member 441789226-Feb-09 23:36
Member 441789226-Feb-09 23:36 
AnswerRe: Multipe navigating (doing it in loop) Pin
Calin Tatar26-Feb-09 23:39
Calin Tatar26-Feb-09 23:39 
GeneralRe: Multipe navigating (doing it in loop) Pin
Member 441789226-Feb-09 23:53
Member 441789226-Feb-09 23:53 
GeneralRe: Multipe navigating (doing it in loop) Pin
Calin Tatar27-Feb-09 0:01
Calin Tatar27-Feb-09 0:01 
GeneralRe: Multipe navigating (doing it in loop) Pin
Member 441789227-Feb-09 3:30
Member 441789227-Feb-09 3:30 
GeneralRe: Multipe navigating (doing it in loop) Pin
Calin Tatar27-Feb-09 4:19
Calin Tatar27-Feb-09 4:19 
GeneralRe: Multipe navigating (doing it in loop) Pin
Member 441789228-Feb-09 3:41
Member 441789228-Feb-09 3:41 
Haven't tried that. But I found another way to solve it.
I did found this Wait function:
void Wait(int timervalue)
{
// set the timer for the number of ms desired
WaitF.Interval = timervalue;
// enable the timer and set the timerelapsed flag to false
WaitF.Enabled = true;
_timerElapsed = false;
while (_timerElapsed == false)
{
Application.DoEvents();
}
}

By creating a little wait i am now avaible to use webbrowser1.Isbusy()

while (webBrowser1.IsBusy == true)
{
Application.DoEvents();
}
QuestionHow to get Value from Combobox.valuemember prpperty Pin
honeyashu26-Feb-09 22:59
honeyashu26-Feb-09 22:59 
AnswerRe: How to get Value from Combobox.valuemember prpperty Pin
JoeSharp26-Feb-09 23:18
JoeSharp26-Feb-09 23:18 
GeneralRe: How to get Value from Combobox.valuemember prpperty Pin
honeyashu26-Feb-09 23:39
honeyashu26-Feb-09 23:39 
GeneralRe: How to get Value from Combobox.valuemember prpperty Pin
Greg Chelstowski26-Feb-09 23:48
Greg Chelstowski26-Feb-09 23:48 
AnswerRe: How to get Value from Combobox.valuemember prpperty Pin
Greg Chelstowski26-Feb-09 23:28
Greg Chelstowski26-Feb-09 23:28 
QuestionHttpWebRequest problem... Pin
Greg Kozlowski26-Feb-09 22:45
Greg Kozlowski26-Feb-09 22:45 
AnswerRe: HttpWebRequest problem... Pin
Calin Tatar26-Feb-09 22:56
Calin Tatar26-Feb-09 22:56 
GeneralRe: HttpWebRequest problem... Pin
Greg Kozlowski26-Feb-09 23:57
Greg Kozlowski26-Feb-09 23:57 
GeneralRe: HttpWebRequest problem... Pin
Calin Tatar27-Feb-09 0:20
Calin Tatar27-Feb-09 0:20 
GeneralRe: HttpWebRequest problem... Pin
Greg Kozlowski1-Mar-09 22:27
Greg Kozlowski1-Mar-09 22:27 
QuestionCan some one tell my why this doesnt want to seem to work Pin
Ronin11426-Feb-09 22:22
Ronin11426-Feb-09 22:22 
AnswerRe: Can some one tell my why this doesnt want to seem to work Pin
Eddy Vluggen26-Feb-09 22:28
professionalEddy Vluggen26-Feb-09 22:28 
GeneralRe: Can some one tell my why this doesnt want to seem to work Pin
Calin Tatar26-Feb-09 22:49
Calin Tatar26-Feb-09 22:49 
GeneralRe: Can some one tell my why this doesnt want to seem to work Pin
Ronin11427-Feb-09 8:16
Ronin11427-Feb-09 8:16 
GeneralRe: Can some one tell my why this doesnt want to seem to work Pin
Eddy Vluggen27-Feb-09 9:05
professionalEddy Vluggen27-Feb-09 9:05 
GeneralRe: Can some one tell my why this doesnt want to seem to work Pin
Eddy Vluggen27-Feb-09 9:07
professionalEddy Vluggen27-Feb-09 9:07 
GeneralRe: Can some one tell my why this doesnt want to seem to work Pin
Ronin11427-Feb-09 11:14
Ronin11427-Feb-09 11:14 

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.