basically, you should not be showing any forms, message boxes or any other
type of UI element in your middle-tier components. There are several
reasons for this one of the most fundamental being that your application
architecture should not require someone to be sitting at a server watching
forms and message boxes. In fact, it is a good idea to set "Unattended
Execution" in the project's properties. If you want to report errors,
return codes, etc, you should have an exception handling framework set up
which "bubbles" things back to the client that called the component. You
can also log in the system event log.
HOpe that helps,
Stephen
> Hi!
>
[quoted text clipped - 11 lines]
>
> Jussi