Click here to Skip to main content
15,896,912 members
Home / Discussions / C#
   

C#

 
GeneralRe: Will C# support primitive data type in Generics Pin
PIEBALDconsult22-Jul-09 5:11
mvePIEBALDconsult22-Jul-09 5:11 
GeneralRe: Will C# support primitive data type in Generics Pin
DaveyM6922-Jul-09 5:28
professionalDaveyM6922-Jul-09 5:28 
GeneralRe: Will C# support primitive data type in Generics Pin
PIEBALDconsult22-Jul-09 6:19
mvePIEBALDconsult22-Jul-09 6:19 
QuestionSplitContainer problem Pin
lune1222-Jul-09 3:21
lune1222-Jul-09 3:21 
AnswerRe: SplitContainer problem Pin
Muhammad Mazhar22-Jul-09 3:55
Muhammad Mazhar22-Jul-09 3:55 
GeneralRe: SplitContainer problem Pin
lune1222-Jul-09 4:04
lune1222-Jul-09 4:04 
GeneralRe: SplitContainer problem Pin
Muhammad Mazhar22-Jul-09 4:22
Muhammad Mazhar22-Jul-09 4:22 
Questionhow to get datagrid previously selected column index in c#.net Pin
swetha_insoft22-Jul-09 3:14
swetha_insoft22-Jul-09 3:14 
AnswerRe: how to get datagrid previously selected column index in c#.net Pin
swetha_insoft22-Jul-09 3:18
swetha_insoft22-Jul-09 3:18 
AnswerRe: how to get datagrid previously selected column index in c#.net Pin
Muhammad Mazhar22-Jul-09 3:52
Muhammad Mazhar22-Jul-09 3:52 
QuestionTCP Window Scaling Pin
satsumatable22-Jul-09 2:16
satsumatable22-Jul-09 2:16 
AnswerRe: TCP Window Scaling Pin
led mike22-Jul-09 4:35
led mike22-Jul-09 4:35 
QuestionUser control problem in databind Pin
beesan22-Jul-09 2:05
beesan22-Jul-09 2:05 
AnswerRe: User control problem in databind Pin
Nagy Vilmos22-Jul-09 3:11
professionalNagy Vilmos22-Jul-09 3:11 
GeneralRe: User control problem in databind Pin
beesan22-Jul-09 20:09
beesan22-Jul-09 20:09 
QuestionHow to Save word file using SaveDialogBox and File Stream Pin
mandar77722-Jul-09 1:41
mandar77722-Jul-09 1:41 
AnswerRe: How to Save word file using SaveDialogBox and File Stream Pin
Brij22-Jul-09 2:01
mentorBrij22-Jul-09 2:01 
GeneralRe: How to Save word file using SaveDialogBox and File Stream Pin
mandar77722-Jul-09 2:19
mandar77722-Jul-09 2:19 
AnswerRe: How to Save word file using SaveDialogBox and File Stream Pin
Adam R Harris22-Jul-09 6:18
Adam R Harris22-Jul-09 6:18 
Questionhandling add contact event in outlook 07 Pin
ACMA_198022-Jul-09 1:16
ACMA_198022-Jul-09 1:16 
AnswerRe: handling add contact event in outlook 07 Pin
satsumatable22-Jul-09 3:52
satsumatable22-Jul-09 3:52 
GeneralRe: handling add contact event in outlook 07 Pin
ACMA_198022-Jul-09 23:40
ACMA_198022-Jul-09 23:40 
Questionlabel is not becoming visible Pin
Mahesh_Blr22-Jul-09 1:05
Mahesh_Blr22-Jul-09 1:05 
AnswerRe: label is not becoming visible Pin
musefan22-Jul-09 1:09
musefan22-Jul-09 1:09 
Mahesh_Blr wrote:
but once the form executes completely


It sounds like you are running a process that is holding up the UI, basically the form is not being refreshed until the process is complete. Adding the following line after settings the visible property of the label to true should work..

label1.Visible = true;
form1.Refresh();


Life goes very fast. Tomorrow, today is already yesterday.

AnswerRe: label is not becoming visible Pin
Manas Bhardwaj22-Jul-09 1:11
professionalManas Bhardwaj22-Jul-09 1:11 

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.