Visual Basic Textbox Disable And Enable

[Solved] Visual Basic Textbox Disable And Enable | Swift - Code Explorer | yomemimo.com
Question : Visual basic textbox disable

Answered by : siyatheking

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load TextBox1.Enabled = False End Sub

Source : https://www.codeproject.com/Questions/493097/Howplustoplusenable-2fdisableplusaplustextplusboxp | Last Update : Mon, 25 Oct 21

Question : Visual basic textbox disable and enable

Answered by : siyatheking

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load txt1.Disabled = True End Sub Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click txt1.Disabled = False End Sub

Source : https://www.codeproject.com/Questions/493097/Howplustoplusenable-2fdisableplusaplustextplusboxp | Last Update : Mon, 25 Oct 21

Answers related to visual basic textbox disable and enable

Code Explorer Popular Question For Swift