ADO DOT NET
Centurion
- Joined
- Dec 20, 2006
- Messages
- 160
Visual Basic:
OKButton.Location.X = 81
OKButton.Location.Y = 165
OKButton.Size.Height = 22
OKButton.Size.Width = 65
OKButton.Location.X = 81
OKButton.Location.Y = 165
OKButton.Size.Height = 22
OKButton.Size.Width = 65
OKButton.Location = New Point(81, 165)
OKButton.Size = New Size(22, 65)
OKButton.Bounds = [COLOR="Blue"]New[/COLOR] Rectangle(81, 165, 22, 65)