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

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

قام بنشر

عندي ملف اكسل عليه فورم ادخال اسم المستخدم والرقم السري. كيف يمكنني الاضافة عليه بحيث يفتح على صفحة معينة sheets(8 والكود مكتوب كالتالي:

Private Sub Workbook_Open()
Application.Visible = False
UserForm1.Show
End Sub

 

  • أفضل إجابة
قام بنشر

كان عليك من البداية رفع الملف لكى تكون المساعدة أدق 

ولكن مثلا ضع هذا الكود في كوماند بوتن Enter في الفورم

Private Sub CommandButton2_Click()
UserForm1.Hide
Application.Visible = True
Sheets("Sheet8").Select
End Sub

 

  • Like 3
قام بنشر

أخي علي هذا هو الكود الموجود في كوماند بوتن enter 

Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
If TextBox1.Value = Sheet10.[AZ1].Text And TextBox2.Value = Sheet10.[AZ2].Text Then
Unload Me
Application.Visible = True
Exit Sub
Else
MsgBox "nom d'utilisateur ou mot de passe incorrecte"
End If
TextBox1.Value = ""
TextBox2.Value = ""
TextBox1.SetFocus
Application.ScreenUpdating = True
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
End Sub
Private Sub CommandButton2_Click()
ActiveWorkbook.Close True
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
If CloseMode = 0 Then
Cancel = True
MsgBox " pour sortir appuier sur le boutton quiter "
End If
Application.ScreenUpdating = True
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
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