Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the file name extension for visual basic?

Tags:

vb6

Is it .vb like the latest version, I'm talking about version 6.0 (classic)? I'm trying to properly title a visual basic script for a module I need. If I have to redo a script because I cannot name a extension I am going to be mad.

like image 689
theshover Avatar asked Jun 20 '16 22:06

theshover


1 Answers

There are several:

  • .cls (class file)
  • .frm (form)
  • .frx (form - binary information)
  • .ctl (custom control)
  • .ctx (custom control binary information)
  • .vbp (project)
  • .vbg (project group)
  • .bas (module)
  • Probably more...

The one you want is most likely .cls.

This answer as also good definitions: https://stackoverflow.com/a/4385921/755977

like image 166
PhilDulac Avatar answered Sep 22 '22 10:09

PhilDulac