in reply to win32::GUI::DialogBox help ? button

If you posted some code, it might attract more attention.

  • Comment on Re: win32::GUI::DialogBox help ? button

Replies are listed 'Best First'.
Re^2: win32::GUI::DialogBox help ? button
by smrtdrmmr (Novice) on Aug 09, 2004 at 16:37 UTC
    I am not sure what sort of code I am supposed to post because I am actually seeking code about how to make the ? button do something.

    use Win32::GUI;

    $main = Win32::GUI::DialogBox->new(
    -title => "The AMAZING FOODCHOOSER $curvers!",
    -text => "The Amazing Foodchooser $curvers!",
    -left => 110,
    -top => 110,
    -width => $dbwidth,
    -height => $dbheight,
    -name => 'Main',
    );

    sub helpbutton_Click{ #What should this be called?

    Jason