ALTADataSet.Message: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) |
Chris Kahn (talk | contribs) |
||
Line 28: | Line 28: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|'Overrides requested, | {{APIComment|'Overrides requested, create a new class and Inherit WeibullEvents, and set the dataset's events.}} | ||
Private Class myEvents | Private Class myEvents | ||
Inherits WeibullEvents | Inherits WeibullEvents |
Revision as of 16:45, 6 May 2014
Called when a message should be displayed. Displays a message.
Syntax
- Message( sender As ALTADataSet, sMsg As String , AdditionalInfo As String , IsCritical As Boolean )
Parameters
- sender: An ALTADataSet object
- sMsg: The main display label.
- AdditionalInfo: The remaining label.
- IsCritical: Indicates whether the message displayed is critical.
Usage Example
'Overrides requested, create a new class and Inherit WeibullEvents, and set the dataset's events. Private Class myEvents Inherits WeibullEvents Public Overrides Sub Message(sender As ALTADataSet, sMsg As String, AdditionalInfo As String, IsCritical As Boolean) MyBase.Message(sender, sMsg, AdditionalInfo, IsCritical) '<Add additional code here.> End Sub End Class 'Set the new Events class. ADS.Events = New myEvents 'Send a message. ADS.Events.Message(ADS, "message", "additional info", False)