Click here to Skip to main content
15,891,856 members
Home / Discussions / C#
   

C#

 
Questionsteganalysis algorithm Pin
nailahazem14-May-06 23:19
nailahazem14-May-06 23:19 
AnswerRe: steganalysis algorithm Pin
Colin Angus Mackay14-May-06 23:27
Colin Angus Mackay14-May-06 23:27 
Question"Disabling" Themes Pin
Brendan Vogt14-May-06 22:44
Brendan Vogt14-May-06 22:44 
QuestionNeed help in parameter passing by Reference Pin
Ashraj198214-May-06 22:44
Ashraj198214-May-06 22:44 
AnswerRe: Need help in parameter passing by Reference Pin
rah_sin14-May-06 22:58
professionalrah_sin14-May-06 22:58 
GeneralRe: Need help in parameter passing by Reference Pin
Ashraj198214-May-06 23:09
Ashraj198214-May-06 23:09 
GeneralRe: Need help in parameter passing by Reference Pin
rah_sin14-May-06 23:12
professionalrah_sin14-May-06 23:12 
QuestionCollectionEditor Pin
to_samGmbH14-May-06 22:40
to_samGmbH14-May-06 22:40 
QuestionVideo Encoding? Pin
Mohammad Hajjat14-May-06 22:40
Mohammad Hajjat14-May-06 22:40 
Questiontiff printer Pin
fegaman14-May-06 22:19
fegaman14-May-06 22:19 
AnswerRe: tiff printer Pin
Robert Rohde15-May-06 0:09
Robert Rohde15-May-06 0:09 
QuestionCalculator using delegates/events Pin
rcwoods14-May-06 22:17
rcwoods14-May-06 22:17 
AnswerRe: Calculator using delegates/events Pin
Rei Miyasaka15-May-06 12:25
Rei Miyasaka15-May-06 12:25 
QuestionHelp! problem with sorting of a file.. Pin
jrbvillanueva14-May-06 21:20
jrbvillanueva14-May-06 21:20 
AnswerRe: Help! problem with sorting of a file.. Pin
WillemM14-May-06 21:23
WillemM14-May-06 21:23 
QuestionRe: Help! problem with sorting of a file.. Pin
jrbvillanueva14-May-06 21:39
jrbvillanueva14-May-06 21:39 
Questionhow we can display OlItemType (outlook item type ) on windows form controls or user control Pin
govind yadav14-May-06 20:46
govind yadav14-May-06 20:46 
QuestionCrushing on Win 2003 Server Pin
Desgard14-May-06 20:43
Desgard14-May-06 20:43 
AnswerRe: Crushing on Win 2003 Server Pin
WillemM14-May-06 21:21
WillemM14-May-06 21:21 
GeneralRe: Crushing on Win 2003 Server Pin
Desgard14-May-06 22:23
Desgard14-May-06 22:23 
AnswerRe: Crushing on Win 2003 Server Pin
S. Senthil Kumar15-May-06 1:43
S. Senthil Kumar15-May-06 1:43 
QuestionUpdating progress bar after each ReadLine() Pin
mtbchef114-May-06 17:16
mtbchef114-May-06 17:16 
AnswerRe: Updating progress bar after each ReadLine() Pin
S. Senthil Kumar14-May-06 18:18
S. Senthil Kumar14-May-06 18:18 
Where exactly are you facing problems? All you have to do is to do the file reading on a separate thread (created via System.Threading.Thread or through Delegate.BeginInvoke) so that you will not hold up the UI thread. Updating the progress bar is just a matter of setting the appropriate progress value as you keep reading the file, for example, you could set max value to the number of lines in the file and then keep incrementing the progress value as you read the file line by line.

Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Updating progress bar after each ReadLine() Pin
mtbchef114-May-06 20:34
mtbchef114-May-06 20:34 
GeneralRe: Updating progress bar after each ReadLine() Pin
S. Senthil Kumar15-May-06 1:41
S. Senthil Kumar15-May-06 1:41 

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.