> What is the Win32::GUI equivalent of "Frames" concept in perl/tk ?

  you mean a groupbox?

    +- Sometext --------------+
    |                         |
    |                         |
    |                         |
    |                         |
    |                         |
    |                         |
    +-------------------------+


$Win->AddButton(
       -text    => "Sometext",
       -name    => "",
       -left    => 11,
       -top     => 8,
       -width   => 322,
       -height  => 44,
       -style  => WS_CHILD | WS_VISIBLE | 7,  # GroupBox
      );

Reply via email to