I am still fighting with this: if I point to a Tcl installation different to the ActivePerl Tkkit.dll, I get an error message:
#!/usr/bin/perl
BEGIN {
#my $frameworkpath = "C:/tkkit.dll";#If I use this, it works
my $frameworkpath = "C:/ActiveTcl/bin/tk86t.dll";
print $ENV{'PERL_TCL_DL_PATH'} = $frameworkpath;
}
use strict;
use warnings;
use Tcl::pTk;
my $int = new Tcl::pTk;
$int->Eval(<<'EOS');
# pure-tcl code to create widgets (e.g. generated by some GUI builder)
text .e
## http://wiki.tcl.tk/1626#tk_version
.e insert end "tcl_version $tcl_version\n"
.e insert end "tcl_patchLevel $tcl_patchLevel\n"
.e insert end "tk_version $tk_version\n"
.e insert end "tk_patchLevel $tk_patchLevel\n"
.e insert end "tk_library $tk_library\n"
pack .e
EOS
my $e = $int->widget('.e'); # get .e entry into play
$e->insert( "end", "
Tcl::pTk $Tcl::pTk::VERSION
Tcl $Tcl::VERSION
\$^V $^V
\$] $]
");
$int->MainLoop;
Error:
NpLoadLibrary: could not find Tcl library at 'C:/ActiveTcl/bin/tk86t.d
+ll' at C:/Perl/site/lib/XSLoader.pm line 114.
Failed to load Tcl dll! at C:/Perl/site/lib/XSLoader.pm line 114.
Unable to initialize Tcl at C:/Perl/site/lib/XSLoader.pm line 114.
Compilation failed in require at C:/Perl/site/lib/Tcl/pTk.pm line 6.
BEGIN failed--compilation aborted at C:/Perl/site/lib/Tcl/pTk.pm line
+6.
Compilation failed in require at .\tclVersion.pl line 10.
BEGIN failed--compilation aborted at .\tclVersion.pl line 10.
What am I doing wrong?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|