اذهب الي المحتوي
أوفيسنا

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

قام بنشر

السلام عليكم لدي مشكلة في  تسجيل مستخدم جدبد عندما  اسجل  مسخدم  جديد يضهر  تاريخ تسجيل الحساب لكن في جدول  عندما اسجل تاريخ لا يتوافق مع اسم مستخدم  في جدول 

هاهي  صورة مشكلة تاريخ تسجيل في جهة  واسم مستخدم ورقم السري في جهة  ولكود مستعمل تحت صورة

 

11.png.4f83169f348af3140cd48e8b6979f8f1.png

 

If IsNull(UserName) Or Me.UserName = "" Then
MsgBox "S'il vous plaît Assurez-Vous De Remplir Tous Les Champs D'inscription", vbCritical + vbMsgBoxleft, "Message d'erreur"
Exit Sub
End If


If IsNull(password) Or Me.password = "" Then
MsgBox "S'il vous plaît Assurez-Vous De Remplir Tous Les Champs D'inscription", vbCritical + vbMsgBoxleft, "Message d'erreur"
Exit Sub
End If

If IsNull(TexPassword2) Or Me.TexPassword2 = "" Then
MsgBox "S'il vous plaît Assurez-Vous De Remplir Tous Les Champs D'inscription", vbCritical + vbMsgBoxleft, "Message d'erreur"
Exit Sub
End If


DoCmd.SetWarnings False
DoCmd.RunSQL "INSERT INTO usersm(username,password)values(username,password)"
DoCmd.SetWarnings True

Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("usersm")
         rs.AddNew
         rs!UserName = texUserName
         rs!password = TexPassword
         rs!DateReg = Date
         rs.Update
        Set rs = Nothing
Me.UserName = ""
Me.password = ""

SetFocus
MsgBox "Enregistré avec succès"
DoCmd.Close

End Sub

قام بنشر

مشكورين  لقد تم اصلاح المشكل هاهو كود بعد اصلاح

 

If IsNull(UserName) Or Me.UserName = "" Then
MsgBox "S'il vous plaît Assurez-Vous De Remplir Tous Les Champs D'inscription", vbCritical + vbMsgBoxleft, "Message d'erreur"
Exit Sub
End If


If IsNull(password) Or Me.password = "" Then
MsgBox "S'il vous plaît Assurez-Vous De Remplir Tous Les Champs D'inscription", vbCritical + vbMsgBoxleft, "Message d'erreur"
Exit Sub
End If

If IsNull(TexPassword2) Or Me.TexPassword2 = "" Then
MsgBox "S'il vous plaît Assurez-Vous De Remplir Tous Les Champs D'inscription", vbCritical + vbMsgBoxleft, "Message d'erreur"
Exit Sub
End If

Dim rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("usersm")
         rs.AddNew
         rs!UserName = UserName
         rs!password = password
         rs!DateReg = Date
         rs.Update
        Set rs = Nothing
Me.UserName = ""
Me.password = ""

SetFocus
MsgBox "Enregistré avec succès"
DoCmd.Close

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