CREATE CLASSLIB Command
Creates a new, empty visual class library (.vcx) file.
CREATE CLASSLIB ClassLibraryName
Parameters
ClassLibraryName
Specifies the name of the visual class library to create. If a visual class library with the name you specify already exists and SET SAFETY is ON, Visual FoxPro asks if you'd like to overwrite the existing visual class library. If SET SAFETY is OFF, the existing file is automatically overwritten.If you don't specify an extension for the file name, Visual FoxPro automatically assigns a .vcx extension.
Remarks
Class definitions can be added to a visual class library with ADD CLASS and CREATE CLASS.
Example
The following example uses CREATE CLASSLIB to create a visual class library named myclslib
. A class named myform
based on the Visual FoxPro Form base class is created and is stored in the myclslib
visual class library. SET CLASSLIB is used to open the myclslib
visual class library so that classes within it can be used.
CREATE CLASSLIB myclslib && Creates a new .VCX visual class library
CREATE CLASS myform OF myclslib AS "Form" && Creates new class
SET CLASSLIB TO myclslib ADDITIVE && Opens MyClsLib.VCX
See Also
ADD CLASS Command | _BROWSER System Variable | CREATE CLASS Command | DEFINE CLASS Command | MODIFY CLASS Command | RELEASE CLASSLIB Command | SET CLASSLIB Command