Search results

  1. Z

    in perl tk how to bind the addition (+) sign?

    in perl tk how do i bind the addition sign? my code: $mw->bind("<Key-+>" => \&button); it doesn't work. i also tried <Key-Plus>, <Plus>, <Button-Plus> and some other phrases what is the correct phrase?
  2. Z

    in perl tk how to bind the addition (+) sign?

    in perl tk how do i bind the addition sign? my code: $mw->bind("<Key-+>" => \&button); it doesn't work. i also tried <Key-Plus>, <Plus>, <Button-Plus> and some other phrases what is the correct phrase?
  3. Z

    in perl tk how do i align buttons on the same row?

    here's (part of) my code: my $but1 = $mw -> Button(-text => "1", -command =>\&push_1)->pack(-side => 'left'); my $but2 = $mw -> Button(-text => "2", -command =>\&push_2)->pack(); my $but3 = $mw -> Button(-text => "3", -command =>\&push_3)->pack(-side => 'right'); how do i align all the buttons...
  4. Z

    in perl tk how to bind the addition (+) sign?

    in perl tk how do i bind the addition sign? my code: $mw->bind("<Key-+>" => \&button); it doesn't work. i also tried <Key-Plus>, <Plus>, <Button-Plus> and some other phrases what is the correct phrase?
  5. Z

    in perl tk how to bind the addition (+) sign?

    in perl tk how do i bind the addition sign? my code: $mw->bind("<Key-+>" => \&button); it doesn't work. i also tried <Key-Plus>, <Plus>, <Button-Plus> and some other phrases what is the correct phrase?
  6. Z

    in perl tk how do i align buttons on the same row?

    here's (part of) my code: my $but1 = $mw -> Button(-text => "1", -command =>\&push_1)->pack(-side => 'left'); my $but2 = $mw -> Button(-text => "2", -command =>\&push_2)->pack(); my $but3 = $mw -> Button(-text => "3", -command =>\&push_3)->pack(-side => 'right'); how do i align all the buttons...
  7. Z

    Is there a way to shutdown a computer with html?

    No but that would be cool.
  8. Z

    in perl tk how to bind the addition (+) sign?

    in perl tk how do i bind the addition sign? my code: $mw->bind("<Key-+>" => \&button); it doesn't work. i also tried <Key-Plus>, <Plus>, <Button-Plus> and some other phrases what is the correct phrase?
  9. Z

    in perl tk how do i align buttons on the same row?

    here's (part of) my code: my $but1 = $mw -> Button(-text => "1", -command =>\&push_1)->pack(-side => 'left'); my $but2 = $mw -> Button(-text => "2", -command =>\&push_2)->pack(); my $but3 = $mw -> Button(-text => "3", -command =>\&push_3)->pack(-side => 'right'); how do i align all the buttons...
Back
Top