<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il giorno ven 3 apr 2020 alle ore 21:39 Pino Zollo <<a href="mailto:pinozollo@gmail.com">pinozollo@gmail.com</a>> ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Is there any way to make a text or a label blinking ?<br></blockquote><div><br></div><div>You mean something like this?</div><div><br></div><div>Public hTimer As Timer<br>Private $bText As Boolean<br>Public Label1 As Label<br><br>Public Sub Form_Open()<br><br>  hTimer = New Timer As "Timer1"<br>  hTimer.Delay = 300<br>  hTimer.Enabled = True<br>  Label1 = New Label(Me)<br>  Label1.X = 120<br>  Label1.Y = 50<br>  Label1.H = 80<br>  Label1.W = 240<br>  Label1.Font = Font["Sans serif,16,bold"]<br>  Label1.Foreground = Color.Red<br>  Label1.Alignment = Align.Center<br>  Label1.Text = "Blinking Text"<br><br>End<br><br>Public Sub Timer1_Timer()<br><br>  $bText = Not $bText<br>  If $bText Then<br>    Label1.Text = "Blinking Text"<br>  Else<br>    Label1.Text = ""<br>  Endif<br><br>End</div><div><br></div><div>Regards</div><div>Gianluigi<br> </div></div></div>