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