PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Michael Shillito on December 05, 2009, 06:57:45 PM

Title: FireLink
Post by: Michael Shillito on December 05, 2009, 06:57:45 PM
Does anybody have an example of using the FireLink Custom Control.
Title: Re: FireLink
Post by: Paul Squires on December 06, 2009, 04:47:57 PM
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