i have a database which is a food menu. i have successfully display on the picture box. However, i cant copy all the content in the picture box to the text box. i hava code but only display the last sentence...
hope to getting help here ^_^
here is my code
Private Sub Command6_Click()
Picture2.Cls
Data1.Recordset.MoveFirst
Do While Not Data1.Recordset.EOF
Picture2.Print Data1.Recordset!
Text5.Text = Data1.Recordset!
Data1.Recordset.MoveNext
Loop
End Sub
Private Sub Form_Load()
Data1.DatabaseName = App.Path & "\menu1.mdb"
Data1.RecordSource = "Table1"
Data1.Refresh
Text1.DataField = "Code"
End Sub