Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinMaskedEdit Private Sub UltraMaskedEdit1_MaskValidationError(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinMaskedEdit.MaskValidationErrorEventArgs) Handles ultraMaskedEdit1.MaskValidationError ' MaskValidationError gets fired when the user tries to move the focus away from the ' masked edit while the masked edit has an invalid input. Debug.WriteLine("MaskValidationError fired.") If Not e.Message Is Nothing Then Debug.WriteLine("Error message = " & e.Message) End If ' Set the Beep to false to prevent the masked edit from beeping which it does ' by default. e.Beep = False ' Set the RetainFocus to false to prevent it from retaining focus which it does ' by default. e.RetainFocus = False End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinMaskedEdit; using System.Diagnostics; private void ultraMaskedEdit1_MaskValidationError(object sender, Infragistics.Win.UltraWinMaskedEdit.MaskValidationErrorEventArgs e) { // MaskValidationError gets fired when the user tries to move the focus away from the // masked edit while the masked edit has an invalid input. Debug.WriteLine( "MaskValidationError fired." ); if ( null != e.Message ) { Debug.WriteLine( "Error message = " + e.Message ); } // Set the Beep to false to prevent the masked edit from beeping which it does // by default. e.Beep = false; // Set the RetainFocus to false to prevent it from retaining focus which it does // by default. e.RetainFocus = false; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2