Posted to tcl by zipguy at Wed May 28 12:25:33 GMT 2014view raw
- package provide app-demo_tablelist 1.0
-
- source tablelist.kit
- package require tablelist
-
- console show
- set d [pwd]
- puts "d =<$d>"
-
- set d \
- "D:/dl/dcl/mine/demo_tablelist.vfs/lib/app-demo_tablelist"
- puts "d =<$d>"
-
- set f1 [file join $d browse.tcl]
- #set f1 "$d/browse.tcl"
- puts "f1 =<$f1>"
-
- ========
- Console output below
- ========
- d =<D:/dl/dcl/mine>
- d =<D:/dl/dcl/mine/demo_tablelist.vfs/lib/app-demo_tablelist>
- f1 =<D:/dl/dcl/mine/demo_tablelist.vfs/lib/app-demo_tablelist/browse.tcl>
- (mine) 1 %
- ========
- If I add the line:
-
- source $f1
-
- which is there (I copied all of the files there just to see if it would work)
- I get a message which looks like this:
- http://www.geocities.ws/thezipguy//tcl/misc/tablist_failing.png
-
-
-