D
Derek Hart
I have a custom control with a property defined as follows. The UITypeEditor
is a Windows Form called MergeFieldNameBuilder. How do I pass a variable to
this form from this property? Cannot figure out how to set a global variable
from here, or some other way to pass it in.
<Editor(GetType(MergeFieldNameBuilder),
GetType(System.Drawing.Design.UITypeEditor))> _
Public Property DataField() As String
Get
Return _DataField
End Get
Set(ByVal value As String)
_DataField = value
End Set
End Property
is a Windows Form called MergeFieldNameBuilder. How do I pass a variable to
this form from this property? Cannot figure out how to set a global variable
from here, or some other way to pass it in.
<Editor(GetType(MergeFieldNameBuilder),
GetType(System.Drawing.Design.UITypeEditor))> _
Public Property DataField() As String
Get
Return _DataField
End Get
Set(ByVal value As String)
_DataField = value
End Set
End Property