Click here to Skip to main content
15,889,544 members
Home / Discussions / C#
   

C#

 
Questionchange color of gif image Pin
samreengr820-Mar-07 9:34
samreengr820-Mar-07 9:34 
QuestionIssues with "C# Ping" Pin
Sean Wcisel20-Mar-07 9:11
Sean Wcisel20-Mar-07 9:11 
Questionstring to pieces Pin
marwan_siala20-Mar-07 8:01
marwan_siala20-Mar-07 8:01 
AnswerRe: string to pieces Pin
kozu20-Mar-07 8:09
kozu20-Mar-07 8:09 
GeneralRe: string to pieces Pin
marwan_siala20-Mar-07 8:26
marwan_siala20-Mar-07 8:26 
QuestionDialog with ProgressBar & label not working correctly Pin
kozu20-Mar-07 7:39
kozu20-Mar-07 7:39 
AnswerRe: Dialog with ProgressBar & label not working correctly Pin
Zoltan Balazs20-Mar-07 8:59
Zoltan Balazs20-Mar-07 8:59 
GeneralRe: Dialog with ProgressBar & label not working correctly Pin
kozu20-Mar-07 9:07
kozu20-Mar-07 9:07 
No, it's all on the same thread.

The code is something like this:
MyProgressDlg progress = new MyProgressDlg();
progress.Maximum = 1000;
progress.Text = "Adding Products...";
progress.Show();

for(int i=0;...blahblahblah)
{
progress.ShowProgress("Processing" + i);
}
progress.Close();


in MyProgressDlg
public void ShowProgress(string text)
{
label1.Text = text;
progressBar1.Value++;
}

thanx
GeneralRe: Dialog with ProgressBar & label not working correctly Pin
Zoltan Balazs20-Mar-07 9:29
Zoltan Balazs20-Mar-07 9:29 
GeneralRe: Dialog with ProgressBar & label not working correctly Pin
Dave Kreskowiak20-Mar-07 12:24
mveDave Kreskowiak20-Mar-07 12:24 
GeneralRe: Dialog with ProgressBar & label not working correctly Pin
kozu20-Mar-07 13:32
kozu20-Mar-07 13:32 
QuestionListViewItemCollection's implementation of interfaces... Pin
Shy Agam20-Mar-07 7:39
Shy Agam20-Mar-07 7:39 
AnswerRe: ListViewItemCollection's implementation of interfaces... [modified] Pin
Edmundisme20-Mar-07 8:32
Edmundisme20-Mar-07 8:32 
GeneralRe: ListViewItemCollection's implementation of interfaces... [modified] Pin
Shy Agam20-Mar-07 9:01
Shy Agam20-Mar-07 9:01 
GeneralRe: ListViewItemCollection's implementation of interfaces... Pin
Shy Agam20-Mar-07 9:25
Shy Agam20-Mar-07 9:25 
AnswerRe: ListViewItemCollection's implementation of interfaces... Pin
Shy Agam20-Mar-07 10:29
Shy Agam20-Mar-07 10:29 
GeneralRe: ListViewItemCollection's implementation of interfaces... Pin
Edmundisme20-Mar-07 11:04
Edmundisme20-Mar-07 11:04 
GeneralRe: ListViewItemCollection's implementation of interfaces... Pin
Shy Agam20-Mar-07 11:06
Shy Agam20-Mar-07 11:06 
QuestionProject Namespace/Folder setup Question Pin
jubilanttiger20-Mar-07 7:12
jubilanttiger20-Mar-07 7:12 
QuestionGridview with dropdownlist. Pin
peter.bellen@qsm-europe.com20-Mar-07 7:06
peter.bellen@qsm-europe.com20-Mar-07 7:06 
QuestionExtend FileDialog Class Pin
aamir22au20-Mar-07 6:20
aamir22au20-Mar-07 6:20 
QuestionMultiThreading Error in C# Pin
Ollie198620-Mar-07 6:13
Ollie198620-Mar-07 6:13 
AnswerBad Ram? Pin
Ennis Ray Lynch, Jr.20-Mar-07 7:21
Ennis Ray Lynch, Jr.20-Mar-07 7:21 
GeneralRe: Bad Ram? Pin
Ollie198620-Mar-07 11:53
Ollie198620-Mar-07 11:53 
GeneralRe: Bad Ram? Pin
Ennis Ray Lynch, Jr.20-Mar-07 12:23
Ennis Ray Lynch, Jr.20-Mar-07 12:23 

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.