Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinMaskedEdit Private Sub Button6_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button6.Click ' Make the masked edit read-only. Me.UltraMaskedEdit1.ReadOnly = True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinMaskedEdit; using System.Diagnostics; private void button6_Click(object sender, System.EventArgs e) { // Make the masked edit read-only. this.ultraMaskedEdit1.ReadOnly = true; }