Click here to Skip to main content
15,886,795 members
Home / Discussions / C#
   

C#

 
GeneralRe: Changing the text properties of a text box. Pin
OriginalGriff7-Apr-10 22:02
mveOriginalGriff7-Apr-10 22:02 
GeneralRe: Changing the text properties of a text box. Pin
Darrall8-Apr-10 5:10
Darrall8-Apr-10 5:10 
GeneralRe: Changing the text properties of a text box. Pin
OriginalGriff8-Apr-10 5:23
mveOriginalGriff8-Apr-10 5:23 
GeneralRe: Changing the text properties of a text box. Pin
Darrall8-Apr-10 7:22
Darrall8-Apr-10 7:22 
Questionproblem when running a delay signed assembly in another pc Pin
prasadbuddhika7-Apr-10 6:33
prasadbuddhika7-Apr-10 6:33 
QuestionWhile Loop sucking up all processor's cpu cycles Pin
BuggingMe7-Apr-10 6:17
BuggingMe7-Apr-10 6:17 
AnswerRe: While Loop sucking up all processor's cpu cycles Pin
Not Active7-Apr-10 6:41
mentorNot Active7-Apr-10 6:41 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
BuggingMe7-Apr-10 6:58
BuggingMe7-Apr-10 6:58 
Well no navigation is taking place so i cant use the navigated event, After the submit button is clicked there is a delay of an unknown length and text is injected into the HTML page via PHP. Here is the code im using to detect this, It works but is very CPU intensive

<pre>while (WebBrowser.IsBusy == true)
{
Application.DoEvents();
}
string InitalPage = WebBrowser.DocumentText;
while (WebBrowser.DocumentText == InitalPage)
{
Application.DoEvents();
}
while (WebBrowser.IsBusy == true)
{
Application.DoEvents();
}</pre>

I haven't learned threading yet (something i definitly want to avoid if at all possible for this project), There's no documenttextchanged event to use so im not sure what to do now Sleepy | :zzz:

IS there any non CPU intensive/Non threading alternitive to the above code?
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
Not Active7-Apr-10 7:08
mentorNot Active7-Apr-10 7:08 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
PIEBALDconsult7-Apr-10 7:49
mvePIEBALDconsult7-Apr-10 7:49 
AnswerRe: While Loop sucking up all processor's cpu cycles Pin
kevinnicol7-Apr-10 6:59
kevinnicol7-Apr-10 6:59 
GeneralRe: While Loop sucking up all processor's cpu cycles Pin
Fayu7-Apr-10 9:11
Fayu7-Apr-10 9:11 
QuestionRe: Calling an event in a different namespace Pin
roman_s7-Apr-10 5:34
roman_s7-Apr-10 5:34 
AnswerRe: Calling an event in a different namespace [modified] Pin
Dan Mos7-Apr-10 5:39
Dan Mos7-Apr-10 5:39 
GeneralRe: Calling an event in a different namespace Pin
roman_s7-Apr-10 8:13
roman_s7-Apr-10 8:13 
AnswerRe: Calling an event in a different namespace Pin
O.Phil7-Apr-10 5:53
O.Phil7-Apr-10 5:53 
QuestionUpdate MDI child controls (TextBox ect) from a non parent control Pin
Deneys7-Apr-10 4:12
Deneys7-Apr-10 4:12 
AnswerRe: Update MDI child controls (TextBox ect) from a non parent control Pin
Eddy Vluggen7-Apr-10 4:47
professionalEddy Vluggen7-Apr-10 4:47 
QuestionSearching words/phrases on the text file Pin
K Suresh Reddy7-Apr-10 3:54
K Suresh Reddy7-Apr-10 3:54 
AnswerRe: Searching words/phrases on the text file Pin
Eddy Vluggen7-Apr-10 5:00
professionalEddy Vluggen7-Apr-10 5:00 
QuestionEvents related to the selection of text on a multiline textbox Pin
_ASPAle_7-Apr-10 1:57
_ASPAle_7-Apr-10 1:57 
AnswerRe: Events related to the selection of text on a multiline textbox Pin
Not Active7-Apr-10 2:04
mentorNot Active7-Apr-10 2:04 
GeneralRe: Events related to the selection of text on a multiline textbox Pin
_ASPAle_7-Apr-10 7:21
_ASPAle_7-Apr-10 7:21 
AnswerRe: Events related to the selection of text on a multiline textbox Pin
Arun Jacob7-Apr-10 2:15
Arun Jacob7-Apr-10 2:15 
GeneralRe: Events related to the selection of text on a multiline textbox Pin
_ASPAle_7-Apr-10 7:18
_ASPAle_7-Apr-10 7:18 

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.