简体   繁体   English

将 jpg 保存为附件的 Excel 宏

[英]Excel macro to save jpg as attachment

I'm lost with this topic.我迷失了这个话题。 I gonna try to explain what I'm trying to do: - the idea I have, is to be able to upload or save jpg files to my access 2010 database, this proccess is launched by usign macro in excel.我将尝试解释我正在尝试做的事情: - 我的想法是能够将 jpg 文件上传或保存到我的 access 2010 数据库中,此过程由 excel 中的 usign 宏启动。 I've read a lot in Internet but honestly I'm stuck, I'm not able to find an example.我在互联网上阅读了很多,但老实说我被卡住了,我找不到一个例子。 I want to use ADO connection My idea is to use post labels and this labels will be different, I mean, I want to print these labels with these pictures.我想使用ADO连接我的想法是使用post标签,这个标签会有所不同,我的意思是,我想用这些图片打印这些标签。

Below you can see What I'm trying to do.您可以在下面看到我正在尝试做的事情。 I'm lost, I get errors, perhaps if someone has an example I could adapt it because, I think, I am not able to use the one I have.我迷路了,我得到了错误,也许如果有人有一个例子,我可以调整它,因为我认为,我无法使用我拥有的那个。

the procedure is as follow:程序如下:

Sub SUBIRIMAGEN() 'To save a file in a table as binary


    Dim adoStream               As Object
    Dim adoCmd                  As Object
    Dim strFilePath             As String
    Dim adoCon                  As Object

    Const strServerName         As String = ""  'Server Name

    Set adoCon = CreateObject("ADODB.Connection")
    Set adoStream = CreateObject("ADODB.Stream")
    Set adoCmd = CreateObject("ADODB.Command")


    strDBName = "database1.accdb"
    strMyPath = ThisWorkbook.Path
    strDB = strMyPath & "\" & strDBName

'Connect to a data source:
'For pre - MS Access 2007, .mdb files (viz. MS Access 97 up to MS Access 2003), use the Jet provider: "Microsoft.Jet.OLEDB.4.0". For Access 2007 (.accdb database) use the ACE Provider: "Microsoft.ACE.OLEDB.12.0". The ACE Provider can be used for both the Access .mdb & .accdb files.




    '--Open Connection to SQL server
    adoCon.CursorLocation = adUseClient
    adoCon.Open ConnectionString:="Provider = Microsoft.ACE.OLEDB.12.0; data source=" & strDB
    Rem adoCon.Open "Provider=SQLOLEDB;Data Source=" & strServerName & ";Initial Catalog = " & strDB & ";Integrated Security=SSPI;"
    '----

    strFilePath = "C:\Users\pc2\Downloads\frutossecosgranel.JPG" ' File to upload

    adoStream.Type = adTypeBinary
    adoStream.Open
    adoStream.LoadFromFile strFilePath 'It fails if file is open

    With adoCmd
        .CommandText = "INSERT INTO table1 (id,attach) VALUES (?,?) " ' Query
        .CommandType = adCmdText

        '---adding parameters
        .Parameters.Append .CreateParameter("@Id", adInteger, adParamInput, 0, 1)
            .Parameters.Append .CreateParameter("@attach", adVarBinary, adParamInput, adoStream.Size, adoStream.Read)
        '---
    End With

    adoCmd.ActiveConnection = adoCon
        adoCmd.Execute

    adoCon.Close


End Sub

Use the following code to attach image to database access from excel.使用以下代码从 excel 将图像附加到数据库访问。

Write this code in excel用excel写下这段代码

Modify the constants as you need根据需要修改常量

 Private Sub AttachImage()
    Const dbname = "c:\temp\Db.accdb"
    Dim sql As String
    Dim db As Database
    Dim rst As Recordset2
    Dim rstImage As Recordset2
    Dim imageField As Field2
    Dim path As String
    Dim lnga As Integer
    Dim lngkey As Long
    path = "c:\temp\table.png"

    'select the row to be attached by image
    sql = "SELECT * FROM table2  WHERE ID =  1"
    Set db = DBEngine.Workspaces(0).OpenDatabase(dbname)
    Set rst = db.OpenRecordset(sql)

    Set imageField = rst!Blob  ' Blob is the field name to store attachment
    Set rstImage = imageField.Value
     rst.Edit
    rstImage.AddNew
    On Error Resume Next
    rstImage!FileData.LoadFromFile path
    If Err <> 0 Then
    MsgBox "Error: " + Err.Description, vbInformation, path
    Exit Sub
    End If
    rstImage.Update
    rst.Update

   Set rst = Nothing
   Set db = Nothing
End Sub

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM