Click here to Skip to main content
15,895,011 members
Home / Discussions / C#
   

C#

 
GeneralRe: Issue with the GzipStream Class Pin
ramz_g20-Apr-09 19:08
ramz_g20-Apr-09 19:08 
GeneralRe: Issue with the GzipStream Class Pin
Rolando CC21-Apr-09 3:40
professionalRolando CC21-Apr-09 3:40 
GeneralRe: Issue with the GzipStream Class Pin
ramz_g21-Apr-09 7:37
ramz_g21-Apr-09 7:37 
QuestionTableAdapterManager.UpdateAll problem : [ Concurrency violation ] Pin
hdv21220-Apr-09 5:28
hdv21220-Apr-09 5:28 
QuestionIcon in a textbox Pin
edlanka20-Apr-09 4:56
edlanka20-Apr-09 4:56 
AnswerRe: Icon in a textbox Pin
Ian McCaul20-Apr-09 5:26
Ian McCaul20-Apr-09 5:26 
GeneralRe: Icon in a textbox Pin
edlanka20-Apr-09 5:33
edlanka20-Apr-09 5:33 
GeneralRe: Icon in a textbox Pin
Ian McCaul20-Apr-09 5:40
Ian McCaul20-Apr-09 5:40 
Oh I thought you were using ASP.NET since you were sending back to server (what I get for assuming)... You can still respond to the TextBox.TextChanged event. This fires after any input into the textbox. You can use an animated gif to put into an image control to be visible while you are performing whatever operation during the event and set it to visible = false when your processing is complete.

private void currencyTextBox_TextChanged(object sender, EventArgs e)
{
    imageProgress.Visible = true;
    Application.DoEvents();

    ... // Processing

    imageProgress.Visible = false;
    Application.DoEvents();
}


You may have an issue with setting the visiblilty in the current thread... the Application.DoEvents() may solve that, but may not, you may need to look at doing the proccessing on a different thread, you could use a backgroundworker for doing that and it is fairly easy to implement.

Hope this helps.
GeneralRe: Icon in a textbox Pin
edlanka20-Apr-09 6:49
edlanka20-Apr-09 6:49 
GeneralRe: Icon in a textbox Pin
Mbah Dhaim20-Apr-09 7:15
Mbah Dhaim20-Apr-09 7:15 
GeneralRe: Icon in a textbox Pin
DaveyM6920-Apr-09 8:52
professionalDaveyM6920-Apr-09 8:52 
GeneralRe: Icon in a textbox Pin
Naruki20-Apr-09 17:43
Naruki20-Apr-09 17:43 
Questionhow 2 create a software Pin
dauu20-Apr-09 4:12
dauu20-Apr-09 4:12 
AnswerRe: how 2 create a software Pin
Pete O'Hanlon20-Apr-09 4:13
mvePete O'Hanlon20-Apr-09 4:13 
AnswerRe: how 2 create a software Pin
Colin Angus Mackay20-Apr-09 4:15
Colin Angus Mackay20-Apr-09 4:15 
GeneralRe: how 2 create a software Pin
MidwestLimey20-Apr-09 5:15
professionalMidwestLimey20-Apr-09 5:15 
GeneralRe: how 2 create a software Pin
Luc Pattyn20-Apr-09 5:20
sitebuilderLuc Pattyn20-Apr-09 5:20 
GeneralRe: how 2 create a software Pin
OriginalGriff20-Apr-09 5:23
mveOriginalGriff20-Apr-09 5:23 
GeneralRe: how 2 create a software Pin
Mycroft Holmes20-Apr-09 14:34
professionalMycroft Holmes20-Apr-09 14:34 
GeneralRe: how 2 create a software Pin
Naruki20-Apr-09 17:45
Naruki20-Apr-09 17:45 
GeneralRe: how 2 create a software Pin
PIEBALDconsult20-Apr-09 10:40
mvePIEBALDconsult20-Apr-09 10:40 
AnswerRe: how 2 create a software Pin
Michael Bookatz20-Apr-09 4:29
Michael Bookatz20-Apr-09 4:29 
AnswerRe: how 2 create a software Pin
benjymous20-Apr-09 4:38
benjymous20-Apr-09 4:38 
AnswerRe: how 2 create a software Pin
0x3c020-Apr-09 4:40
0x3c020-Apr-09 4:40 
AnswerRe: how 2 create a software Pin
OriginalGriff20-Apr-09 5:21
mveOriginalGriff20-Apr-09 5:21 

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.