Is a .vcx simply a file like a prg with the extension replaced ?

Re: Making .vcx Class files. by Bernhard

Bernhard
Wed Jan 17 06:03:51 CST 2007

Hi Rob,

> Is a .vcx simply a file like a prg with the extension replaced ?
A vcx is a standard foxpro table with the extension replaced. The related memo
file has the extension vct.
You can open it with USE if you add the extension:
USE yourfile.vcx
The same is valid for Report definitions (frx, frt), Screen files (scx, sct),
Menu files (mnx, mnt) and others.

Have a look in the help, topic "Table File Structure"

Regards
Bernhard Sander

Re: Making .vcx Class files. by Rick

Rick
Wed Jan 17 20:48:51 CST 2007

Rob,
Bernhard has given you part of the answer. The other piece is that you can write
class code in a .PRG file, it's just a little more difficult if you have any
visual aspects to the class.

Rick

"Rob" <user@example.net> wrote in message
news:ujpSVuiOHHA.2468@TK2MSFTNGP06.phx.gbl...
> Is a .vcx simply a file like a prg with the extension replaced ?