in reply to Running a program off a CD
I propose you to start your script with "loading" all your modules and shared libraries that your script can use.
You have a set of files that are perl modules, or bootstrap files, or shared libraries. Then at the very beginning of your script you call some subroutines from each of those modules. For example, create hidden Entry, fire some events that will be processed by your script (keystrokes, mouse movements, and so on). Then create listbox, do something with it, and so on. After that destroy those widgets without even showing them.
Once your shared libraries will be loaded from CD-ROM into memory, system will not read them second time, so your problem will be solved.
Courage, the Cowardly Dog
things, I do for love to perl...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Running a program off a CD
by metlhed_ (Beadle) on Aug 14, 2002 at 16:33 UTC | |
by Courage (Parson) on Aug 14, 2002 at 16:52 UTC |