Purpose
Fills the field data of a file on the FirstClass server from either a form or a message.
All fields are sent to the file, including fields that aren't visible using the client.
Syntax
ServerFile.FillFrom (Form)
Example
Dim sf as ServerFile
sf.OpenFile ("Mailbox | Item", fcReadWrite)
frm.Show
sf.FillFrom (frm)
sf.CloseFile
|