chrisdedobb
Registered User.
- Local time
- Yesterday, 17:32
- Joined
- Nov 4, 2004
- Messages
- 16
I am not sure what I am doing wrong.
I have loaded up a sample DB that has a table with an OLE Object and a form that displays the Bitmap in an outbound OLE Object field.
On that form, there is a button that does the following:
Private Sub Command2_Click()
Dim strPath As String
Dim strID As String
strID = Me!ID
strPath = "c:\ERRSCRN_" & strID & ".bmp"
MsgBox (strPath)
SavePicture tblErrorScreenShots.scrn1.Picture, strPath ' << IT CRASHED HERE WHEN I DEBUGGED
End Sub
I get the following Error Message. I have no Idea what to do. Please Help!
Run-time error '438':
Object doesn't support this property or method
I have loaded up a sample DB that has a table with an OLE Object and a form that displays the Bitmap in an outbound OLE Object field.
On that form, there is a button that does the following:
Private Sub Command2_Click()
Dim strPath As String
Dim strID As String
strID = Me!ID
strPath = "c:\ERRSCRN_" & strID & ".bmp"
MsgBox (strPath)
SavePicture tblErrorScreenShots.scrn1.Picture, strPath ' << IT CRASHED HERE WHEN I DEBUGGED
End Sub
I get the following Error Message. I have no Idea what to do. Please Help!
Run-time error '438':
Object doesn't support this property or method