Creates an empty PowerBuilder library with optional comments.
LibraryCreate ( libraryname {, comments } )
Argument |
Description |
---|---|
libraryname |
A string whose value is the name of the PowerBuilder library you want to create. If you want to create the library somewhere other than the current directory, enter the full path name. |
comments (optional) |
A string whose value is the comments you want to associate with the library. |
Integer. Returns 1 if it succeeds and -1 if an error occurs. If any argument’s value is null, LibraryCreate returns null.
LibraryCreate creates a PowerBuilder library file (PBL) in the current directory, unless you specify a directory path as part of libraryname. If you do not specify an extension, LibraryCreate adds the extension .PBL.
This statement in Windows NT creates a library named dwTemp in the PB directory on drive C and associates a comment with the library:
LibraryCreate("c:\pb\dwTemp.pbl", &
"Temporary library for dynamic DataWindows")