|
Guides (SDK /API) | Technical Reference | BBDN | How-to Documentation |
Code sample project: Custom Pledge Form
Open the form properties VB file that was created when you added the custom part (type). For example, open CustomPledgeFormProperties.vb.
Note: You can create additional VB files as necessary.
Declare a Boolean variable that tracks whether to write only to the custom pledge record:
Public OnlyWriteToCustomPledgeRecord As Boolean
Save the file.
The display and editor forms will check this variable to determine which record to use.
Public Class CustomPledgeFormProperties Public OnlyWriteToCustomPledgeRecord As Boolean End Class