The scenario is such that the news is read from the database and each news is displayed for a few seconds and then fades out and the next news is displayed. Like breaking news on news networks like Fox news and so on ..
My main problem is how the text fades out and the next news is displayed? There are many examples of form fading in/out in Visual Basic 6, but not for text.
With this code, I can display the news text after 3 seconds and then delete it. But I would like the news text to gradually fade and the next news to be displayed.
Dim EndTime As Long
Dim eee As String
EndTime = Timer + 3
Do While Timer < EndTime
eee = CLng(EndTime - Timer)
DoEvents
Loop
lbl(0).Caption = ""