Custom Hint Text in Excel VBA|A Very Simple Method

Описание к видео Custom Hint Text in Excel VBA|A Very Simple Method

💡 Source Code

Public Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal ms&)

Private Sub TextBox1_Change()

Dim hint_txt_len As Byte, hint_txt_index As Byte
Const hint_txt As String = "Your text here"
hint_txt_len = Len(hint_txt)

With Label1
If Not TextBox1 = Empty Then
.Visible = 0
.Caption = Empty
Else:
.Visible = -1

For hint_txt_index = 1 To hint_txt_len
DoEvents
.Caption = .Caption + Mid(hint_txt, hint_txt_index, 1)
Sleep 10
Next hint_txt_index

End If
End With

End Sub
---------------------------------------------------------------------------------------

Buy a Cofee ☕ for theworldofalgorithms: https://ko-fi.com/theworldofalgorithms

🥰Thank you for the donation. I am deeply grateful for your help!🥰
----------------------------------------------------------------------------------------
#excel
#msexcel
#msexceltutorial
#msexcelcourse
#vba
#vbatutorial
#excelvba
#fulltutorial
#excelvbatutorial
#microsoftexceltutorial
#tutorial
#exceltutorial
#advancedexcel
#advancedexceltraining
#tutor
#exceltutor
#exceltutoring
#exceltutoringonline
#onlineexceltutoring
#algorithm
#algorithms
#programming
#program
#script
#vbamacro
#vbamacros
#usingmacro
#veryuseful
#useful
#veryusefulmacro
#freeeducation
#freeprogramming
#freelancer
#excelfreelancer
#vbafreelancer
#freelanceservices
#microsoftofficespecialist
#microsoftexcelexpert
#vbauserform
#excelvbauserform
#projectdevelopedbyexcelvba
#hinttext
#excelvbahinttext
#vbahinttext
#customhinttext
#vbacustomhinttext

Комментарии

Информация по комментариям в разработке