Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vfp7 startup

Status
Not open for further replies.

57Tolly

Technical User
Feb 19, 2002
5
GB
vfp7 wont go further than the command window. how do I continue? I'm sure that there must be a command that I can use but as I am a new user of vfp7 I am baffled Help!!!
I have consulted the help file without success
 
You've Got It!

The command window is all in VFP. Don't look disappointed, though: You'll find the command window 100X more powerful than that limited menu-interface that MS Access has.

Try these commands:
CREATE TABLE
MODIFY STRUCTURE
LIST STRUCTURE
APPEND
BROWSE NORMAL
EDIT NORMAL
CREATE DATABASE
MODIFY DATABASE

Also, note that any of these can be abbreviated to the first 4 characters.. ie: CREA TABL; MODI STRU; MODI DATA, etc.
 
Also, use the menus at the top. Most menu selections will perform the operation and place the executed code in your command window allowing you to review them later.

Dave S.
 
You can also actually write programs with interactive user interface, like in VB. If you are familiar with VB programming - many things in VFP are similar to VB as far as user inteface design is concerned.
Start from clicking File/New, click on Project, save it in some directory (do not save it in your VFP7 directory! Make something like C:\MyWorks directory) and then click Add to add a new form into your project.
One thing you have to be aware, though: unlike VB, VFP does not automatically starts dialog, you have to issue the command

READ EVENTS

to start dialog and the command

CLEAR EVENTS

to end it.
You might wanna look up these commands in the VFP's Help.

Good luck and welcome to the club!

Regards.
 
The easiest way to get started developing VFP programs is to take someone else's program and practice modifying it. The danger is that you can easily pick up bad programming habits if you start with a poorly designed program. Anyone have a good example to point at? The TasTrade example that ships with VFP is rather complicated to start with.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top