Large Application development ideas

J

Jenbo

Hi all, I am looking for some ideas or pointers for an application i am
currently looking into. I have a management .net web app that is using
sql server as the back-end for config data for users etc. I then wanted
to have a service running on users pcs to check the sql server for
config data, based on this I wanted to maybe start a web app or windows
app which is the real point of the app, the user then enters info and
that is recorded for that user.

Problem being, I know that services can't start windows apps, can they
start web applications maybe, or should I think more lower level, .net
remoting or something like that to start the windows application or web
application? I know this is very vague but that is what sort of level
of thinking I am at with this at the minute.

Or should I think of integrating something like this with the Active
Directory, and use Group Policies to allow the windows or web
application for users?

I am looking for any pointers in this, all welcome!!!

Cheers

J :)
 
G

Guest

You might want to write a windows application with a NotifyIcon. Thats a
sytem tray icon down by the clock. The app could be set to run when people
log in (via Group policy) and could interact with the user on the desktop and
launch apps and browsers and things

Ciaran O'Donnell
 
N

Nick Malik [Microsoft]

I'd recommend that you write a windows app that runs when the user logs in.
You would place an entry in the registry to start it. The app could start,
check your service (or your db) for data, and if necessary, could pop open a
window to ask for the data you require. You could even pop open a browser
to a specific web site. Not sure you'd still need the service.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
C

Cor Ligthert [MVP]

Missed you

:)

Cor

Nick Malik said:
I'd recommend that you write a windows app that runs when the user logs
in. You would place an entry in the registry to start it. The app could
start, check your service (or your db) for data, and if necessary, could
pop open a window to ask for the data you require. You could even pop
open a browser to a specific web site. Not sure you'd still need the
service.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 
N

Nick Malik [Microsoft]

I've been busy on comp.object and on my blog.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top