Hello, it seems to me there is bug in the TixListNoteBook widget. When I use the widget-command 'pageconfigure', an errormessage appears : 'to many nested...
Helmut Schröder
dynalog@...
Dec 1, 1998 11:44 am
206
Hi Christian: Thanks for your reply. I tried your method but unfortunately it didn't work with the tixScrolledWindow. It did work with tixScrolledText. For the...
Alex Ma
alexm@...
Dec 1, 1998 6:36 pm
208
Hello ! Why not put all the available patches for TIX on the official TIX web site http://tix.mne.com ? Why not upgrate the last TIX version with these all...
Jean-Paul Dzisiak
JP.Dzisiak@...
Dec 2, 1998 9:44 am
209
... Use the Source, Luke! The connection is just a little less direct. It's in SWindow.tcl, wherever you've installed the Tix library, and looks pretty clear....
Bruce Stephens
b.stephens@...
Dec 2, 1998 10:31 am
210
All: Quick question - How do I remove items from a tixComboBox list ?? Many thanks in advance, Terry Hampton ( Cincinnati Bell ) ... Free Web-based e-mail...
Terry Hampton
terry.hampton@...
Dec 2, 1998 9:11 pm
212
All: Quick question - How do I remove items from a tixComboBox list ?? Many thanks in advance, Terry Hampton ( Cincinnati Bell ) ... All - Sorry for the email...
Terry Hampton
terry.hampton@...
Dec 2, 1998 9:38 pm
213
I've downloaded win41p6bin and tix41p6 and when I'm running tix4180.exe I've got th error message " cw3215.dll not find". So, can someone tell me (or send me)...
Christian Pabiou
cp@...
Dec 3, 1998 4:38 pm
214
I (and several others on this list) have run into this problem before... it seems that cw3215 was some Borland-generated dll that never made it into the binary...
Doug Way
dway@...
Dec 3, 1998 5:24 pm
215
... Putting the Borland DLL on the tix.mne.com website sounds like a great short-term solution. If the tix webmaster doesn't read this, I will send him some...
Doug Way
dway@...
Dec 3, 1998 6:34 pm
216
I think that the problem was that an older version of Tcl and Tk for windows was compiled and shipped with the Borland compiler, so the DLL was shiped with Tcl...
Bill Woodward
bill_cchkk@...
Dec 3, 1998 9:36 pm
217
I've been trying to get a tixHList widget to display the end of the list rather than the begining using the "pathName yview moveto fraction" method. However it...
Adrian Davis
Adrian.Davis@...
Dec 4, 1998 1:49 pm
218
I looked at the source but still couldn't find a solution. I tried moveto and scroll commands but they both have no effect. When I put widgets on the...
Alex Ma
alexm@...
Dec 7, 1998 11:55 pm
219
... Well, I just created .sw as a tixScrolledWindow, and tixScrolledWindow:ScrollBarCB .sw x moveto 0.5 moved the X scrollbar half way along. Was this the kind...
Bruce Stephens
b.stephens@...
Dec 8, 1998 10:15 am
220
Hi Bruce: It works now. But I have to call "update" before calling the "moveto" command. Anyways, thanks very much for your help. Alex ... Free Web-based...
Alex Ma
alexm@...
Dec 8, 1998 5:53 pm
221
Hello Bill I hava had the same problem cw3215.dll not found. As I understand the makefile.bc for tk and for tix specify an "cw32mti.lib" respectivly an ...
Bernhard Huber
b.huber@...
Dec 8, 1998 9:36 pm
222
Hi: I tried the followings: Example 1: expr 07 + 07 14 Example 2: expr 08 + 08 syntax error in expression "08 + 08" Can anyone explain why example 2 above ...
Alex Ma
alexm@...
Dec 9, 1998 12:36 am
223
I have been using the "plus" patches for Tcl and Tk. What I would like to know is whether there is such a patch for Tix. Specifically, I am using the patch to...
Zehava Stein
ZehavaStein@...
Dec 9, 1998 4:47 am
224
Hi Alex, if you put a 0 in front of a number it is interpreted as octal. Therefore 08 is invalid. Cheers, Frank ... Free Web-based e-mail groups --...
Frank Storm
Frank.Storm@...
Dec 9, 1998 7:46 am
225
... The leading zero means OCTAL notation, so if what you want is 8 + 8 you should write: expr 010 + 010 16 If your program has unwanted leading zeroes take...
Carlos Vidal
carlos@...
Dec 9, 1998 8:12 am
226
... When compiling Tix4.1 enable the 'sam' option (Stand Alone Module). This generates the library libtixsam4.1.* that has already all Tix compiled in C. Then...
Carlos Vidal
carlos@...
Dec 9, 1998 8:12 am
227
Alex, It may be that because you have a zero in front of the numbers they are being interpreted as Octal. "08" is an invalid octal number. Try it without the...
Kathy Bieltz
kab@...
Dec 9, 1998 1:48 pm
228
Hi Alex When a number start with a zero it is taken to be a octal number (like in C). So 08 is not allowed (07 is the biggest single numeric) Regards Henning...
Henning Godske
Henning.Godske@...
Dec 9, 1998 6:48 pm
229
... Because, as in C language, an initial zero marks an octal constant. And there is no 8 in octal :-) in the first example, 07 = 7, so the result is 14...
Christian Lefebvre
Christian.Lefebvre@...
Dec 9, 1998 6:48 pm
230
Thanks for the responses for my original question. Somebody even showed me how to get rid of the leading zeros and that works great. So my next question is: Do...
Alex Ma
alexm@...
Dec 9, 1998 6:58 pm
231
... Leading zero means octal. 8 is not an octal digit. ... -- Nick Ing-Simmons ... Free Web-based e-mail groups -- http://www.eGroups.com...
Nick Ing-Simmons
nick@...
Dec 9, 1998 7:29 pm
232
Carlos ... C. ... Unfortunately, either I do not understand something or I have not made myself clear. I have a large tix script spread over several files. I...
Zehava Stein
ZehavaStein@...
Dec 11, 1998 6:36 am
233
... I had the same problem too, but then I used ET. Although ET does not support tcl/tk 8.0, you can use it with just some little modifications. With ET, you...
Joerg Schlichenmaier
js@...
Dec 11, 1998 7:11 am
234
... Yes, you are right. In this case ET is the way to go. Otherwise, the method I use is to put Tcl/Tk/BLT in a single file with a simple 'sed' script...
Carlos Vidal
carlos@...
Dec 11, 1998 8:20 am
235
... Hi all ! To make Tcl,/TK , Tix , or BLT .. to be just one standalone executable . You downloaded ET from Dr. Richchard Hipp , then modify this...
Tom Tran
trantom@...
Dec 11, 1998 9:59 pm
236
... Actually, the author of ET has now moved on to a new, better, supported mechanism. See <URL: http://www.purl.org/net/tcl-faq/part5.html> and look at...