Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpose of CLS files and DLL files in VB?

Tags:

vb6

Does anyone have a good explanation of what the different meaning of the CLS, DLL, and VBP files in a VB project are?

like image 605
Brian Avatar asked Dec 08 '10 04:12

Brian


1 Answers

  • CLS file is a class file containing the source code for one class.
  • VBP file is a project file. You open a VBP in the VB6 IDE to browse or edit the code for that project.
  • Projects can also be included in groups (VBG files), roughly equivalent to what .Net calls solutions.
  • DLL file is a compiled executable library built from your VB6 source code. See Wikipedia

The VB6 manual explains many of the file extensions, including CLS and VBP.

like image 82
MarkJ Avatar answered Oct 01 '22 09:10

MarkJ