| | |
timer control
Please support our C# advertiser: Programming Forums - DaniWeb Sister Site
![]() |
•
•
Join Date: May 2009
Posts: 12
Reputation:
Solved Threads: 0
Hi
I need to have my c# code to update from microsoft access automatically. can i use the timer control?
This is the code i found for timer control:
public partial class Form1 : Form
{
Timer timer = new Timer();
Label label = new Label();
public Form1()
{
InitializeComponent();
timer.Tick += new EventHandler(timer_Tick);
timer.Interval = (1000) * (5);
timer.Enabled = true;
timer.Start();
label.Location = new Point(100, 100);
label.AutoSize = true;
label.Text = String.Empty;
this.Controls.Add(label);
}
private void Form1_Load(object sender, EventArgs e)
{
}
void timer_Tick(object sender, EventArgs e)
{
label.Text = DateTime.Now.ToString();
}
}
These just give me a textbox with the time clicking.
Can someone pls advise how can i use these to make my program update automatically?
Thanks
I need to have my c# code to update from microsoft access automatically. can i use the timer control?
This is the code i found for timer control:
public partial class Form1 : Form
{
Timer timer = new Timer();
Label label = new Label();
public Form1()
{
InitializeComponent();
timer.Tick += new EventHandler(timer_Tick);
timer.Interval = (1000) * (5);
timer.Enabled = true;
timer.Start();
label.Location = new Point(100, 100);
label.AutoSize = true;
label.Text = String.Empty;
this.Controls.Add(label);
}
private void Form1_Load(object sender, EventArgs e)
{
}
void timer_Tick(object sender, EventArgs e)
{
label.Text = DateTime.Now.ToString();
}
}
These just give me a textbox with the time clicking.
Can someone pls advise how can i use these to make my program update automatically?
Thanks
![]() |
Similar Threads
- ASP.Net timer control (ASP.NET)
- vb timer control (Visual Basic 4 / 5 / 6)
- Timer control (VB.NET)
- Using a Timer Control (ASP.NET)
- DataGrid with Timer Control (VB.NET)
- Timer Control Question (VB.NET)
- How to pause timer control in visual Foxpro? (Legacy and Other Languages)
Other Threads in the C# Forum
Views: 797 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for C#
.net access ado.net algorithm array barchart bitmap box broadcast button c# chat check checkbox class client code color combobox control conversion csharp custom database datagrid datagridview dataset datetime degrees development draganddrop drawing encryption event excel file files form format forms ftp function gcd gdi+ http httpwebrequest image index input install java label list listbox listener login math mouseclick mysql networking object operator path photoshop picturebox pixelinversion post prime programming radians regex remote remoting resource saving serialization server sleep socket sql statistics stream string tcp text textbox thread time timer treeview update usercontrol validation view visualstudio webbrowser windows winforms wpf xml






