Lecture 3 ฟอร์ม, คอนโทรล
Initial Visual Basic Screen
Toolbox
Four Controls at Design Time Text box
5 Text Box Control Sizing handles Tasks button
Properties Window Properties Window Categorized view Alphabetical view Press F4 to display the Properties window for the selected control.
7 Properties Window PropertiesSettings Selected control
Button Control
Add an "access key" How? By using the ampersand (&)
Control Name Prefixes ControlPrefixExample buttonbtnbtnCompute labellbllblAddress text boxtxttxtAddress list boxlstlstOutput
Auto Hide Push pin
Positioning Controls Proximity line
Aligning Controls Snap line
Tab Order Tab index
Sample Form txtFirst txtSecond btnRed Double Click on txtFirst
Code for Walkthrough Public Class frmDemo Private Sub txtFirst_TextChanged(...) Handles txtFirst.TextChanged txtFirst.ForeColor = Color.Blue End Sub End Class
IntelliSense Automatically pops up to give the programmer help. txtFirst.
Chapter 2 - VB 2008 by Schneider18 Code Editor Click tab to return to Form Designer
Code for Walkthrough Private Sub txtFirst_Leave(...) Handles txtFirst.Leave End Sub Private Sub txtFirst_TextChanged(...) Handles txtFirst.TextChanged txtFirst.ForeColor = Color.Blue End Sub Private Sub btnRed_Click(...) Handles btnRed.Click txtFirst.ForeColor = Color.Red End Sub
Code for Walkthrough Private Sub txtFirst_Leave(...) Handles txtFirst.Leave txtFirst.ForeColor = Color.Black End Sub Private Sub txtFirst_TextChanged(...) Handles txtFirst.TextChanged txtFirst.ForeColor = Color.Blue End Sub Private Sub btnRed_Click(...) Handles btnRed.Click txtFirst.ForeColor = Color.Red End Sub
โค้ดลัด (Code Snippet) พอ เมื่อในบางครั้ง มีชุดของโครงร่างของโค้ดอยู่แล้ว เราไม่จำเป็นต้องพิมพ์ทั้งหมด เราพิมพ์โค้ดลัดบางส่วน พอ เช่น พิมพ์พร็อบเพอร์ตี้ ก็ใช้เพียงพิมพ์ prop หรือ ต้องการสร้างคอนสตรักเตอร์ หรือฟังชั่นสร้างอ๊อปเจ็ค ของตนเอง เราทำเพียงพิมพ์คำว่า ctor แล้วกด แป้นพิมพ์เครื่องหมาย Tab 2 ครั้งติดกัน
Thank You…