مشكور آخي العزيز
لكن للاسف لا تزال المشكلة موجودة
حيث انني اريد الاحتفاظ بقيمة textbox عندما افتح الفوم ويشترط لذلك تفعيل كل من
Private Sub UserForm_Initialize()
TextBox1.Value = Range("A1")
Me.TextBox1.Value = Format(Me.TextBox1, "hh:mm")
End Sub
Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
TextBox1.Value = Range("A1")
Me.TextBox1.Value = Format(Me.TextBox1, "hh:mm")
End Sub