Posts
 
Reputation
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
~7K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for sizzlefire

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!

Member Avatar for Fernando_28
0
7K

The End.