Search the web
Sign In
New User? Sign Up
wintcl
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 788 - 817 of 817   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
788
The following is a stub piece of code for which I can not understand the results in a Windows 95 environment when I run this code under wish 8.3: set fid [open...
Gregory J Samoluk
samolukg@...
Send Email
Jun 2, 2000
2:05 pm
789
Are you redirecting the output to a file? Either way if you add "flush stdout" after the call to "puts" you should see the behaviour you are expecting. stdout...
Matt Newman
matt@...
Send Email
Jun 2, 2000
2:31 pm
790
Cato, Matt, Mark, Al & Rick, Thank you for you all of your quick responses. I tried both adding the 'flush stdout' and 'update idletasks to my example. Under...
Gregory J Samoluk
samolukg@...
Send Email
Jun 2, 2000
5:38 pm
791
Sorry, seems i forgot to attach the code :) Here it is: text .t .t tag configure TAG1 -font [list [lindex [set a [.t cget -font]] 0] [lindex $a 1] bold] .t tag...
Kerem 'Waster_' HADIMLI
waster@...
Send Email
Jun 4, 2000
11:46 am
792
Kerem - Your example shows "interesting" behavior of the default font, MS Sans Serif, and its partner MS Serif. Using any other font (at least of the 30 I ...
Michael I Schwartz
mschwart@...
Send Email
Jun 4, 2000
5:54 pm
793
Hi, I've got following problem: 1. I use "Tcl_Main" to initialize my application via the selfwritten Tcl_AppInit-function called "vrml2src_init" 2. The...
Martin Lemburg (dCADE...
ml@...
Send Email
Jun 14, 2000
11:31 am
794
Hi again, I've tested a little bit and found out that an explicit call of "Tcl_SourceRCFile" seems to work, even if the source of "Tcl_Main" shows that this...
Martin Lemburg (dCADE...
ml@...
Send Email
Jun 14, 2000
11:46 am
795
Hi, I've tried two different regexp and thought the result will be the same. Could somebody please explain, the differences between the following regexps? 1....
Martin Lemburg (dCADE...
ml@...
Send Email
Jun 14, 2000
3:56 pm
796
Hi Robert, my thought was that the regular expression "^(=)|(set)$" could only match one '=' or the word "set" between the start and the end of the whole given...
Martin Lemburg (dCADE...
ml@...
Send Email
Jun 14, 2000
4:29 pm
797
I recently made the following Tcl/Tk coding error: set f [frame .x] label .$f.one -text "Label One" which should have been coded as: set f [frame .x] label...
Gregory J Samoluk
samolukg@...
Send Email
Jun 28, 2000
1:14 pm
798
... Your expectations were fine. You should receive an error instead of a freeze. I just tried your code snippet on Tcl/Tk 8.3.1 on WinNT 4.0, and I get the...
Techentin, Robert W.
techentin.robert@...
Send Email
Jun 28, 2000
1:19 pm
799
Bob, Thank you for your quick response. I followed your recommendation and upgraded to Tcl/Tk 8.3.1 and the expected errors are reported. This will same a...
Gregory J Samoluk
samolukg@...
Send Email
Jun 28, 2000
5:15 pm
800
Fellow TCLers, Does anyone know of a way for converting ASCII strings to EBCIDIC strings and vice versa without resorting to some sort of character by...
Gregory J Samoluk
samolukg@...
Send Email
Jul 26, 2000
5:41 pm
801
Is this possible? Or did anyone implemented this? I need this fast, this is very urgent. thanks, Kerem HADIMLI -- If it happens once, it's a bug. If it happens...
Kerem HADIMLI
waster@...
Send Email
Jul 31, 2000
11:57 am
802
... I haven't heard of anyone creating an internet explorer Tk Widget. But there are several alternatives, depending on what you need. 1. Check out...
Techentin, Robert W.
techentin.robert@...
Send Email
Jul 31, 2000
12:49 pm
803
Hi, I've been working on Tcl/tk for SNMP and also CMIP (GDMO) environment, did anybody here 've been trying on Tcl/tk for CORBA(ORB) environment? If ORB is ...
Heru Irman
heruir@...
Send Email
Aug 31, 2000
7:56 am
804
Thanks Folks for all the info, it’s very nice and helpful … I’ll report my progress soon ... I've been working on Tcl/tk for SNMP and also CMIP (GDMO)...
Heru Irman
heruir@...
Send Email
Sep 4, 2000
3:36 am
805
Fellow Users of 'mclistbox.tcl' Is there a way of forcing the alignment of any specific column within 'mclistbox 1.02'? My problem has to do with displaying a...
Gregory J Samoluk
samolukg@...
Send Email
Sep 21, 2000
8:18 pm
806
I'm unsure if this is a windows question or a tcl question but is it possible to have a shortcut which to "wish.exe script.tcl" deiconify or focus on an...
Robert Karen
robert@...
Send Email
Sep 28, 2000
9:15 pm
807
... With help of the dde package and slight change of a startup file, it should be possible without too much pain. The goal is to make a wish.exe to register...
Pascal Bouvier
pascal@...
Send Email
Sep 29, 2000
6:48 am
808
Hi, I have a tclsh console application that I would like to convert to a stand-alone script in BAT file on WindowsNT 4.0 or Windows2000 if possible so that I ...
Moo Kim
Moo.Kim@...
Send Email
Oct 11, 2000
2:08 am
809
... You could include the full path to my_app.tcl in the batch file. I'm not sure how much DOS batch file code you would have to write to search the path, and...
Techentin, Robert W.
techentin.robert@...
Send Email
Oct 11, 2000
12:47 pm
810
Hi, Yes, it is possible to launch tcl-files from the command prompt. First set the environment variable PATHEXT to the file extensions that are allowed to be...
Martin Lemburg (dCADE...
ml@...
Send Email
Oct 11, 2000
1:04 pm
811
Hi, I was looking for a generic solution that does not require to do the following: 1. Hard-coding the path of my tcl application in the .BAT file. 2. Adding...
Moo Kim
Moo.Kim@...
Send Email
Oct 11, 2000
5:05 pm
812
When I don't need a console to debug, sometimes I run bat files from the DOS uh, excuse me, NT command line like this: E:\Program Files\Tcl>proc_cdf Here's all...
Hutchins Joel Contr N...
joel.hutchins@...
Send Email
Oct 11, 2000
5:26 pm
813
Hi, I tried with most of suggestions by those who responded my email and the one method suggested by Michael Schwartz seem to work for my need. This method...
Moo Kim
Moo.Kim@...
Send Email
Oct 13, 2000
8:33 pm
814
Hello Kevin, I actually have tried you suggestion and it had few items I was not able to resolve. 1. I could not figure out how to get rid of output string "if...
Moo Kim
Moo.Kim@...
Send Email
Oct 13, 2000
9:58 pm
815
Well, i'm making a Tcl CGI that will generate an image. Is there any png or gif encoders in Tcl, which i can use in this CGI? Or any other format standart...
Kerem HADIMLI
waster@...
Send Email
Jan 7, 2001
2:30 am
816
Search for "png" in the FAQ Extension Catalog at http://www.purl.org/NET/Tcl-FAQ/part5.html and you'll find several. Bob -- Bob Techentin...
Techentin, Robert W.
techentin.robert@...
Send Email
Jan 8, 2001
2:22 pm
817
I have updated the versions of these 3 Windows Tcl extensions. URL reference http://www.du.edu/~mschwart/tcl-tk.htm GDI renders windows graphics calls onto a...
Michael I Schwartz
mschwart@...
Send Email
Apr 18, 2001
10:46 pm
Messages 788 - 817 of 817   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help