How do I load VB5 or 6 applications?

  • Thread starter Thread starter Mctabish
  • Start date Start date
M

Mctabish

THis may sound stupid....

I have several sample file that end with .frm. They are writen in VB 5
and/or 6. (these are from ExceleTel and their TeleTools)

I would like to take a look at these, but when I try to load, I get an error
message
"the form class contained in FILENAME is not supported in vbe. The file
can't be loaded

Thankss
Mc
 
Hi Mc,
VB5 & 6 form files are not compatible with VBA.
However they are ASCII.
You can open them with Notepad or any other text editor.
Copy & paste the CODE into VBA. Not the header info.
The controls' names will have to be edited.

VB=text1
VBA=textbox1
 
Back
Top