-
how to install my application as a windows background service ?
I want to install an visual basic application (I have already the executable)That
will run like a service with no user interface. just a window that display
information when somebody click
on the icon which is on the extrem right part of WINDOWS taskbar. where the
systeme time is display.
the application icon is inserted when a windows session is open.the application
will run in background.
Somebody told me that it is something in relation with the registery system.
what tools or Api can help me in that way ?
For system time when somebody right click on the time a menu apear, how can
I Implement this ?
Thanks
-
Re: how to install my application as a windows background service ?
You need the NTSVC.OCX, a free ActiveX distribuited by Microsoft. This OCX
handle event´s from Service Manager and it allows you to create an VB
application as if it was a service of Windows NT or 2000.
Documentation for this OCX is found in internet.
Rogério Lopes Weinert
PROCERGS - Cia de Processamento de Dados do Rio Grande do Sul
Divisão 6 - Finanças Públicas
rogerio-weinert@procergs.rs.gov.br
3210.3100
Ramal 2018
"baradji" <baradjiibrahima@hotmail.com> wrote in message
news:3b9faf7d$1@news.devx.com...
>
> I want to install an visual basic application (I have already the
executable)That
> will run like a service with no user interface. just a window that display
> information when somebody click
> on the icon which is on the extrem right part of WINDOWS taskbar. where
the
> systeme time is display.
> the application icon is inserted when a windows session is open.the
application
> will run in background.
>
> Somebody told me that it is something in relation with the registery
system.
> what tools or Api can help me in that way ?
>
> For system time when somebody right click on the time a menu apear, how
can
> I Implement this ?
>
> Thanks
>
-
Re: how to install my application as a windows background service ?
You need the NTSVC.OCX, a free ActiveX distribuited by Microsoft. This OCX
handle event´s from Service Manager and it allows you to create an VB
application as if it was a service of Windows NT or 2000.
Documentation for this OCX is found in internet.
Rogério Lopes Weinert
PROCERGS - Cia de Processamento de Dados do Rio Grande do Sul
Divisão 6 - Finanças Públicas
rogerio-weinert@procergs.rs.gov.br
3210.3100
Ramal 2018
"baradji" <baradjiibrahima@hotmail.com> wrote in message
news:3b9faf7d$1@news.devx.com...
>
> I want to install an visual basic application (I have already the
executable)That
> will run like a service with no user interface. just a window that display
> information when somebody click
> on the icon which is on the extrem right part of WINDOWS taskbar. where
the
> systeme time is display.
> the application icon is inserted when a windows session is open.the
application
> will run in background.
>
> Somebody told me that it is something in relation with the registery
system.
> what tools or Api can help me in that way ?
>
> For system time when somebody right click on the time a menu apear, how
can
> I Implement this ?
>
> Thanks
>
-
Re: how to install my application as a windows background service ?
I think the guy wants to make the program run off the system tray. Isn't
that something different to a service, or am i confusing myself?
Rogério Lopes Weinert <rogerio-weinert@procergs.rs.gov.br> wrote in message
news:3ba8e32c@news.devx.com...
> You need the NTSVC.OCX, a free ActiveX distribuited by Microsoft. This OCX
> handle event´s from Service Manager and it allows you to create an VB
> application as if it was a service of Windows NT or 2000.
>
> Documentation for this OCX is found in internet.
>
>
> Rogério Lopes Weinert
> PROCERGS - Cia de Processamento de Dados do Rio Grande do Sul
> Divisão 6 - Finanças Públicas
> rogerio-weinert@procergs.rs.gov.br
> 3210.3100
> Ramal 2018
>
> "baradji" <baradjiibrahima@hotmail.com> wrote in message
> news:3b9faf7d$1@news.devx.com...
> >
> > I want to install an visual basic application (I have already the
> executable)That
> > will run like a service with no user interface. just a window that
display
> > information when somebody click
> > on the icon which is on the extrem right part of WINDOWS taskbar. where
> the
> > systeme time is display.
> > the application icon is inserted when a windows session is open.the
> application
> > will run in background.
> >
> > Somebody told me that it is something in relation with the registery
> system.
> > what tools or Api can help me in that way ?
> >
> > For system time when somebody right click on the time a menu apear, how
> can
> > I Implement this ?
> >
> > Thanks
> >
>
>
-
Re: how to install my application as a windows background service ?
I think the guy wants to make the program run off the system tray. Isn't
that something different to a service, or am i confusing myself?
Rogério Lopes Weinert <rogerio-weinert@procergs.rs.gov.br> wrote in message
news:3ba8e32c@news.devx.com...
> You need the NTSVC.OCX, a free ActiveX distribuited by Microsoft. This OCX
> handle event´s from Service Manager and it allows you to create an VB
> application as if it was a service of Windows NT or 2000.
>
> Documentation for this OCX is found in internet.
>
>
> Rogério Lopes Weinert
> PROCERGS - Cia de Processamento de Dados do Rio Grande do Sul
> Divisão 6 - Finanças Públicas
> rogerio-weinert@procergs.rs.gov.br
> 3210.3100
> Ramal 2018
>
> "baradji" <baradjiibrahima@hotmail.com> wrote in message
> news:3b9faf7d$1@news.devx.com...
> >
> > I want to install an visual basic application (I have already the
> executable)That
> > will run like a service with no user interface. just a window that
display
> > information when somebody click
> > on the icon which is on the extrem right part of WINDOWS taskbar. where
> the
> > systeme time is display.
> > the application icon is inserted when a windows session is open.the
> application
> > will run in background.
> >
> > Somebody told me that it is something in relation with the registery
> system.
> > what tools or Api can help me in that way ?
> >
> > For system time when somebody right click on the time a menu apear, how
> can
> > I Implement this ?
> >
> > Thanks
> >
>
>
-
Re: how to install my application as a windows background service ?
Correct, the two are separate things, entirely.
--
MichKa
Michael Kaplan
(principal developer of the MSLU)
Trigeminal Software, Inc. -- http://www.trigeminal.com/
the book -- http://www.i18nWithVB.com/
"James Abbott" <jabbott@ihug.com.au> wrote in message
news:3c00d1cb@147.208.176.211...
> I think the guy wants to make the program run off the system tray. Isn't
> that something different to a service, or am i confusing myself?
>
>
> Rogério Lopes Weinert <rogerio-weinert@procergs.rs.gov.br> wrote in
message
> news:3ba8e32c@news.devx.com...
> > You need the NTSVC.OCX, a free ActiveX distribuited by Microsoft. This
OCX
> > handle event´s from Service Manager and it allows you to create an VB
> > application as if it was a service of Windows NT or 2000.
> >
> > Documentation for this OCX is found in internet.
> >
> >
> > Rogério Lopes Weinert
> > PROCERGS - Cia de Processamento de Dados do Rio Grande do Sul
> > Divisão 6 - Finanças Públicas
> > rogerio-weinert@procergs.rs.gov.br
> > 3210.3100
> > Ramal 2018
> >
> > "baradji" <baradjiibrahima@hotmail.com> wrote in message
> > news:3b9faf7d$1@news.devx.com...
> > >
> > > I want to install an visual basic application (I have already the
> > executable)That
> > > will run like a service with no user interface. just a window that
> display
> > > information when somebody click
> > > on the icon which is on the extrem right part of WINDOWS taskbar.
where
> > the
> > > systeme time is display.
> > > the application icon is inserted when a windows session is open.the
> > application
> > > will run in background.
> > >
> > > Somebody told me that it is something in relation with the registery
> > system.
> > > what tools or Api can help me in that way ?
> > >
> > > For system time when somebody right click on the time a menu apear,
how
> > can
> > > I Implement this ?
> > >
> > > Thanks
> > >
> >
> >
>
>
-
Re: how to install my application as a windows background service ?
Correct, the two are separate things, entirely.
--
MichKa
Michael Kaplan
(principal developer of the MSLU)
Trigeminal Software, Inc. -- http://www.trigeminal.com/
the book -- http://www.i18nWithVB.com/
"James Abbott" <jabbott@ihug.com.au> wrote in message
news:3c00d1cb@147.208.176.211...
> I think the guy wants to make the program run off the system tray. Isn't
> that something different to a service, or am i confusing myself?
>
>
> Rogério Lopes Weinert <rogerio-weinert@procergs.rs.gov.br> wrote in
message
> news:3ba8e32c@news.devx.com...
> > You need the NTSVC.OCX, a free ActiveX distribuited by Microsoft. This
OCX
> > handle event´s from Service Manager and it allows you to create an VB
> > application as if it was a service of Windows NT or 2000.
> >
> > Documentation for this OCX is found in internet.
> >
> >
> > Rogério Lopes Weinert
> > PROCERGS - Cia de Processamento de Dados do Rio Grande do Sul
> > Divisão 6 - Finanças Públicas
> > rogerio-weinert@procergs.rs.gov.br
> > 3210.3100
> > Ramal 2018
> >
> > "baradji" <baradjiibrahima@hotmail.com> wrote in message
> > news:3b9faf7d$1@news.devx.com...
> > >
> > > I want to install an visual basic application (I have already the
> > executable)That
> > > will run like a service with no user interface. just a window that
> display
> > > information when somebody click
> > > on the icon which is on the extrem right part of WINDOWS taskbar.
where
> > the
> > > systeme time is display.
> > > the application icon is inserted when a windows session is open.the
> > application
> > > will run in background.
> > >
> > > Somebody told me that it is something in relation with the registery
> > system.
> > > what tools or Api can help me in that way ?
> > >
> > > For system time when somebody right click on the time a menu apear,
how
> > can
> > > I Implement this ?
> > >
> > > Thanks
> > >
> >
> >
>
>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks