اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

الردود الموصى بها

قام بنشر

السلام عليكم ورحمة الله وبركاته

انا عندى قاعدة بيانات فيها نموذج دخول وبعد دخول المستخدم بكلمة السر الخاصه به هيفتح صفحة تسجيل البيانات اريد ان اعطى لكل مستخدم صلاحية محدده

عندى جدول اسمه "tblUsers" مكوناته 

tblUsers
uUserID uFirstName uLastName uPassword uSecurityID
1 reception   *** 1
2 View Only   *** 8
3 ADMIN   *** 9
4 System Administrator   *** 13
6 security   *** 1

واستعلام اسمه "qryUsers"  ومكوناته

qryUsers
uUserID uFirstName FullName uPassword
1 reception reception ***
2 View Only View Only ***
3 ADMIN ADMIN ***
4 System Administrator System Administrator ***
6 security security ***

من فضلكم محتاج كود للنموذج فى 

event on open

بحيث 

uSecurityID 1  يقدر يسجل بيانات فقط

uSecurityID 13 يقدر يعدل بيانات فقط

uSecurityID 9 يقدر يسجل ويعدل ويحذف البيانات

uSecurityID 8 لا يسجل ولا يضيف ولا يعدل يشاهد فقط

ان لقيت كود زى ده

Private Sub Form_Open(Cancel As Integer)
On Error GoTo Err_Form_Open
    
    If intuSecurityID = 1 Then
        Me.Form.AllowAdditions = True
        Me.Form.AllowDeletions = True
        Me.Form.AllowEdits = True
    ElseIf intUserID = 2 Then
        Me.Form.AllowAdditions = True
        Me.Form.AllowDeletions = True
        Me.Form.AllowEdits = False
    ElseIf intUserID = 3 Then
        Me.Form.AllowAdditions = True
        Me.Form.AllowDeletions = False
        Me.Form.AllowEdits = False
    ElseIf intUserID = 4 Then
        Me.Form.AllowAdditions = False
        Me.Form.AllowDeletions = True
        Me.Form.AllowEdits = False
    ElseIf intUserID = 5 Then
        Me.Form.AllowAdditions = False
        Me.Form.AllowDeletions = False
        Me.Form.AllowEdits = True
    Else
        Me.Form.AllowAdditions = False
        Me.Form.AllowDeletions = False
        Me.Form.AllowEdits = False
    End If
    
Exit_Form_Open:
    Exit Sub
    
Err_Form_Open:
    MsgBox Err.Number & " - " & Err.Description
    Resume Exit_Form_Open
End Sub

بس مش عارف اطبقه ازاى وشكرا مقدما

 

 

 

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information