Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. irenicus

    help with grid geometry manager

    Hi, I have to display frames (all the items in the frame are "packed" with the option -expand on) and I need that they have the same size. I've tried with a grid layout giving to my frames the same rowspan/columnspan but the frames don't fill all the available space. How can I do?
  2. irenicus

    a menubutton that display the name of its items

    set mylist [list BAGA DOLE FIAGAR GRASS GRENO LESIM LIMOG MONTP PALMA VENTO] set myMenuButton [menubutton .myMenuButton -menu .myMenuButton.myMenu -textvariable buttonName] set buttonName [lindex $radars 0] set names [menu .myMenuButton.myMenu] foreach name $mylist { $names add command...
  3. irenicus

    a menubutton that display the name of its items

    I want to make a menubutton which display the name of the menu items selected I ve written : set mylist [list BAGA DOLE FIAGAR GRASS GRENO LESIM LIMOG MONTP PALMA VENTO] set myMenuButton [menubutton .myMenuButton -menu .myMenuButton.myMenu -textvariable buttonName] set buttonName [lindex...
  4. irenicus

    hello, how can i change font style in a button?

    well i have to ask another question : how can I display a custom font (i got the font detail in a .bdf) in a button? thx
  5. irenicus

    hello, how can i change font style in a button?

    hi i'm trying to be able to change the font style of my button i've done: checkbutton .myButton -bg $Grey -foreground $Black -font {Courier 12} -text Text -selectcolor $Black -indicatoron 0 -command { if {[ .myButton cget -foreground] == $Black} { .myButton configure...
  6. irenicus

    probably a stupid question about checkbutton but...

    thx but i've hoped that another solution exist (another widget for example)...
  7. irenicus

    probably a stupid question about checkbutton but...

    i'm trying to make a button where font color and background color exchage whether it is selected or not. I'm trying whith a checkbutton but there is no simple way to change the foreground checkbutton .chkbutton -bg $color1 -foreground $color2 -font {Courier 12} -text T -selectcolor...
  8. irenicus

    doesn't compile don't know why

    thx very much for helping me :-)
  9. irenicus

    doesn't compile don't know why

    ok but will it work with freewarp (a free wrapper to build standalone .exe from tcl)?
  10. irenicus

    doesn't compile don't know why

    do you know any kind of pixmap 24bits that tk can read? i need to display a 24bit pixmap image into a button (no other choice .gif .jpg ... forbiden)
  11. irenicus

    doesn't compile don't know why

    i'm making button with icons and when i try image create photo imgleft -file [file join . arrows leftArrow.bmp] i've the error : couldn't recognize data in image file "./arrows/leftArrow.bmp" whereas if i write : image create photo imgleft -file [file join . arrows leftArrow.gif] (both...

Part and Inventory Search

Back
Top