你看我这样行吗?
Private Sub 主体_Format(Cancel As Integer, FormatCount As Integer)
On Error Resume Next
If Dir("J:\照片\stuphoto\" & XH.Value & ".jpg") = "" Then
Image44.Picture = ""
Else
Image44.Picture = "J:\照片\stuphoto\" & XH.Value & ".jpg"
End If
End Sub
但是这个照片还是要出来的。
然后我使用了方式是:
If Dir("J:\照片\stuphoto\" & XH.Value & ".jpg") = "" Then
Image44.Picture = "i:\blank.jpg" --此处使用一个白色照片,然后置到最底层,哎,很麻烦。
Else
Image44.Picture = "J:\照片\stuphoto\" & XH.Value & ".jpg"
End If
[此贴子已经被作者于2005-1-6 0:00:19编辑过]
|