We set the values of selected fields and then we stamp all field
values into the document.
[C#]
doc.Form["Day"].Value = "23";
doc.Form["Month"].Value = "February";
doc.Form["Year"].Value = "2005";
doc.Form["State"].Value = "Arizona";
doc.Form.Stamp();
[Visual Basic]
doc.Form("Day").Value = "23"
doc.Form("Month").Value = "February"
doc.Form("Year").Value = "2005"
doc.Form("State").Value = "Arizona"
doc.Form.Stamp()
|