That'll work, but it'll always hard code the size and location of the host
frame.  Alternatively, you can pass those arguments to your application at
the command line.

On Fri, Oct 2, 2009 at 12:01 PM, Vicente de Rivera III <
[email protected]> wrote:

> Hi,
> I had that problem too before, here's my main method
>
>      public static void main(String[] args) {
>         if (args.length > 0) {
>             noDb = true;
>         }
>         args = new String[]{"--width=800", "--height=650",
> "--center=true"};
>         Locale.setDefault(new Locale("en", "PH"));
>         DesktopApplicationContext.main(Main.class, args);
>     }
>
> if you look at the code in DesktopApplicationContext, I'm sure you see
> the arguments there
>
> -
> thirdy
>

Reply via email to