T
Tom
Hi,
I want to display a text "Hello" in a textbox for every 30
seconds. How can I do this?
I saw the code
Do I need to make use of the textBox1_TextChanged method?
How can I pass parameters to it?
Or, I can write my own method? But, how to display the
string line by line counted with timer? I have not deal
with timer before.
Thanks for suggestion.
I want to display a text "Hello" in a textbox for every 30
seconds. How can I do this?
I saw the code
Code:
static void Main()
{
Application.Run(new main());
}
private void textBox1_TextChanged(object sender,
System.EventArgs e)
{
}
Do I need to make use of the textBox1_TextChanged method?
How can I pass parameters to it?
Or, I can write my own method? But, how to display the
string line by line counted with timer? I have not deal
with timer before.
Thanks for suggestion.