List Members:   Lists the data members and methods after the object name and dot (member selection operator) are typed.
Parameter Info:   Shows the type and meaning of each parameter for a method after typing the method name and left parenthesis. If the method is overloaded, any signature of the overloaded methods can be chosen.
19. Display "The stuff that dreams are made of." in red letters in
txtBox.
txtBox.ForeColor = Color.Red
txtBox.Text = "The stuff that dreams are made of."
21. Disable txtBox.
txtBox.Enabled = False
22. Change the words in the form's title bar to "Hello World".
Me.Text = "Hello World"
23. Make lblTwo disappear.
lblTwo.Visible = False
or
lblTwo.Hide( )
25. Enable the disabled button btnOutcome.
btnOutcome.Enabled = True
28. Give the focus to txtBoxTwo.
txtBoxTwo.Focus( )
Ans: Here is the source code for the two event handlers:
Public Sub picFace_MouseEnter(sender As Object, _ e As MouseEventArgs) picFace.Image = Image.FromFile("happy.jpg") End Sub Public Sub picFace_MouseLeave(sender As Object, _ e As MouseEventArgs) picFace.Image = Image.FromFile("sad.jpg") End Sub
Subtraction   -
Multiplication   *
Division   /
Integer Division   \
Exponentiation   ^
Greater Than   >
Greater Than Or Equal To   >=
Less Than   <
Less Than Or Equal To   <=
Not Equal To   <>
Reference Equality   Is
Boolean Or   Or
x | y |
---|---|
5 | 7 |
17 | 10 |
47 | 13 |
Here is the output:
47 13
 
Text:   String
TextAlign:   TopLeft, TopCenter, TopRight, MiddleLeft, MiddleCenter, MiddleRight, BottomLeft, BottomCenter, BottomRight
Text:   String
TextAlign:   Same Values as label control.
DoubleClick:   User clicks twice on the button in a short amount of time.
CharacterCasing:   Lower, Normal, Upper
MaxLength:   Integer
Multiline:   False, True
PasswordChar:   String (should be of length 1)
ReadOnly:   False, True
ScrollBars:   None, Horizontal, Vertical, Both
Text:   String
TextAlign:   Center, Left, Right
WordWrap:   False, True
Clear:   Set Text to "".
DoubleClick:   Same as button DoubleClick event.
TextChanged:   Fires when the Text property is changed by the user or application code.