Samalia,
Using the Application Builder is not the best way to get started with a VFP application, and in any case it doesn't generate any functional code -- rather, it does the initial housekeeping, such as creating directories and the like.
In general, if you have a login form, you will probably also need a User table. This is an ordinary DBF file that holds, as a minimum, the user's login name and their password. Depending on your needs, it might also hold the user's real name, and details of any security settings they might have.
The password should ideally be encrypted. A very simple way to do that is to store it as a checksum, using VFP's SYS(2007) function.
In the login form, you need to do a simple search on the login name and (encrypted) password. If you succeed in finding a record, the user is good to log in. If you don't, then either the login name, the password, or both is invalid.
Elsewhere in the application, you'll need a "manage users" function, by which an adminstrator can add and delete users, plus a "change password" facility.
All these things are pretty generic, so it would be a good idea to build them all into a general-purpose class that you could then use in any application.
Hope this is of some use.
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro tips, advice, training, consultancy
Custom software for your business