請問VB裡要如何讀取另一表單裡的資料??
例如一個程式裡有Form1 Form2
然後Form1裡的Picturebox要顯示form2裡面picturebox的圖片
不知道這樣解釋好不好...
2005-12-25 07:28:24 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 ➔ 程式設計
Private Sub Command1_Click()
Form1.Picture1.Picture = Form2.Picture1.Picture
'或
Form1.Picture1.Picture = Form2.Picture1.Image
Unload Form2
End Sub
2005-12-25 07:46:02 · answer #1 · answered by W.J.S. 7 · 0⤊ 0⤋