jamal2080 قام بنشر يوليو 2, 2023 قام بنشر يوليو 2, 2023 Function FirstRcd(Frm) On Error Resume Next If Frm.Dirty = False Then On Error GoTo Err: DoCmd.GoToRecord , "", acFirst Exit Function Err: If Err.Number = 2105 Then MsgBox "لا يمكن الذهاب إلى السجل المطلوب", vbCritical + vbMsgBoxRight, "خطأ" End If Else MsgBox "تم تغيير محتويات النافذة يرجى الحفظ التغييرات", vbCritical End If End Function Function NextRcd(Frm) On Error Resume Next If Frm.Dirty = False Then On Error GoTo Err: DoCmd.GoToRecord , "", acNext Exit Function Err: If Err.Number = 2105 Then MsgBox "لا يمكن الذهاب إلى السجل المطلوب", vbCritical + vbMsgBoxRight, "خطأ" End If Else MsgBox "تم تغيير محتويات النافذة يرجى الحفظ التغييرات", vbCritical End If End Function Function prevRcd(Frm) On Error Resume Next If Frm.Dirty = False Then On Error GoTo Err: DoCmd.GoToRecord , "", acPrevious Exit Function Err: If Err.Number = 2105 Then MsgBox "لا يمكن الذهاب إلى السجل المطلوب", vbCritical + vbMsgBoxRight, "خطأ" End If Else MsgBox "تم تغيير محتويات النافذة يرجى الحفظ التغييرات", vbCritical End If End Function Function LastRcd(Frm) On Error Resume Next If Frm.Dirty = False Then On Error GoTo Err: DoCmd.GoToRecord , "", acLast Exit Function Err: If Err.Number = 2105 Then MsgBox "لا يمكن الذهاب إلى السجل المطلوب", vbCritical + vbMsgBoxRight, "خطأ" End If Else MsgBox "تم تغيير محتويات النافذة يرجى الحفظ التغييرات", vbCritical End If End Function استدعاء الامر Call NavigationModule.NextRcd(Me) هل يوجد خطاء فى الكود
jjafferr قام بنشر يوليو 2, 2023 قام بنشر يوليو 2, 2023 وعليكم السلام 🙂 قام الاخ موسى بكتاية اكواد فريق الانتقال (GotoRecord) كاملا هنا :
الردود الموصى بها
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.