473,396 Members | 1,770 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Create a "Service"???

I've an application in which I use to check out the date/time stamp of a data
base... and if I find that it has been updated, my application runs and does a
particular update.

Currently I fire off my application hourly useing the built in XP Scheduler.

What I am going to do is to have my application check every minute while it is
running as I don't want to have to wait up to a hour for my particular update
to happen....

But what I am wondering about is IF I should just simply run my application
all the time in the background (there is no form needed to be visible while it
runs). Or is there a 'better' way to run my application using less resources,
etc? Is there anything special I need to do to make it a 'service'? Or what?

Any thoughts appreciated.

Regards,

Mr. B
Nov 21 '05 #1
11 1136
Yep,

Sounds like a service to me.

Oh, and make sure you use the system.timers.timer object to trigger your
logic. And if you are using vb.net to create your service, the windows
service template works just fine, but you will have to add an installer
project, and change the name of your service from service1 to
"yourservicename".

I have created many services with much success.

Best of luck,

Chris Smith
"Mr. B" <Us**@NoWhere.com> wrote in message
news:pm********************************@4ax.com...
I've an application in which I use to check out the date/time stamp of a data base... and if I find that it has been updated, my application runs and does a particular update.

Currently I fire off my application hourly useing the built in XP Scheduler.
What I am going to do is to have my application check every minute while it is running as I don't want to have to wait up to a hour for my particular update to happen....

But what I am wondering about is IF I should just simply run my application all the time in the background (there is no form needed to be visible while it runs). Or is there a 'better' way to run my application using less resources, etc? Is there anything special I need to do to make it a 'service'? Or what?
Any thoughts appreciated.

Regards,

Mr. B

