I use Access as my FE and SQl Server as my BE.
I want to be able to insert an image into the SQl Server BE from my Access FE and be able to display this image.
I looked at the following link
Insert a picture into a Access table with a SQL Server Backend - Stack Overflow
but it gets stuck at
when running
The error is "Run-time error '438' Object doesn't support this property or method'
I want to be able to insert an image into the SQl Server BE from my Access FE and be able to display this image.
I looked at the following link
Insert a picture into a Access table with a SQL Server Backend - Stack Overflow
but it gets stuck at
Code:
Me!imgLogo = MyImage
when running
Code:
' save current record
If Me.Dirty Then Me.Dirty = False
Dim MyImage() As Byte
MyImage = GetFileBytes(Me.txtLogo)
Me!imgLogo = MyImage
Me.Dirty = False
The error is "Run-time error '438' Object doesn't support this property or method'