Reputation: 27412
Does anyone have a good explanation of what the different meaning of the CLS, DLL, and VBP files in a VB project are?
Upvotes: 9
Views: 31727
Reputation: 30408
The VB6 manual explains many of the file extensions, including CLS and VBP.
Upvotes: 19
Reputation: 9193
In pre .Net days .cls files were where your class modules lived. Dll's stand for Dynamic Link Libraries and is a compiled assembly. VBP stands for Visual Basic Project and is the master file for the whole project.
Upvotes: 6
Reputation: 166576
cls - class file
dll - Dynamic Link Libraries/Assembly
vbp - Visual Basic Project
Have a look at Visual Basic File Types
Upvotes: 4