2008年5月13日 星期二

Help 及智慧提示使用例

■起始位置設為(0,0)語法如下
SGhostPBox.Location = New Point(0, 0)

操作方法

1、輸入「SGhostPBox.l」注意按下「l」(L的小寫字母)後會出現智慧提示功能如下

clip_image002

游標移至「Location」上面後,按下「Tab」鍵,「Location」會自動輸入,再鍵入「 = New po」,得到如下畫面。

clip_image004

游標移至「Point」上面後,按下「Tab」鍵,「Point」會自動輸入,鍵入「(」後出現的智慧提示畫面,如下圖。

clip_image006

依提示,把X,Y座標鍵入即可,如下圖。

clip_image008

■在計時器物件上,快速點按左鍵二下,會自動出現如下副程式架構

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick                   

    End Sub

鍵入

SGhostPBox.Location = New Point(SGhostPBox.Location.X + 20, SGhostPBox.Location.Y)

即得完整程式

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

SGhostPBox.Location = New Point(SGhostPBox.Location.X + 20, SGhostPBox.Location.Y)

End Sub

■Help之使用

游標移至想要查詢的程式碼上,按下「F1」鍵,除說明外,一般均可找到可以參考的範例,畫面如下(以查詢Point語法為例)

clip_image011

沒有留言: