[ 本帖最后由 iamee 于 2008-2-23 00:04 编辑 ]作者: liangzhenye 时间: 2008-2-23 09:51
Private Sub Command0_Click()
Dim photopath As String
photopath = "D:\Documents and Settings\Administrator\桌面\test\test\" ' 相关图片的位置
Dim db As Database
Dim temp As Recordset
Set db = CurrentDb
Set temp = db.OpenRecordset("select * from [雇员]", 2)
While Not temp.EOF
If Dir(photopath & temp![照片]) <> "" Then 'dir 是一个函数
MsgBox "有图片"
Else
MsgBox "no photo"
End If
temp.MoveNext
Wend
temp.Close
End Sub作者: yanlj518 时间: 2008-2-23 11:46
非常感谢,问题解决了!代码学习中!作者: 小作坊 时间: 2009-2-26 11:55
想学作者: chaojianan 时间: 2009-2-27 17:02
谢谢14楼分享。