| Author: D.Jeya kumar(JK) 02 Sep 2008 | Member Level: Diamond | Rating: Points: -20 |
Hi,
Using windows service we can do that add a window service. and then add the code that you want to process the continully it is just like timmer
Protected Overrides Sub OnStart(ByVal args() As String) ' Add code here to start your service. This method should set things ' in motion so your service can do its work. End sub
Protected Overrides Sub OnStop() ' Add code here to perform any tear-down necessary to stop your service. End Sub
Regards JK
|