473,320 Members | 1,958 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,320 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
Jul 21 '05 #1
11 1892
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

Jul 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
Jul 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

Jul 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)
Jul 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

Jul 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

Jul 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

Jul 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
Jul 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
Jul 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

Jul 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


Jul 21 '05 #12

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

Similar topics

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: 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...
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: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

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.