Visual Basic  Glossary

 
Else This is part of the If......Then......Else statement
Else This is part of the If......Then......Elseif  statement
Enabled

The property to specify whether or not the user can interact with a control.

Example:   TextBox1.Enabled=False  means textBox1 is disabled and the user cannot type in anything into the text box.

                 To enable it, set the property to true.  i.e.  TextBox1.Enabled=True

 

End To end a program. To be inserted between  Private Sub.........End Sub
Exit To exit a looping procedure.  Example: Do while......If X=0 then Exit Do.........Loop
   
   
   

 

 

  [Back to VB Glossary]