Creating fields using code

Dear reader

May i know how to create fields through code?

Waiting for ur quick response

from abc

Subject: creating fields using code

just use the help…have a look at the designer help and search for ReplaceItemValue - then check the examples.

Should show the following:

Dim doc As NotesDocument

Dim item As NotesItem

'…set value of doc…

Set item = doc.ReplaceItemValue( “EstimatedCost”, 122 )

Call doc.Save( True, True )

so far

alex