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
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.
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.
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.