Help for this page

Select Code to Download


  1. or download this
        OBJECTNAME_Eventname
    
  2. or download this
        sub Button1_Click {
            # ...do something...
        }
    
  3. or download this
    sub Button1_Click { ... }
    
    ...
      -name => 'Button1',
      ...,
    );
    
  4. or download this
    $main->AddButton(
      -name => 'Button1',
      -onClick => sub { ... },
      ...,
    );