Hi, how can I control the number of rows and columns of the tixTList ? __________________________________________________________________ Do You Yahoo!? ...
Holger Meiners
holger_meiners@...
Jul 12, 2001 9:25 am
734
Hi, I am using a tabnotebook in one of the utility. One of the tab ( tab1 ) I am getting the locations of few jars files etc. On the next tab ( tab2 ) I want...
atul.bhingarde@...
Jul 12, 2001 3:10 pm
735
Holger, # use one of these tixTList .t -orient horizontal -itemtype window tixTList .t -orient horizontal -itemtype window -width 100 tixTList .t -orient...
David Gardiner
davidllewellyngardine...
Jul 13, 2001 12:34 am
736
Hi guys, How do I fire a child process and wait till it gets terminated.I have written following lines of code but that doesn't work for me. ... package...
Mehul Thakkar
mehul_303@...
Jul 17, 2001 11:31 am
737
Hi, I am trying to control two HList with an additional scrollbar. Scrolling with the sbar works fine, but the -yscrollcommand option in the HList does not...
Holger Meiners
holger_meiners@...
Jul 17, 2001 3:14 pm
738
Can you send me your code? I briefly tested with tixTree. I could navigate with UP and DOWN keys and the scrollbar moves accordingly. - Ioi ... ...
Ioi Lam
ioilam@...
Jul 18, 2001 1:17 am
739
Hi, seems to be a prolblem with the tix version the tool uses. With tixwish8.1.8.3 the code works perfectly. Thanks Holger ... <HR> <html><body> <tt> Can you...
Holger Meiners
holger_meiners@...
Jul 18, 2001 7:19 am
740
What versions of TCL/TK work with TIX 8.2.0b1? Thanks, =Adrian= Information in this message is confidential and may also be legally privileged. It is intended...
adrian.davis@...
Jul 18, 2001 12:51 pm
741
Any recent versions of Tcl/Tk would do. I tested with version 8.3.2. - Ioi...
Ioi Lam
ioi.lam@...
Jul 18, 2001 9:24 pm
742
tcl8.3 and tk8.3 works fine with tix8.2 ... __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail...
Mehul Thakkar
mehul_303@...
Jul 19, 2001 12:52 pm
743
Hi, Is there any way to disable Tix's font and color schemes? They mess up my application on Windows because they don't obey the default appearance schemes of...
Tom Downey
tjd@...
Jul 24, 2001 11:07 pm
744
Use Tix 8.2.0. It no longer turns on the schemes by default. http://tixlibrary.sourceforge.net/...
Ioi Lam
ioi.lam@...
Jul 25, 2001 12:19 am
745
Hello, Can someone tell me how to build the development library for tix (e.g. "libtix.so"). I used to download RPM for linux, but now I am trying to get one...
leonlee011@...
Jul 27, 2001 1:01 am
746
When you run ./configure, pass --enable-shared. Do a ./configure --help to show all options. - Ioi ... __________________________________________________ Do...
Ioi Lam
ioilam@...
Jul 27, 2001 4:35 am
747
Is there a way to save the history of the tixCombobox? What I want to do is have the application store the entries of the application for other users to use...
h296506@...
Aug 13, 2001 12:16 pm
748
Ioi, Does this mean there is a way to enable Tix's font and and color schemes for Tix 8.2? I like the original fonts and colors. :-) BTW, there is still a...
iamwobster@...
Aug 13, 2001 11:15 pm
749
To get and restore the "history" of a tixComboBox, you need to manipulate its "listbox" subwidget directly. Here's how to read the content of the listbox: ...
Ioi Lam
ioi.lam@...
Aug 14, 2001 6:49 am
750
i am using a tixTree widget to display a hierarchical data structure. each entry has -itemtype image (i'm using the conventional open/closed folder and page...
Try the "-wideselect 1" option of the hlist subwidget - Ioi...
Ioi Lam
ioi.lam@...
Aug 14, 2001 6:31 pm
753
... excellent. thanks. i got it to work, but have another question: the wideselect option does not seem to be settable at tixTree creation, a la: % tixTree...
yrmbh@...
Aug 14, 2001 8:19 pm
754
You got a case problem. Should be % tixTree .tree -options {hlist.columns 5 hlist.wideSelection 1} ^ ^^^ Also, only command-line options can be...
Ioi Lam
ioi.lam@...
Aug 14, 2001 8:30 pm
755
Has anybody taken the time to generate a set of TK Options settings to restore the L&F of the current version of Tix 8.2 back to the original nice looking Tix?...
iamwobster@...
Aug 15, 2001 9:44 pm
756
Add a tix resetoptions TixGray 14Point at the very beginning of your app (before any widget is created) seems to do the trick. Let me know if this works in all...
Ioi Lam
ioi.lam@...
Aug 16, 2001 6:45 am
757
Yippee, it works! I'll let you know if I come across any instances that don't work. ... seems ... might ... slightly ... somewhere...
iamwobster@...
Aug 16, 2001 3:16 pm
758
Hi Tom, this is a bit late, but anyway, here is the solution: just add following line at the end of the code you have provided here. $w.tree setmode p1 open ...
Vikrant Sharma
svikrants@...
Aug 27, 2001 8:49 am
759
Hi, I am using Tcl/Tk for the installation utility. I am using tixMeter and few other widgets from tix. One of the problem I am facing is as follows. If I use...
atul.bhingarde@...
Sep 7, 2001 5:39 pm
760
DO NOT DELETE IF YOU HAVEN'T READ THIS. THIS IS A ONE TIME MAILING. This program is for real. And it works no matter which country you live in (read the...
Analyze Well
rwwxx@...
Sep 15, 2001 12:07 am
761
Hi, I have 2 constructs which used to work in Tix 4.1, and have been changed for Tix 8.2 - I see wording in the Changelog that mentions both these changes, but...
Gregory Hosler
gregory.hosler@...
Sep 19, 2001 1:26 am
762
... tixItemStyle is an obsolete command name. Use tixDisplayStyle instead. As a work around proc tixItemStyle {args} { return [eval tixDisplayStyle $args] } ...