|
2#
楼主 |
发表于 2013-3-8 15:44:37
|
只看该作者
本帖最后由 licho 于 2013-3-8 17:16 编辑
原来论坛有相关资料,会被管理{:soso_e171:}
都是EXCEL的,用不上
我想用以下这个方法:- Field2.LoadFromFile 方法
- 从磁盘加载指定文件。
- 版本信息
- 已添加版本: Access 2007
- 语法
- 表达式.LoadFromFile(FileName)
- 表达式 一个代表 Field2 对象的变量。
- 参数
- 名称 必选/可选 数据类型 描述
- FileName 必选 String 要加载的文件的完全限定路径。
- 示例
- 以下代码段使用 LoadFromFile 方法从磁盘加载雇员的图片。
- Visual Basic for Applications
- ' Instantiate the parent recordset.
- Set rsEmployees = db.OpenRecordset("Employees")
- … Code to move to desired employee
- ' Activate edit mode.
- rsEmployees.Edit
- ' Instantiate the child recordset.
- Set rsPictures = rsEmployees.Fields("Pictures").Value
- ' Add a new attachment.
- rsPictures.AddNew
- rsPictures.Fields("FileData").LoadFromFile "EmpPhoto39392.jpg"
- rsPictures.Update
- ' Update the parent record
- rsEmployees.Update
复制代码 |
|