Click here to Skip to main content
15,905,420 members
Home / Discussions / C#
   

C#

 
GeneralRe: controls Pin
theanil25-Jan-12 4:01
theanil25-Jan-12 4:01 
AnswerRe: controls Pin
BillWoodruff27-Jan-12 7:20
professionalBillWoodruff27-Jan-12 7:20 
Questioncreate an application which generate table of the entered number.. Pin
rajiv kumar (abbi)24-Jan-12 23:01
rajiv kumar (abbi)24-Jan-12 23:01 
AnswerRe: create an application which generate table of the entered number.. Pin
Pete O'Hanlon24-Jan-12 23:19
mvePete O'Hanlon24-Jan-12 23:19 
AnswerRe: create an application which generate table of the entered number.. Pin
OriginalGriff24-Jan-12 23:40
mveOriginalGriff24-Jan-12 23:40 
AnswerRe: create an application which generate table of the entered number.. Pin
phil.o25-Jan-12 0:20
professionalphil.o25-Jan-12 0:20 
AnswerRe: create an application which generate table of the entered number.. Pin
Luc Pattyn25-Jan-12 0:45
sitebuilderLuc Pattyn25-Jan-12 0:45 
GeneralRe: create an application which generate table of the entered number.. Pin
Wayne Gaylard25-Jan-12 1:01
professionalWayne Gaylard25-Jan-12 1:01 
AnswerRe: create an application which generate table of the entered number.. Pin
Abhinav S25-Jan-12 0:47
Abhinav S25-Jan-12 0:47 
AnswerRe: create an application which generate table of the entered number.. Pin
PIEBALDconsult25-Jan-12 2:28
mvePIEBALDconsult25-Jan-12 2:28 
GeneralRe: create an application which generate table of the entered number.. Pin
Richard Andrew x6425-Jan-12 3:10
professionalRichard Andrew x6425-Jan-12 3:10 
GeneralRe: create an application which generate table of the entered number.. Pin
Pete O'Hanlon25-Jan-12 3:31
mvePete O'Hanlon25-Jan-12 3:31 
GeneralRe: create an application which generate table of the entered number.. Pin
PIEBALDconsult25-Jan-12 5:04
mvePIEBALDconsult25-Jan-12 5:04 
GeneralRe: create an application which generate table of the entered number.. Pin
OriginalGriff25-Jan-12 6:22
mveOriginalGriff25-Jan-12 6:22 
GeneralRe: create an application which generate table of the entered number.. Pin
BillWoodruff27-Jan-12 7:26
professionalBillWoodruff27-Jan-12 7:26 
GeneralRe: create an application which generate table of the entered number.. Pin
PIEBALDconsult27-Jan-12 16:11
mvePIEBALDconsult27-Jan-12 16:11 
QuestionURL change Pin
salim_ali24-Jan-12 21:40
salim_ali24-Jan-12 21:40 
AnswerRe: URL change Pin
Richard Andrew x6425-Jan-12 3:11
professionalRichard Andrew x6425-Jan-12 3:11 
Questionc# how to find one Outlooktask with UserProperty Pin
Easygoing24-Jan-12 21:27
Easygoing24-Jan-12 21:27 
QuestionCan't change a button't text at runtime anymore?????? Pin
fiaolle24-Jan-12 9:28
fiaolle24-Jan-12 9:28 
AnswerRe: Can't change a button't text at runtime anymore?????? Pin
fjdiewornncalwe24-Jan-12 9:56
professionalfjdiewornncalwe24-Jan-12 9:56 
GeneralRe: Can't change a button't text at runtime anymore?????? Pin
fiaolle24-Jan-12 20:29
fiaolle24-Jan-12 20:29 
Hi again

What I mean with "nothing happens" is that the button btn's text is still By.Even if the bool folder's property Visible is changed to true. I have tried

I have the code in the buttons click event.
C#
private void btn_Click(object sender, EventArgs e)
{
        if (folder.Visible==true )
        {
           btn.Text = "Hi"; 
         }         
         else
         {
            btn.Text = "By";
         }
               
}


I have tried btn.Invalidate(); and Form1.Invalidate(); it didn't help. And I also tried with Refresh() and Update() on both btn and Form1.

Dear KP Lee

I don't understand how to or what you mean I should do
"I fixed that by assigning a delegate in the winapp, running the calculations on another thread and calling the delegate."

Many Thanks
Fia
GeneralRe: Can't change a button't text at runtime anymore?????? Pin
lukeer24-Jan-12 21:15
lukeer24-Jan-12 21:15 
AnswerRe: Can't change a button't text at runtime anymore?????? Pin
OriginalGriff24-Jan-12 22:21
mveOriginalGriff24-Jan-12 22:21 
GeneralRe: Can't change a button't text at runtime anymore?????? Pin
fiaolle24-Jan-12 22:42
fiaolle24-Jan-12 22:42 

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.