I'm trying to figure out how to add objects to the different Tabstrips,
   but I don't see anything in the sample code (tabstrip.pl) which shows how
   this is done.
 
   I thought something like this would work, but no-go.

      ...

      $W->AddTabStrip(
          -name   => "Tab",
          -left   => 0,
          -top    => 0,
          -width  => $W->ScaleWidth,
          -height => $W->ScaleHeight,
      );

      $W->Tab->InsertItem(
          -text  => "General",
          -name  => Gen,
      ); 

      $W->Tab->Gen->Addbutton(
          -text => "Hello",
          -left => 10,
          -top  => 10,
      );

   Anybody gotten tabstrips to work?

   Thanks.

   -----------
   David Hiltz

Reply via email to