Presentation is loading. Please wait.

Presentation is loading. Please wait.

程式設計 Visual Basic簡介 週次:4 建國技術學院 資管系 饒瑞佶 2003年11月1日.

Similar presentations


Presentation on theme: "程式設計 Visual Basic簡介 週次:4 建國技術學院 資管系 饒瑞佶 2003年11月1日."— Presentation transcript:

1 程式設計 Visual Basic簡介 週次:4 建國技術學院 資管系 饒瑞佶 2003年11月1日

2 功能鈕的設計 其他屬性設定 Caption Name(預設command1) :寫程式時用的名稱 font…. Top Height
Width Left Top 其他屬性設定 Caption Name(預設command1) :寫程式時用的名稱 font….

3 功能鈕的設計 Style屬性,當CommandButton的Style設為 1 時,也就是CommandButton可以用圖形的方式來顯示,你在屬性對話框裡,把Command的Picture屬性的右邊欄位點一下,它會出現有〝...〞的按鈕,你就按它一下,用它幫你載入圖片。 DownPicture,這個屬性是指,Command被點選時會出現的圖片,DisablePicture則是指Command.Enabled被設為False時則該出線的圖片。 CommandButton的Cancel屬性,CommandButton的Cancel屬性的功用,當你把Cancel屬性設為True時,你在Command上按 Esc 按鈕,則Command_Click()的事件會被執行,也就是你按下 Esc 就等於用滑鼠按它一下,對一群Command來說,只能有一個Command的Cancel屬性被設為True,主要是做出快速取消的功能。 TabIndex:可用Tab切換各按鈕

4 功能鈕的設計 快速鍵 Alt+字母 執行按鈕 在Caption屬性中設定 &英文字 例如:取消&E 說明文字 設定ToolTipText屬性

5 功能鈕的程式設計 Private Sub Command1_事件名稱() 程式碼 End Sub

6 功能鈕的設計 如果們想用在Command1上〝按一下〞,Command1連續向右移動3000個單位:
Private Sub Command1_Click() For N = 1 To 3000 Command1.Left = Command1.Left + 1 Next End Sub

7 標籤與文書盒 標籤:通常用在註解 文書盒:用於獲取使用者輸入的資訊

8 標籤屬性 Alignment:向左,向右,置中 Caption:顯示的文字內容 Font:設定顯示內容字型
Height, Left, Top, Width Name:寫程式時用的名稱 ……

9 文書盒屬性 Text:輸入內容 Font:設定顯示內容字型 Height, Left, Top, Width Name:寫程式時用的名稱
ToolTip PasswordChar MaxLength Ch7_2, p ch7_5, p ch7-7, ch7-8


Download ppt "程式設計 Visual Basic簡介 週次:4 建國技術學院 資管系 饒瑞佶 2003年11月1日."

Similar presentations


Ads by Google