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

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

قام بنشر
9 minutes ago, safaa salem5 said:

شكرا لحضرتك يابشمهندس محمد

اشتغلت تمام معايا

بارك الله فيك وجزاكم جميعا كل خير

 

f10fd69a57425d2e653c3075e7b6369c.gif

Private Sub pname_BeforeUpdate(Cancel As Integer)

If DLookup("[full_name]", "[settings_general_tbl]", "-1") Then

    Dim fullName As String
    fullName = Nz(Me![pname].Value, "")

    ' فحص إذا كانت الكلمات أقل من ثلاثة
    If WordCount(fullName) < 3 Then
        MsgBox "برجاء كتابة الاسم كاملاً.", vbExclamation, "تحذير"
        Cancel = True
    End If


Else

End If


End Sub

Just now, safaa salem5 said:

Private Sub pname_BeforeUpdate(Cancel As Integer)

If DLookup("[full_name]", "[settings_general_tbl]", "-1") Then

    Dim fullName As String
    fullName = Nz(Me![pname].Value, "")

    ' فحص إذا كانت الكلمات أقل من ثلاثة
    If WordCount(fullName) < 3 Then
        MsgBox "برجاء كتابة الاسم كاملاً.", vbExclamation, "تحذير"
        Cancel = True
    End If


Else

End If


End Sub

عايزه بس امنع انه يترك حقل الاسم فارغ فى حالة لو سمحنا بكتابة جزأ من الاسم 

قام بنشر

 لمنعه ترك الحقل فارغ تبقى كدا صح 
    
    If WordCount(fullName) < 1 Then
        MsgBox "برجاء كتابة الاسم.", vbExclamation, "تحذير"
        Cancel = True
    End

قام بنشر

لمنع ترك الحقل فارغ  بالتوفيق

 

    If IsNull(Me.اسم_الحقل) Then
        MsgBox "يجب ملء حقل الاسم قبل الحفظ.", vbExclamation, "تحذير"
        Cancel = True ' إلغاء عملية التحديث
    End If

او

    If Me.اسم_الحقل= "" Then
        MsgBox "يجب ملء حقل الاسم قبل الحفظ.", vbExclamation, "تحذير"
        Cancel = True ' إلغاء عملية التحديث
    End If

 

  • Like 1

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