تفضل أخي @al.sheen2000 دوال أول يوم بالشهر .... وآخر يوم بالشهر .... وأول يوم بالسنة .... وآخر يوم بالسنة .
Private Sub BtnChangeDate_Click()
If Len(Me.Txt1 & "") = 0 Then
MsgBox "أدخل التاريخ "
Undo
Me.Txt1.SetFocus
Exit Sub
Else
'أول يوم بالشهر
Me.Txt2 = DateSerial(Year(Me.Txt1), Month(Me.Txt1), 1)
'آخر يوم بالشهر
Me.Txt3 = DateSerial(Year(Me.Txt1), Month(Me.Txt1) + 1, 0)
Dim inputDate As Date
Dim inputYear As Integer
Dim lastDayOfYear As Date
Dim firstDayOfYear As Date
inputDate = CDate(Me.Txt1.Value)
inputYear = Year(inputDate) ' Extract the year from the date
'أول يوم بالسنة
firstDayOfYear = DateSerial(inputYear, 1, 1) ' Calculate the first day of the year
Me.Txt4.Value = firstDayOfYear
'آخر يوم بالسنة
lastDayOfYear = DateSerial(inputYear, 12, 31) ' Calculate the last day of the year
Me.Txt5.Value = lastDayOfYear
End If
End Sub