لنجرب اعادة ترتيب الأحداث .. لأ المرفق عندي يعمل 100% في جهازي في العمل
Private Sub scan1_Click()
[picfile] = Null
On Error Resume Next
If scanner.DeviceInfos.Count = 0 Then
MsgBox "لا يوجد ماسح ضوئي متصل", vbExclamation
Exit Sub
Else
Dim filelocation As String ' متغير موقع الملف
filelocation = Application.CurrentProject.Path & "\" & "Image" & "\Items\" & Me.mID & "T." & ".jpg"
'filelocation = Application.CurrentProject.Path & "\" & "Image" & "\" & "Items" & "\" & Me.mID & "T." & ".jpg"
Dim scandiag As New WIA.CommonDialog
Dim image As WIA.ImageFile
Set image = scandiag.ShowAcquireImage
image.SaveFile filelocation
Me.picfile = filelocation
Me.Refresh
End If
End Sub