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

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

قام بنشر

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

يوجد لدي مشكلة في برمجة vba excel وهي:

عندما اقوم بإدخال الوقت في textbox في form يتم تغير الوقت بصورة آليه

فعندما اقوم بإدخال الوقت 12:00 يتم تغير الوقت الي 0:05

اتمنى اجد لديكم الحل المناسب للتخلص من هذه المشكلة

هذا كود vba

Private Sub TextBox1_Change()
Worksheets("Sheet1").Range("A1") = TextBox1.Value
End Sub

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

وملف الاكسل بالمرفقات ،،،

TextBox.zip

قام بنشر

مشكور آخي العزيز

لكن للاسف لا تزال المشكلة موجودة

حيث انني اريد الاحتفاظ بقيمة 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

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