J
JB
Hi All,
I have a VB.NET application that constantly executes queries through
ODBC connections. The application consists of a simple Form type UI
where the query parameters can be edited, and a simple scheduler that
executes the queries.
The application works fine as "standalone" but it now needs to be
installed on a server and left running permanently even when no user
is logged on.
I think a Windows Service would be perfect for this, but I read
everywhere that Windows Services shouldn't have a UI. That makes sense
to me and I'd have no problem splitting the application between a
Front End (form based to edit the parameters) and a back end (doing
the actual execution of the queries).
What I'm wondering now is what would be the simplest way to achieve
this? I've been looking into .NET Remoting (MSDN examples and various
groups), but it seems far too complex for what I need. I need the
split applications to behave just like one single application, they
will always be on the same machine (even same directory), etc.
Can anybody give me any direction on that and/or point me to examples
of Windows Service / UI communication.
Thanks a lot
JB
I have a VB.NET application that constantly executes queries through
ODBC connections. The application consists of a simple Form type UI
where the query parameters can be edited, and a simple scheduler that
executes the queries.
The application works fine as "standalone" but it now needs to be
installed on a server and left running permanently even when no user
is logged on.
I think a Windows Service would be perfect for this, but I read
everywhere that Windows Services shouldn't have a UI. That makes sense
to me and I'd have no problem splitting the application between a
Front End (form based to edit the parameters) and a back end (doing
the actual execution of the queries).
What I'm wondering now is what would be the simplest way to achieve
this? I've been looking into .NET Remoting (MSDN examples and various
groups), but it seems far too complex for what I need. I need the
split applications to behave just like one single application, they
will always be on the same machine (even same directory), etc.
Can anybody give me any direction on that and/or point me to examples
of Windows Service / UI communication.
Thanks a lot
JB