Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > .NET General

Vista - Windows Services

Reply
 
Old 01-13-2009   #1 (permalink)
geekyguy


 
 

Windows Services

Hi All: I'm not sure where to post this so please redirect me if
appropriate.

I've been looking around for ways to create a "birthday reminder" that would
email a message to everyone in a SQL2005 dB whose birthday is that day. I
want to run it as a service on the webserver (the SQL server is a separate
box).

Googling turns up some info on writing a windows service in VS.NET, but much
of it is outdated. Where would the best place be to start in researching how
to do it?


My System SpecsSystem Spec
Old 01-13-2009   #2 (permalink)
Norman Yuan


 
 

Re: Windows Services

There isn't much change (if any at all) for doing Windows Services app in
all VS.NET versions (2002, 2003, 2005 and 2008). Not sure how do you decide
what is "outdated".

"geekyguy" <geeky@xxxxxx> wrote in message
news:OnkmWqcdJHA.3948@xxxxxx
Quote:

> Hi All: I'm not sure where to post this so please redirect me if
> appropriate.
>
> I've been looking around for ways to create a "birthday reminder" that
> would email a message to everyone in a SQL2005 dB whose birthday is that
> day. I want to run it as a service on the webserver (the SQL server is a
> separate box).
>
> Googling turns up some info on writing a windows service in VS.NET, but
> much of it is outdated. Where would the best place be to start in
> researching how to do it?
My System SpecsSystem Spec
Old 01-14-2009   #3 (permalink)
geekyguy


 
 

Re: Windows Services


"Norman Yuan" <FakeName@xxxxxx> wrote in message
news:unpLoPddJHA.1328@xxxxxx
Quote:

> There isn't much change (if any at all) for doing Windows Services app in
> all VS.NET versions (2002, 2003, 2005 and 2008). Not sure how do you
> decide what is "outdated".
Thanks Norman. Do you have any suggestions of where I should start, or is
this an appropriate newsgroup to post in?
Quote:

>
> "geekyguy" <geeky@xxxxxx> wrote in message
> news:OnkmWqcdJHA.3948@xxxxxx
Quote:

>> Hi All: I'm not sure where to post this so please redirect me if
>> appropriate.
>>
>> I've been looking around for ways to create a "birthday reminder" that
>> would email a message to everyone in a SQL2005 dB whose birthday is that
>> day. I want to run it as a service on the webserver (the SQL server is a
>> separate box).
>>
>> Googling turns up some info on writing a windows service in VS.NET, but
>> much of it is outdated. Where would the best place be to start in
>> researching how to do it?
>
My System SpecsSystem Spec
Old 01-14-2009   #4 (permalink)
rhaazy


 
 

Re: Windows Services

Couldn't you create a job in sql server that does this?

On Jan 14, 9:47*am, "geekyguy" <ge...@xxxxxx> wrote:
Quote:

> "Norman Yuan" <FakeN...@xxxxxx> wrote in message
>
> news:unpLoPddJHA.1328@xxxxxx
>
Quote:

> > There isn't much change (if any at all) for doing Windows Services app in
> > all VS.NET versions (2002, 2003, 2005 and 2008). Not sure how do you
> > decide what is "outdated".
>
> Thanks Norman. Do you have any suggestions of where I should start, or is
> this an appropriate newsgroup to post in?
>
>
>
>
>
Quote:

> > "geekyguy" <ge...@xxxxxx> wrote in message
> >news:OnkmWqcdJHA.3948@xxxxxx
Quote:

> >> Hi All: I'm not sure where to post this so please redirect me if
> >> appropriate.
>
Quote:
Quote:

> >> I've been looking around for ways to create a "birthday reminder" that
> >> would email a message to everyone in a SQL2005 dB whose birthday is that
> >> day. I want to run it as a service on the webserver (the SQL server isa
> >> separate box).
>
Quote:
Quote:

> >> Googling turns up some info on writing a windows service in VS.NET, but
> >> much of it is outdated. Where would the best place be to start in
> >> researching how to do it?- Hide quoted text -
>
> - Show quoted text -
My System SpecsSystem Spec
Old 01-15-2009   #5 (permalink)
geekyguy


 
 

Re: Windows Services


"rhaazy" <rhaazy@xxxxxx> wrote in message
news:a0be2e47-0396-4b8c-a3e0-e71ed77e1b69@xxxxxx
Couldn't you create a job in sql server that does this?

Hi RHaazy: Normally yes, but in this case no...so it needs to be a windows
service.


On Jan 14, 9:47 am, "geekyguy" <ge...@xxxxxx> wrote:
Quote:

> "Norman Yuan" <FakeN...@xxxxxx> wrote in message
>
> news:unpLoPddJHA.1328@xxxxxx
>
Quote:

> > There isn't much change (if any at all) for doing Windows Services app
> > in
> > all VS.NET versions (2002, 2003, 2005 and 2008). Not sure how do you
> > decide what is "outdated".
>
> Thanks Norman. Do you have any suggestions of where I should start, or is
> this an appropriate newsgroup to post in?
>
>
>
>
>
Quote:

> > "geekyguy" <ge...@xxxxxx> wrote in message
> >news:OnkmWqcdJHA.3948@xxxxxx
Quote:

> >> Hi All: I'm not sure where to post this so please redirect me if
> >> appropriate.
>
Quote:
Quote:

