Hello, i developed an application to connect to a pop3 mail, read the emails and insert them into a database. I need this service to do the task once an hour. Could somebody please help me with this because i'm stuck?
static void Main(string[] args)
{
TcpClient Server;
NetworkStream NetStrm=null;
StreamReader RdStrm=null;
string Data, tmpMessage="", mail="", szTemp, CRLF = "\r\n", ch="";
byte[] szData;
int i=0, counter=0;
MySqlConnection connection = new MySqlConnection();
[snip]
Console.WriteLine(RdStrm.ReadLine());
connection.Close();
Console.ReadLine();
}
I'm not much of a programmer so please excuse my bad use of the language. All the functionality is inside here but i just don't know how to time it and make it run continously. Thanks a lot