VB6 picturebox 座標 10點

2011-07-31 7:55 pm
當滑鼠移至picturebox上某一點時,想得知座標 為何?
假設以Label1.caption和Label2.caption分別顯示滑鼠在Picturebox上的X和Y座標


有沒有API或VB6內建函數可處理呀

回答 (2)

2011-07-31 10:19 pm
✔ 最佳答案
您好 :

其實這個很簡單利用事件方法來達成即可。

Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
'靠滑鼠移動的事件去抓取X,Y座標的值
Label1.Caption = "X座標:" & X '水平
Label2.Caption = "Y座標:" & Y '垂直
End Sub

精華文章,請勿刪除 ^ ^
參考: 資料處理科+程式設計師
2011-07-31 8:49 pm
Picturebox_MouseMove(Button, Shift, X, Y) 嗎??

2011-07-31 15:24:16 補充:
上面智力有問題=_=


收錄日期: 2021-04-24 10:57:37
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20110731000010KK03045

檢視 Wayback Machine 備份