Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.67K
1 Posted Topic
try this: Dim MyPDFFormCheckBoxField As Fields.PdfFormField = myform.GetField("myCheckBox") MyPDFFormCheckBoxField.SetCheckType(PdfFormField.TYPE_CHECK) MyPDFFormCheckBoxField.SetValue("", If(myCheckBox.IsChecked = True, True, False)) This: If(myCheckBox.IsChecked = True, True, False) is what actually check or not the checkbox on the PDF, notice this is the second paramenter of SetValue!
The End.
Fernando_28