Userform 2 adet textbox tarih hak.

Katılım
4 Eylül 2020
Mesajlar
394
Excel Vers. ve Dili
Excel 2016
Altın Üyelik Bitiş Tarihi
22-11-2022
Merhabalar ekteki dosyadaki userform tarih 1 butonundan seçim yaptıgımda textbox4 yazması tarih 2 butonundan seçim yaptıgımda textbox5 yazması lazım ama yapamadım. Yardımcı olursanız sevinirim Teşekkür ederim
 

Ekli dosyalar

Korhan Ayhan

Administrator
Yönetici
Admin
Katılım
15 Mart 2005
Mesajlar
42,269
Excel Vers. ve Dili
Microsoft 365 Tr-En 64 Bit
Dosyanızda Tarih2 butonuna aşağıdaki kod satırını ekledim.

Rich (BB code):
Private Sub CommandButton8_Click()
takvim = 2
Me.CommandButton8.Tag = 2
UserForm2.Show
End Sub
Class Modules içindeki kodu da aşağıdaki gibi düzenledim.

C++:
Public WithEvents MyBut As MSForms.CommandButton
Private Sub MyBut_Click()
Dim Year1 As Integer, Month1 As Integer, Day1 As Integer, Date1 As Date
Year1 = UserForm2.ComboBox2.Value
Month1 = UserForm2.ComboBox1.ListIndex + 1
Day1 = MyBut.Caption
Date1 = DateSerial(Year1, Month1, Day1)
'ActiveCell = Date1

If UserForm1.CommandButton8.Tag = "" Then UserForm1.TextBox4 = Date1
If UserForm1.CommandButton8.Tag = "2" Then
    UserForm1.TextBox5 = Date1
    UserForm1.CommandButton8.Tag = ""
End If
UserForm2.Hide
End Sub
 
Katılım
4 Eylül 2020
Mesajlar
394
Excel Vers. ve Dili
Excel 2016
Altın Üyelik Bitiş Tarihi
22-11-2022
Teşekkür ediyorum ellerinize sağlık
 
Üst