I need to generate a pixelmap. I know the height and the width. But now I need to fill one pixel ( or a block for bigger resolution ) on the position x y.
Say I have the following structure: package require Itcl itcl::class开发者_StackOverflow中文版 AAA {
I am implementing an entry and开发者_如何学Go button with the following functionality. On clicking the button I will get a list of check buttons. After selecting check buttons they should get reflecte
For example, in Perl, to get a sequential array of numbers from 1 to 10, you could simply do: @myArray = (1 .. 10);
Heyhoo, now i need to compare a String like \"[INTENSITY]\" to $line. ATM i want to do it like if { [string compare \"[INTENSITY]\" $line] == 0 } { }
So I\'ve got a list, a开发者_开发百科nd in TCL the items are stored as {\"1\" \"2\" \"3\"}, space seperated. I\'d like to convert this list to being {\"1\",\"2\",\"3\"} -- what would be an efficient w
I need a simple solution to figure o开发者_Python百科ut whether some characters are in a string in Tcl.
I have a Tcl script controlling an automated tester. So far it was a console program that took user input at the command prompt. A colleague wrote a Tk GUI that can be launched by the script. I have n
I want to dynamically disable or enable checkbuttons based on the options the user selects. What I would like is a cross between radiobutton and checkbutton.
I know the \"<<\" is a开发者_StackOverflow社区 bit operation. but I do not understand what it exactly functions in TCL, and when should we use it?