mysql - TCL HTML File Viewer -
mysql - TCL HTML File Viewer - i want convert info mysql html using tcl. the real problem converting mysql info html, showing html in tcl viewer, can host ie within tcl canvas or widget etc. want develop adhoc html-reporting module assignment. in short: want load/open/view html file in tcl. samples highly appreciated. while can't create ie render on canvas — many things interact in unpleasant ways create impossible — may able utilize optcl embed in window, can set in canvas if choose. here's informative illustration page: package require optcl optcl::new -window .htm {http://wiki.tcl.tk} .htm config -width 800 -height 600 pack .htm this manufacture instance of com object handling http url (in case, http://wiki.tcl.tk ) , embed in tk widget ( .htm ). if going embed in canvas, you'd do: package require optcl canvas .canv optcl::new -window .canv.htm http://wiki.tcl.tk .canv create window 0 0 -anchor nw -window .canv.htm pack .canv wel