> I don't think we are talking about the same thing. I want to disable the
>  standard window controls in the upper right (Minimize, Maximize and
> Close)  like I can do with VC++.

This will get rid of the Minimize and Maximize.

  $results = new Win32::GUI::DialogBox(
    -name        => "results",
    -text        => "results",
    -left        => 300,
    -top         => 120,
    -left        => 120,
    -size        => [800,550],
    -helpbutton  => 1,
    -menu        => 0,
    -maximizebox => 0,
    -minimizebox => 0,
    -resizable   => 0,
  );

  $Search = new Win32::GUI::Window (
    -name        => "Search",
    -text        => "Search",
    -left        => 300,
    -top         => 100,
    -left        => 100,
    -size        => [300,260],
    -menu        => 0,
    -maximizebox => 0,
    -resizable   => 0,
    -maximizebox => 0,
    -minimizebox => 0,
    -resizable   => 0,
  );

-- 
Nathaniel G. Bartusiak
TTMS, Keesler AFB





Reply via email to