
03-20-2003, 01:21 AM
|
 |
Gaming God
Retired Leader * Expert *
|
|
Join Date: Feb 2002
Location: Brisbane, Australia
Posts: 2,363
|
|
|
There is another way to do it.
You can make one of the subs in the form public, then call it from the add form before closing it:
frmmain:
sub AddPerson(Id as string, Name as string)
' add the data
end sub
frmadd
call frmmain.addperson("12345","pooks")
|
|