استزيد من علمكم اساتذتى الكبار فى تصحيح هذا الكود لمحاولة استكمال برنامجى بعد الإستفادة من مشاركتكم العظيمة
Private Sub OpenFile_Click()
Dim File_Path As String, File_Name As String, Name_Path As String
File_Path = Application.CurrentProject.Path & "\وارد\"
File_Name = Dir(File_Path & Me.crn & "*.pdf")
If File_Name = "" Then
MsgBox "المستند غير محفوظ"
Exit Sub
End If
While File_Name <> ""
Name_Path = File_Path & File_Name
Application.FollowHyperlink Name_Path
File_Name = Dir()
Wend
End Sub
ويتم تغير مسار فتح الملف بالمسار التالى
Application.CurrentProject.Path & D & [Text10] & D & [نوع_الخطاب] & D & [Combo1] & D & [crn] & D)