F
Fredrick A. Zilz
I have read a number of articles and still think I am missing something.
I have a sql table with IDs and Image files of users signatures for signing Access reports as they are printed to PDF docs. I stored them in the sql database for security and to have the project contained within the database file and the adp file. So I would prefer not to use links. Using a .net windows app I can save to the table and display the images in the windows app. I use:
Dim userdat As New IHInv
Dim dr As DataRow
Dim abyt() As Byte
Dim i As Integer
i = CType(cmbBoxSign.SelectedValue, Integer)
dr = userdat.getSign(i).Rows(0)
Try
abyt = CType(dr.Item("Signature"), Byte())
Dim ms As New MemoryStream(abyt)
PictureBox1.Image = Image.FromStream(ms)
Catch
End Try
For an access report can I use memory stream? Is there a similar technique for MS access 2003?
Looking for some assistance.
Thanks
Fred
I have a sql table with IDs and Image files of users signatures for signing Access reports as they are printed to PDF docs. I stored them in the sql database for security and to have the project contained within the database file and the adp file. So I would prefer not to use links. Using a .net windows app I can save to the table and display the images in the windows app. I use:
Dim userdat As New IHInv
Dim dr As DataRow
Dim abyt() As Byte
Dim i As Integer
i = CType(cmbBoxSign.SelectedValue, Integer)
dr = userdat.getSign(i).Rows(0)
Try
abyt = CType(dr.Item("Signature"), Byte())
Dim ms As New MemoryStream(abyt)
PictureBox1.Image = Image.FromStream(ms)
Catch
End Try
For an access report can I use memory stream? Is there a similar technique for MS access 2003?
Looking for some assistance.
Thanks
Fred