I assume you talk about the Code page tab of the project manager and the Stored Procedures node of a database in the data page tab.
Well, the code you write in the code tab is written into prgs, stored procedures are stored in the DBC file, you just have one Memo for all stored procedures. You can reference external classes, prg or vcx, whatever you like, you just need to assure the DBC would find it.
Typically you only make use of stored procedures for code handling referential integrity (via database insert/update/delete triggers), audit trail and other data related stuff.
Forget about stored procedures, if you don't know much about referential integrity, this is what VFP will automatically generate, if you MODIFY DATABASE and in the database menu "edit referential integrity".
Bye, Olaf.