PRB: Cannot Load the Same Class Library More Than Once (156341)
The information in this article applies to:
- Microsoft Visual FoxPro for Windows 5.0
- Microsoft Visual FoxPro for Windows 6.0
This article was previously published under Q156341 SYMPTOMS
Visual FoxPro version 5.0 does not allow you to load the same class library
more than once, using the "SET CLASSLIB... ALIAS ... ADDITIVE" command.
WORKAROUND
If you want to load the same class library multiple times, you have to
create multiple copies of the same class library in different directories
and then load each one. Following is an example to do so:
SET CLASSLIB TO
**Make a temp directory in the HOME() directory**
MD HOME()+'temp'
**Copy the Class Library files to the temp directory**
COPY FILE HOME()+'wizards\wizstyle.vc?' to HOME()+'temp\wizstyle.vc?'
**Load First instance of the Class Library**
SET CLASSLIB TO HOME()+'wizards\wizstyle' ALIAS one
**Display the Class Library(ies) Loaded into memory**
?SET('CLASSLIB')
**The above command will display the First Library**
**Load second instance of the Class Library
SET CLASSLIB TO HOME()+'temp\wizstyle' ALIAS two ADDITIVE
**Display the Class Library(ies) Loaded into memory**
?SET('CLASSLIB')
**The above command will display both instances of the library**
STATUS
This behavior is by design.
Modification Type: | Major | Last Reviewed: | 10/15/2003 |
---|
Keywords: | KB156341 |
---|
|