comp.lang.tcl Google Group | Korea Tcl/Tk Community

comp.lang.tcl Google Group

내용묶음
The Tcl programming language and related tools.
업데이트: 4 days 3 hours 지남

solutions manual and exam bank (TB) for Understanding Financial Statements Ormiston Fraser 10th edition

목, 01/31/2013 - 21:44
Manuals with detailed solutions and great explanation,contact to road89...@gmail.com or road89395(at)gmail(dot)com,aff ordable price.

Exam Bnak (TB) Essentials of Strategic Management :The Quest for Competitive Advantage Gamble Thompson Peteraf 3rd edition

목, 01/31/2013 - 21:44
Manuals with detailed solutions and great explanation,contact to road89...@gmail.com or road89395(at)gmail(dot)com,aff ordable price.

Exam Bank (TB) Fundamentals of Selling : Customers for Life through Service Futrell 12th edition

목, 01/31/2013 - 21:44
Manuals with detailed solutions and great explanation,contact to road89...@gmail.com or road89395(at)gmail(dot)com,aff ordable price.

byte-swapping: performance

목, 01/31/2013 - 21:44
Hi,

What is the fastest way of coding byte-swapping?

if bvals is a long binary string of variable length: 12345678....
that I want to parse to: [list 0x3412 0x7856 ...]

Is it:

a)

for {set i 0} {$i < [string length $bvals]} {incr i 4} {
set val [string range $bvals $i [expr {$i + 3}]]

canvas: Why bind <Leave> throws error but <Button-1> not

목, 01/31/2013 - 21:44
What I get an error with <Leave> but not with <1> ?

Error:
"bad option "find": must be cget or configure"

The code:

pack [canvas .c]
.c create line 50 0 50 [.c cget -height] -tags aha -width 1 -fill red

bind . <Leave> {hair_delete %W %x} ;# error

proc hair_delete {w x} {
if {[llength [$w find withtag aha]]} {