Does anybody have an example of using the FireLink Custom Control.
The FireLink control is pretty basic. It essentially fires a BN_CLICKED notification whenever someone clicks on the link. In that event handler you perform whatever you what to do in reaction to the click.
'--------------------------------------------------------------------------------
Function FORM1_FIRELINK1_BN_CLICKED ( _
ControlIndex As Long, _ ' index in Control Array
hWndForm As Dword, _ ' handle of Form
hWndControl As Dword, _ ' handle of Control
idButtonControl As Long _ ' identifier of button
) As Long
? "FireLink Clicked... do whatever you want to do here."
End Function