> >> I've been looking around for ways to create a "birthday reminder" that
> >> would email a message to everyone in a SQL2005 dB whose birthday is
> >> that
> >> day. I want to run it as a service on the webserver (the SQL server is
> >> a
> >> separate box).
>
Quote:
Quote:

> >> Googling turns up some info on writing a windows service in VS.NET, but
> >> much of it is outdated. Where would the best place be to start in
> >> researching how to do it?- Hide quoted text -
>
> - Show quoted text -
My System SpecsSystem Spec
Old 01-15-2009   #6 (permalink)
rhaazy


 
 

Re: Windows Services

Does it really have to be a windows service or could you make a win32
app and create a scheduled task?

On Jan 15, 12:09*pm, "geekyguy" <ge...@xxxxxx> wrote:
Quote:

> "rhaazy" <rha...@xxxxxx> wrote in message
>
> news:a0be2e47-0396-4b8c-a3e0-e71ed77e1b69@xxxxxx
> Couldn't you create a job in sql server that does this?
>
> Hi RHaazy: Normally yes, but in this case no...so it needs to be a windows
> service.
>
> On Jan 14, 9:47 am, "geekyguy" <ge...@xxxxxx> wrote:
>
>
>
Quote:

> > "Norman Yuan" <FakeN...@xxxxxx> wrote in message
>
Quote:

> >news:unpLoPddJHA.1328@xxxxxx
>
Quote:
Quote:

> > > There isn't much change (if any at all) for doing Windows Services app
> > > in
> > > all VS.NET versions (2002, 2003, 2005 and 2008). Not sure how do you
> > > decide what is "outdated".
>
Quote:

> > Thanks Norman. Do you have any suggestions of where I should start, or is
> > this an appropriate newsgroup to post in?
>
Quote:
Quote:

> > > "geekyguy" <ge...@xxxxxx> wrote in message
> > >news:OnkmWqcdJHA.3948@xxxxxx
> > >> Hi All: I'm not sure where to post this so please redirect me if
> > >> appropriate.
>
Quote:
Quote:

> > >> I've been looking around for ways to create a "birthday reminder" that
> > >> would email a message to everyone in a SQL2005 dB whose birthday is
> > >> that
> > >> day. I want to run it as a service on the webserver (the SQL server is
> > >> a
> > >> separate box).
>
Quote:
Quote:

> > >> Googling turns up some info on writing a windows service in VS.NET, but
> > >> much of it is outdated. Where would the best place be to start in
> > >> researching how to do it?- Hide quoted text -
>
Quote:

> > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -
My System SpecsSystem Spec
Old 01-15-2009   #7 (permalink)
geekyguy


 
 

Re: Windows Services


"rhaazy" <rhaazy@xxxxxx> wrote in message
news:c2823b61-c8ce-46b2-9991-aa5b7040d636@xxxxxx
Does it really have to be a windows service or could you make a win32
app and create a scheduled task?

Hi Rhaazy...I've thought about that, and I've encountered a lot of problems
with task scheduler and was looking for a better-integrated solution. Also,
I wanted to create a one-step install process that didn't require user
intervention.

On Jan 15, 12:09 pm, "geekyguy" <ge...@xxxxxx> wrote:
Quote:

> "rhaazy" <rha...@xxxxxx> wrote in message
>
> news:a0be2e47-0396-4b8c-a3e0-e71ed77e1b69@xxxxxx
> Couldn't you create a job in sql server that does this?
>
> Hi RHaazy: Normally yes, but in this case no...so it needs to be a windows
> service.
>
> On Jan 14, 9:47 am, "geekyguy" <ge...@xxxxxx> wrote:
>
>
>
Quote:

> > "Norman Yuan" <FakeN...@xxxxxx> wrote in message
>
Quote:

> >news:unpLoPddJHA.1328@xxxxxx
>
Quote:
Quote:

> > > There isn't much change (if any at all) for doing Windows Services app
> > > in
> > > all VS.NET versions (2002, 2003, 2005 and 2008). Not sure how do you
> > > decide what is "outdated".
>
Quote:

> > Thanks Norman. Do you have any suggestions of where I should start, or
> > is
> > this an appropriate newsgroup to post in?
>
Quote:
Quote:

> > > "geekyguy" <ge...@xxxxxx> wrote in message
> > >news:OnkmWqcdJHA.3948@xxxxxx
> > >> Hi All: I'm not sure where to post this so please redirect me if
> > >> appropriate.
>
Quote:
Quote:

> > >> I've been looking around for ways to create a "birthday reminder"
> > >> that
> > >> would email a message to everyone in a SQL2005 dB whose birthday is
> > >> that
> > >> day. I want to run it as a service on the webserver (the SQL server
> > >> is
> > >> a
> > >> separate box).
>
Quote:
Quote:

> > >> Googling turns up some info on writing a windows service in VS.NET,
> > >> but
> > >> much of it is outdated. Where would the best place be to start in
> > >> researching how to do it?- Hide quoted text -
>
Quote:

> > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Telenor Selects Microsoft Connected Services Framework to Facilitate Its Services Strategy Vista News
Telenor Selects Microsoft Connected Services Framework to Facilitate Its Services Strategy Vista News
Telenor Selects Microsoft Connected Services Framework to Facilitate Its Services Strategy Vista News
Telenor Selects Microsoft Connected Services Framework to Facilitate Its Services Strategy Vista News
Telenor Selects Microsoft Connected Services Framework to Facilitate Its Services Strategy Vista News


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46