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

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

قام بنشر

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

الملف مليئ بالاكواد ممكن توضح الكود بالظبط او اسم اليوزرفورم المطلوب التعديل عليه 

قام بنشر

السلام عليكم 

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

قام بنشر

تفضل جرب هدا

Private Sub CommandButton1_Click()
    Dim ws As Worksheet, src As Range, i As Long
    Dim arr() As Variant, columns() As Variant
    Dim Code As String, lastrow As Long, exists As Long
    
    Set ws = Sheets("التكويد")
    
    lastrow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row
    Code = Me.TextBox4.Value

    If Code = "" Then: MsgBox "الرجاء إدخال كود الصنف", vbExclamation, "خطأ": Exit Sub
    
    exists = WorksheetFunction.CountIf(ws.Range("a2:a" & lastrow), Code)

    If exists > 0 Then: MsgBox "كود الصنف موجود مسبقا", vbExclamation, "إنتبـــاه": Me.TextBox4.Value = "": Exit Sub
    
   With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
    End With
    
    Set src = ws.Range("A" & ws.Rows.Count).End(xlUp).Offset(1, 0)
    
    columns = Array("A", "B", "C", "D", "F", "G", "H")
    arr = Array(Me.TextBox4.Value, Me.TextBox1.Value, Me.TextBox7.Value, Me.TextBox2.Value, _
                Me.TextBox3.Value, Me.TextBox5.Value, Me.TextBox6.Value)

    For i = LBound(arr) To UBound(arr)
        If i <= UBound(columns) Then
            ws.Cells(src.Row, columns(i)).Value = arr(i)
        End If
    Next i
    
        For Each ctrl In Me.Controls
            If TypeName(ctrl) = "TextBox" Then
                ctrl.Value = ""
            End If
        Next ctrl
 
With Application
        .ScreenUpdating = True
        .Calculation = xlCalculationAutomatic
    End With
   MsgBox "تم إدخال البيانات بنجاح", vbInformation, "نجاح"
End Sub

 

عدم تكرار .xlsm

  • Like 3
قام بنشر

السلام عليكم 

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

السلام عليكم اخي الفاضل

الف شكر على المساعدة والاهتمام بارك الله فيك شكرا مرة اخرى

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