Click here to Skip to main content
15,885,278 members
Home / Discussions / C#
   

C#

 
AnswerRe: why memory is increasing in just a for loop? Pin
OriginalGriff26-Feb-15 20:23
mveOriginalGriff26-Feb-15 20:23 
GeneralRe: why memory is increasing in just a for loop? Pin
Le@rner26-Feb-15 21:16
Le@rner26-Feb-15 21:16 
GeneralRe: why memory is increasing in just a for loop? Pin
OriginalGriff26-Feb-15 21:21
mveOriginalGriff26-Feb-15 21:21 
GeneralRe: why memory is increasing in just a for loop? Pin
Pete O'Hanlon26-Feb-15 22:24
mvePete O'Hanlon26-Feb-15 22:24 
GeneralRe: why memory is increasing in just a for loop? Pin
Le@rner27-Feb-15 0:22
Le@rner27-Feb-15 0:22 
GeneralRe: why memory is increasing in just a for loop? Pin
Pete O'Hanlon27-Feb-15 1:45
mvePete O'Hanlon27-Feb-15 1:45 
GeneralRe: why memory is increasing in just a for loop? Pin
F-ES Sitecore27-Feb-15 2:38
professionalF-ES Sitecore27-Feb-15 2:38 
Questionhow to continuously write text to a label in C# Pin
Member 1068390226-Feb-15 6:33
Member 1068390226-Feb-15 6:33 
hello;
I have just started using VS2008 C# for windows mobile. I cannot make my label.text continuously display data, I verify the information is being passed but the form is not displaying the information. I tried this simple piece of code and it only displays the last value. please help.
C#
namespace datatran
{
    public partial class frmSend : Form
    {
        int i = 0;
        int value;
        public frmSend()
        {
            InitializeComponent();
        }

        private void btnSend_Click(object sender, EventArgs e)
        {

            value = Convert.ToInt16(txtBoxSend.Text);
            while (i < value)
            {




                lblCount.Text = i.ToString();
                lblCount.Show();


                i++;
            }


        }


    }

}

AnswerRe: how to continuously write text to a label in C# Pin
manchanx26-Feb-15 7:52
professionalmanchanx26-Feb-15 7:52 
GeneralRe: how to continuously write text to a label in C# Pin
Member 1068390226-Feb-15 9:26
Member 1068390226-Feb-15 9:26 
AnswerRe: how to continuously write text to a label in C# Pin
HKHerron26-Feb-15 9:38
professionalHKHerron26-Feb-15 9:38 
GeneralRe: how to continuously write text to a label in C# Pin
Member 1068390226-Feb-15 10:07
Member 1068390226-Feb-15 10:07 
GeneralRe: how to continuously write text to a label in C# Pin
HKHerron26-Feb-15 10:20
professionalHKHerron26-Feb-15 10:20 
GeneralRe: how to continuously write text to a label in C# Pin
Member 1068390226-Feb-15 10:46
Member 1068390226-Feb-15 10:46 
AnswerRe: how to continuously write text to a label in C# Pin
Member 1068390226-Feb-15 11:09
Member 1068390226-Feb-15 11:09 
GeneralRe: how to continuously write text to a label in C# Pin
V.27-Feb-15 0:39
professionalV.27-Feb-15 0:39 
AnswerRe: how to continuously write text to a label in C# Pin
Member 857809327-Feb-15 9:07
Member 857809327-Feb-15 9:07 
GeneralRe: how to continuously write text to a label in C# Pin
Member 1068390227-Feb-15 11:36
Member 1068390227-Feb-15 11:36 
Questionc# Soap Web service header Pin
Info service26-Feb-15 5:36
Info service26-Feb-15 5:36 
QuestionConfused on method type Pin
Truck5326-Feb-15 3:58
Truck5326-Feb-15 3:58 
AnswerRe: Confused on method type Pin
OriginalGriff26-Feb-15 4:22
mveOriginalGriff26-Feb-15 4:22 
AnswerRe: Confused on method type Pin
manchanx26-Feb-15 5:09
professionalmanchanx26-Feb-15 5:09 
QuestionHow memory is allocated in .Net application Pin
Tridip Bhattacharjee26-Feb-15 2:56
professionalTridip Bhattacharjee26-Feb-15 2:56 
AnswerRe: How memory is allocated in .Net application PinPopular
OriginalGriff26-Feb-15 3:14
mveOriginalGriff26-Feb-15 3:14 
GeneralRe: How memory is allocated in .Net application Pin
manchanx26-Feb-15 4:05
professionalmanchanx26-Feb-15 4:05 

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.