Click here to Skip to main content
15,922,894 members
Home / Discussions / C#
   

C#

 
AnswerRe: Put Dlls in Directory other than the one having exe Pin
mav.northwind6-Nov-07 19:16
mav.northwind6-Nov-07 19:16 
Questioncan't show the visualization of media player Pin
whale846-Nov-07 17:59
whale846-Nov-07 17:59 
QuestionC# MS Access and Oracle Pin
kurisutofuJP6-Nov-07 17:24
kurisutofuJP6-Nov-07 17:24 
AnswerRe: C# MS Access and Oracle Pin
Paul Conrad6-Nov-07 18:12
professionalPaul Conrad6-Nov-07 18:12 
AnswerRe: C# MS Access and Oracle Pin
kurisutofuJP6-Nov-07 18:27
kurisutofuJP6-Nov-07 18:27 
GeneralRe: C# MS Access and Oracle Pin
Paul Conrad7-Nov-07 12:01
professionalPaul Conrad7-Nov-07 12:01 
QuestionLabel Visibility under ButtonClick EventHandler Pin
Rahul836-Nov-07 17:20
Rahul836-Nov-07 17:20 
AnswerRe: Label Visibility under ButtonClick EventHandler Pin
mav.northwind6-Nov-07 19:20
mav.northwind6-Nov-07 19:20 
Hi!
That's simple: Your btnShowDetails_Click method is running on the main UI thread that's responsible for repainting the form.
Between making lblShowMessage visible and hiding it again, it's busy fetching some records, so it doesn't have time to repaint the form.
Once the button click handler is through, the form can get repainted, but then the label is invisible again.

The better solution would be to put FetchRecords in a separate thread and let the UI thread handle just the UI.

Regards,
mav

--
Black holes are the places where God divided by 0...

AnswerRe: Urgent.................. Pin
Paul Conrad6-Nov-07 18:12
professionalPaul Conrad6-Nov-07 18:12 
QuestionData in a Directory-Like Structure Pin
Spyder_Snyper6-Nov-07 13:16
Spyder_Snyper6-Nov-07 13:16 
AnswerRe: Data in a Directory-Like Structure Pin
Michael Sync6-Nov-07 14:23
Michael Sync6-Nov-07 14:23 
GeneralRe: Data in a Directory-Like Structure Pin
Spyder_Snyper9-Nov-07 14:54
Spyder_Snyper9-Nov-07 14:54 
GeneralRe: Data in a Directory-Like Structure Pin
Michael Sync9-Nov-07 16:08
Michael Sync9-Nov-07 16:08 
QuestionGraphics over WinControls Pin
MasterSharp6-Nov-07 12:13
MasterSharp6-Nov-07 12:13 
AnswerRe: Graphics over WinControls Pin
Christian Graus6-Nov-07 12:48
protectorChristian Graus6-Nov-07 12:48 
AnswerRe: Graphics over WinControls Pin
Luc Pattyn6-Nov-07 12:57
sitebuilderLuc Pattyn6-Nov-07 12:57 
QuestionSaving Simply Pin
MasterSharp6-Nov-07 11:00
MasterSharp6-Nov-07 11:00 
AnswerRe: Saving Simply Pin
Ennis Ray Lynch, Jr.6-Nov-07 11:05
Ennis Ray Lynch, Jr.6-Nov-07 11:05 
GeneralRe: Saving Simply Pin
MasterSharp6-Nov-07 11:08
MasterSharp6-Nov-07 11:08 
GeneralRe: Saving Simply Pin
Mircea Grelus6-Nov-07 12:07
Mircea Grelus6-Nov-07 12:07 
GeneralRe: Saving Simply Pin
Paul Conrad6-Nov-07 15:53
professionalPaul Conrad6-Nov-07 15:53 
AnswerRe: Saving Simply Pin
martin_hughes6-Nov-07 11:31
martin_hughes6-Nov-07 11:31 
AnswerRe: Saving Simply Pin
Malcolm Smart6-Nov-07 11:42
Malcolm Smart6-Nov-07 11:42 
GeneralRe: Saving Simply Pin
MasterSharp6-Nov-07 11:53
MasterSharp6-Nov-07 11:53 
GeneralRe: Saving Simply Pin
MasterSharp6-Nov-07 11:56
MasterSharp6-Nov-07 11:56 

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.