ALTAEvents Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 22: Line 22:
   ADS.Events = New myEvents
   ADS.Events = New myEvents
    
    
  {{APIComment|'Initialize the MsgBoxStyle and MsgBoxResult variables.}}
  {{APIComment|'Initialize the MsgBoxStyle and MsgBoxResult variables. See [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxstyle.aspx MsgBoxStyle] and [http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.msgboxresult.aspx MsgBoxResult].}}
   Dim MsgBoxStyle1 As MsgBoxStyle = MsgBoxStyle.YesNoCancel
   Dim MsgBoxStyle1 As MsgBoxStyle = MsgBoxStyle.YesNoCancel
   Dim Answer As MsgBoxResult  
   Dim Answer As MsgBoxResult  

Revision as of 18:43, 1 April 2014


Contains all the event handlers that can be called by ALTADataSet. To use events, you must inherit the class, override its methods and assign its instance to the Events property of an ALTADataSet. ALTAEvents inheritance is not available in VB6/VBA.

Methods

Usage Example

 'Overrides requested. Create a new class and inherit ALTAEvents. Then set the dataset's Events. 
 Private Class myEvents
     Inherits ALTAEvents
     Public Overrides Sub Question(sender As ALTADataSet, sMsg As String, Buttons As MsgBoxStyle, ByRef Answer As MsgBoxResult)
         MyBase.Question(sender, sMsg, Buttons, Answer)
             '<Add additional code here.> 
     End SubEnd Class
 
 'Set the new events class. 
 ADS.Events = New myEvents
 
 'Initialize the MsgBoxStyle and MsgBoxResult variables. See MsgBoxStyle and MsgBoxResult. 
 Dim MsgBoxStyle1 As MsgBoxStyle = MsgBoxStyle.YesNoCancel
 Dim Answer As MsgBoxResult 
 
 'Ask a question. Result will be updated in Answer. 
 ADS.Events.Question(ADS, "Continue?", MsgBoxStyle1, Answer)