Nov 21 '05 #2
With Deft Fingers, "Chris Smith" <us**@email.com> wrote:
Sounds like a service to me.
I have created many services with much success.
But that's it... I don't know how to make a service (let alone where to begin)
(:

I've an existing app... am I going to have to re-write it?
logic. And if you are using vb.net to create your service, the windows
service template works just fine, but you will have to add an installer


I'm using VB.net (standard) 2003... and I can't even see where I can even
start a Service app... Hmmmm....

Regards,

Mr. B
Nov 21 '05 #3
You can't create a service with the standard edition (AFAIK) , you will need
to u/g to professional.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Mr. B" <Us**@NoWhere.com> wrote in message
news:65********************************@4ax.com...
With Deft Fingers, "Chris Smith" <us**@email.com> wrote:
Sounds like a service to me.
I have created many services with much success.
But that's it... I don't know how to make a service (let alone where to

begin) (:

I've an existing app... am I going to have to re-write it?
logic. And if you are using vb.net to create your service, the windows
service template works just fine, but you will have to add an installer


I'm using VB.net (standard) 2003... and I can't even see where I can even
start a Service app... Hmmmm....

Regards,

Mr. B

Nov 21 '05 #4
On Wed, 15 Sep 2004 03:51:06 GMT, Mr. B <Us**@NoWhere.com> wrote:

¤ I've an application in which I use to check out the date/time stamp of a data
¤ base... and if I find that it has been updated, my application runs and does a
¤ particular update.
¤
¤ Currently I fire off my application hourly useing the built in XP Scheduler.
¤
¤ What I am going to do is to have my application check every minute while it is
¤ running as I don't want to have to wait up to a hour for my particular update
¤ to happen....
¤
¤ But what I am wondering about is IF I should just simply run my application
¤ all the time in the background (there is no form needed to be visible while it
¤ runs). Or is there a 'better' way to run my application using less resources,
¤ etc? Is there anything special I need to do to make it a 'service'? Or what?
¤

See if the following helps:

http://msdn.microsoft.com/library/de...l/vs0112dt.asp
http://tinyurl.com/5sjlb
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Nov 21 '05 #5
Mr B.
As the others suggest I would create a Windows Service and use the
System.Timers.Timer.

Matthew MacDonald's book "Microsoft Visual Basic.NET Programmer's Cookbook"
has a number of topics on creating Windows Services.

I would recommend upgrading to VS.NET 2003 Professional if possible, if not
you can create a service by creating a regular Windows Application, deleting
the Form1 created. Add a new class to your project, have it inherit from
System.ServiceProcess.ServiceBase, set the project's Startup object to this
new class.

For details see:

http://msdn.microsoft.com/library/de...ClassTopic.asp

http://msdn.microsoft.com/library/de...plications.asp

http://msdn.microsoft.com/library/de...plications.asp

The last topic has a link on how to create a service without using the
designers...

Hope this helps
Jay

"Mr. B" <Us**@NoWhere.com> wrote in message
news:pm********************************@4ax.com...
I've an application in which I use to check out the date/time stamp of a
data
base... and if I find that it has been updated, my application runs and
does a
particular update.

Currently I fire off my application hourly useing the built in XP
Scheduler.

What I am going to do is to have my application check every minute while
it is
running as I don't want to have to wait up to a hour for my particular
update
to happen....

But what I am wondering about is IF I should just simply run my
application
all the time in the background (there is no form needed to be visible
while it
runs). Or is there a 'better' way to run my application using less
resources,
etc? Is there anything special I need to do to make it a 'service'? Or
what?

Any thoughts appreciated.

Regards,

Mr. B

Nov 21 '05 #6
This may be true in terms of project templates, but P/Invoke should
expose the Windows Services API as it always did. You basically just
need to create an executable and register it with the service manager,
which is explained (in C++) here:

http://www.gamedev.net/reference/art...rticle1899.asp

The code presented shouldn't be hard to translate to C# and P/Invoke.

The only complication I can see is that you'll probably have to write
your own message pump, old-school. This is annoying, but I don't
think it should be a deal-breaker. All the same, it's probably
cheaper and easier to simply upgrade to Professional.

Thanks,
Mike Burton
DPSI

"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in message news:<u$**************@TK2MSFTNGP10.phx.gbl>...
You can't create a service with the standard edition (AFAIK) , you will need
to u/g to professional.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Mr. B" <Us**@NoWhere.com> wrote in message
news:65********************************@4ax.com...
With Deft Fingers, "Chris Smith" <us**@email.com> wrote:
Sounds like a service to me.
I have created many services with much success.


But that's it... I don't know how to make a service (let alone where to

begin)
(:

I've an existing app... am I going to have to re-write it?
logic. And if you are using vb.net to create your service, the windows
service template works just fine, but you will have to add an installer


I'm using VB.net (standard) 2003... and I can't even see where I can even
start a Service app... Hmmmm....

Regards,

Mr. B

Nov 21 '05 #7
Acknowledged, thanks.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Mike Burton" <li********@hotmail.com> wrote in message
news:3c**************************@posting.google.c om...
This may be true in terms of project templates, but P/Invoke should
expose the Windows Services API as it always did. You basically just
need to create an executable and register it with the service manager,
which is explained (in C++) here:

http://www.gamedev.net/reference/art...rticle1899.asp

The code presented shouldn't be hard to translate to C# and P/Invoke.

The only complication I can see is that you'll probably have to write
your own message pump, old-school. This is annoying, but I don't
think it should be a deal-breaker. All the same, it's probably
cheaper and easier to simply upgrade to Professional.

Thanks,
Mike Burton
DPSI

"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in

message news:<u$**************@TK2MSFTNGP10.phx.gbl>...
You can't create a service with the standard edition (AFAIK) , you will need to u/g to professional.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Mr. B" <Us**@NoWhere.com> wrote in message
news:65********************************@4ax.com...
With Deft Fingers, "Chris Smith" <us**@email.com> wrote:

>Sounds like a service to me.
>I have created many services with much success.

But that's it... I don't know how to make a service (let alone where to
begin)
(:

I've an existing app... am I going to have to re-write it?

>logic. And if you are using vb.net to create your service, the

windows >service template works just fine, but you will have to add an installer
I'm using VB.net (standard) 2003... and I can't even see where I can even start a Service app... Hmmmm....

Regards,

Mr. B

Nov 21 '05 #8
With Deft Fingers, "One Handed Man \( OHM - Terry Burns \)"
<news.microsoft.com> wrote:
You can't create a service with the standard edition (AFAIK) , you will need
to u/g to professional.


UgH (upgrade) (:

Pro is way too rich for my week end programming needs (I don't do this
professionally...). Oh well.. thanks!

Bruce
Nov 21 '05 #9
With Deft Fingers, "Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com>
wrote:
you can create a service by creating a regular Windows Application, deleting
the Form1 created. Add a new class to your project, have it inherit from
System.ServiceProcess.ServiceBase, set the project's Startup object to this


Thanks... as I don't write in a professional mode (week end programmer for
'fun')... PRO is a bit much for my needs. But I'll take a look at your
articles. Either way, it's of help. Thanks!

Bruce
Nov 21 '05 #10
Mike,
Why use P/Invoke?

The System.ServiceProcess.ServiceBase is part of the framework, it
encapsulates the Windows Services API and provides a Message pump for you.
Which means it is usable in the Standard edition. In fact because it is part
of the Framework you don't VS.NET at all, you can simply use notepad &
vbc.exe!

See my other post in this thread for details.

Hope this helps
Jay
"Mike Burton" <li********@hotmail.com> wrote in message
news:3c**************************@posting.google.c om...
This may be true in terms of project templates, but P/Invoke should
expose the Windows Services API as it always did. You basically just
need to create an executable and register it with the service manager,
which is explained (in C++) here:

http://www.gamedev.net/reference/art...rticle1899.asp

The code presented shouldn't be hard to translate to C# and P/Invoke.

The only complication I can see is that you'll probably have to write
your own message pump, old-school. This is annoying, but I don't
think it should be a deal-breaker. All the same, it's probably
cheaper and easier to simply upgrade to Professional.

Thanks,
Mike Burton
DPSI

"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
message news:<u$**************@TK2MSFTNGP10.phx.gbl>...
You can't create a service with the standard edition (AFAIK) , you will
need
to u/g to professional.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Mr. B" <Us**@NoWhere.com> wrote in message
news:65********************************@4ax.com...
> With Deft Fingers, "Chris Smith" <us**@email.com> wrote:
>
> >Sounds like a service to me.
> >I have created many services with much success.
>
> But that's it... I don't know how to make a service (let alone where to

begin)
> (:
>
> I've an existing app... am I going to have to re-write it?
>
> >logic. And if you are using vb.net to create your service, the windows
> >service template works just fine, but you will have to add an
> >installer
>
> I'm using VB.net (standard) 2003... and I can't even see where I can
> even
> start a Service app... Hmmmm....
>
> Regards,
>
> Mr. B

Nov 21 '05 #11
Something else I learnt today,

thanks Jay

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Mike,
Why use P/Invoke?

The System.ServiceProcess.ServiceBase is part of the framework, it
encapsulates the Windows Services API and provides a Message pump for you.
Which means it is usable in the Standard edition. In fact because it is part of the Framework you don't VS.NET at all, you can simply use notepad &
vbc.exe!

See my other post in this thread for details.

Hope this helps
Jay
"Mike Burton" <li********@hotmail.com> wrote in message
news:3c**************************@posting.google.c om...
This may be true in terms of project templates, but P/Invoke should
expose the Windows Services API as it always did. You basically just
need to create an executable and register it with the service manager,
which is explained (in C++) here:

http://www.gamedev.net/reference/art...rticle1899.asp

The code presented shouldn't be hard to translate to C# and P/Invoke.

The only complication I can see is that you'll probably have to write
your own message pump, old-school. This is annoying, but I don't
think it should be a deal-breaker. All the same, it's probably
cheaper and easier to simply upgrade to Professional.

Thanks,
Mike Burton
DPSI

"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
message news:<u$**************@TK2MSFTNGP10.phx.gbl>...
You can't create a service with the standard edition (AFAIK) , you will
need
to u/g to professional.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Mr. B" <Us**@NoWhere.com> wrote in message
news:65********************************@4ax.com...
> With Deft Fingers, "Chris Smith" <us**@email.com> wrote:
>
> >Sounds like a service to me.
> >I have created many services with much success.
>
> But that's it... I don't know how to make a service (let alone where to begin)
> (:
>
> I've an existing app... am I going to have to re-write it?
>
> >logic. And if you are using vb.net to create your service, the windows > >service template works just fine, but you will have to add an
> >installer
>
> I'm using VB.net (standard) 2003... and I can't even see where I can
> even
> start a Service app... Hmmmm....
>
> Regards,
>
> Mr. B


Nov 21 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Mr. B | last post by:
I've an application in which I use to check out the date/time stamp of a data base... and if I find that it has been updated, my application runs and does a particular update. Currently I fire...
0
by: Jacob Callcut | last post by:
To All, When creating a Windows Service and selecting the "Add Installer" option from the right-click menu in the service's design window, a "ServiceProcessInstaller" and "ServiceInstaller" are...
3
by: Claire | last post by:
Sorry for such a daft question. Ive been following some tutorials on creating windows services. Ive not done them before. In my original debuggable windows form application, I create my worker...
14
by: RDI | last post by:
I'm in the process of wiritng a custom AutoResponder that will run on a spare PC. If I don't write it as an actual "Service" but just a program that starts via the startup folder, will that use...
11
by: jjw92 | last post by:
I've been banging my head against the wall with this one for a couple days so I'm hoping someone has some ideas. I have a web service that I created that is called by a .NET class library (which in...
0
by: Ken | last post by:
Hello- I am following this article to publish a Crystal Report, inside a VS.Net project, as a web service - http://msdn2.microsoft.com/en-us/library/aa288396(VS.71).aspx When I right click on the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.