hello
I try to use a documentation program nammed "edoc".
It use tk and it's written in Perl
I m trying it on Win98
The programme stop because it don't find tk:
hoto.
I have all the needed modules installed on my computer
so i think that there is a pathway problem inside these
lines :
package Tk;
require DynaLoader;
eval q{ require Tk::Event };
@ISA = qw(DynaLoader);
bootstrap Tk;
sub TranslateFileName { $_[0] };
sub SplitString { split /\s+/, $_[0] }; # rough approximation
package Tk:
hoto;
@ISA = qw(DynaLoader);
bootstrap Tk:
hoto;
Can you explain what the mean of the bootstrap instruction ?
Thanks
PS : All the above code is after BEGIN
I try to use a documentation program nammed "edoc".
It use tk and it's written in Perl
I m trying it on Win98
The programme stop because it don't find tk:
I have all the needed modules installed on my computer
so i think that there is a pathway problem inside these
lines :
package Tk;
require DynaLoader;
eval q{ require Tk::Event };
@ISA = qw(DynaLoader);
bootstrap Tk;
sub TranslateFileName { $_[0] };
sub SplitString { split /\s+/, $_[0] }; # rough approximation
package Tk:
@ISA = qw(DynaLoader);
bootstrap Tk:
Can you explain what the mean of the bootstrap instruction ?
Thanks
PS : All the above code is after BEGIN