comp.lang.tcl Google Group
solutions manual and exam bank (TB) for Understanding Financial Statements Ormiston Fraser 10th edition
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
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
Manuals with detailed solutions and great explanation,contact to road89...@gmail.com or road89395(at)gmail(dot)com,aff ordable price.
byte-swapping: performance
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
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]]} {
Home
Wiki
Archive Center
Bug Tracker
E-Mail