#What is the extension of VB project file?
The extension of the VB project file is:.vbp (Visual Basic Project)
Visual Basic generates many files when creating and compiling projects. These files are classified as follows: design-time files, miscellaneous development files, and run-time files.
Design-time files are the building blocks of the project: such as base modules (.bas) and form modules (.frm).
Miscellaneous files are generated by various processes and functions in the Visual Basic development environment: such as Packaging and Deployment Wizard dependency files (.dep).
Design-time and miscellaneous files
Various design-time files and other miscellaneous files will be generated when developing an application, as listed in the following table:
扩展名 描述 .bas 基本模块 .cls 类模块 .ctl 用户控件文件 .ctx 用户控件的二进制文件 .dca 活动的设计器的高速缓存 .ddf 打包和展开向导 CAB 信息文件 .dep 打包和展开向导从属文件 .dob ActiveX 文档窗体文件 .dox ActiveX 文档二进制窗体文件 .dsr 活动的设计器文件 .dsx 活动的设计器的二进制文件 .dws 部署向导脚本文件 .frm 窗体文件 .frx 二进制窗体文件 .log 加载错误的日志文件 .oca 控件类型库缓存文件 .pag 属性页文件 .pgx 二进制属性页文件 .res 资源文件 .tlb 远程自动化类型库文件 .vbg Visual Basic 组工程文件 .vbl 控件许可文件 .vbp Visual Basic 工程文件 .vbr 远程自动化注册文件 .vbw Visual Basic 工程工作空间文件 .vbz 向导发射文件 .wct WebClass HTML 模板
Run-time files
When compiling an application, all necessary design-time files are included in the run-time executable file. The run-time files are listed in the following table:
扩展名 描述 .dll 运行中的ActiveX 部件 .exe 可执行文件或ActiveX 部件 .ocx ActiveX控件 .vbd ActiveX 文档状态文件 .wct WebClass HTML模板
The above is the detailed content of What is the extension of VB project file?. For more information, please follow other related articles on the PHP Chinese website!