Hi,
Usually you can give X-Parameters on the command line and/or a
configuration file. X-Application are supposed to first forward these
commands to some function that does the processing of them (or of course
handle it themselves).
Do
man -k Xserver
and/or lookup the documentation for appletviewer on the
www.javasoft.com
site.
Regards, Ron AF Greve.
Look up
"Lafoopsie" <> wrote in message
news: ...
> Hi!
>
> In my C++ program, I can launch an external program, for example:
>
> #include <cstdlib>
>
> int main()
> {
> std::system("appletviewer");
> }
>
> But is there a way to control the appearance of that application? For
> example, I could say: open this application, let it appear on 300 pixels
> from the left of the screen, 200 pixels from the top of the screen, and
> don't show any borders.
>
> Is this possible? Maybe with some X functions?
>
>
> Your help would be great!
>
>
> Greetz,
> Klaas
>
>