i'm very new to C++, but feel it may hold the answer to what i'm after,
i want to send an email if more than four applications are being run on
a PC.... can this be done, if so how..........?? ?
"philhowell " <member23185@db forums.com> wrote in message
news:3116491.10 58357635@dbforu ms.com...[color=blue]
>
> i'm very new to C++, but feel it may hold the answer to what i'm after,
> i want to send an email if more than four applications are being run on
> a PC.... can this be done, if so how..........?? ?
>
> cheers
> Phil
>[/color]
Standard C++ has no answer to this question. Standard C++ has no method of
detecting how many applications are running or sending emails. You are
confusing the facilities that your operating system provides with the
facilities that a language provides. Providing your language of choice gives
you good access to the underlying operating system you can do whatever the
operating system can do.
In short you need to ask this on a Windows programming group, not a C++
language group. Try news:comp.os.ms-windows.program mer.win32 for instance.
Comment