The FlashWindow API, I believe. After you declare it, you give it some parameters, and your form's handle, and the title bar blinks. Other than that you could change your title based on a timer or a loop...
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
(Just a heads-up)
Here is a little modification to the animated caption:
Code:
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private Sub AnimateCaption(MyCaption As String, MyForm As Form)
Dim AddTitle As String
Dim Title As Long
MyForm.Show
MyForm.Caption = ""
AddTitle = MyCaption
For Title = 1 To Len(AddTitle)
ZoomLetter MyForm, Mid$(AddTitle, Title, 1), MyForm.Caption
Next
End Sub
Private Sub ZoomLetter(MyForm As Form, NewLetter As String, OldCaption As String)
'Used By AnimateCaption
Dim Total As Integer
Dim Spaces As Integer
Dim Temp As String
Dim i As Integer
If NewLetter = " " Then
MyForm.Caption = MyForm.Caption & " "
Exit Sub
End If
Total = Len(Temp)
Spaces = (MyForm.Width / 50) - (Total)
For i = Spaces To Len(Temp) Step -1
MyForm.Caption = OldCaption & Space(i) & NewLetter
DoEvents
Sleep (5)
Next
End Sub
Private Sub Form_Load()
AnimateCaption "Hows life in the world of litigation AttnSue?", Me
End Sub
It simply adds a small pause to each step, which makes the animation smoother.
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
Perhaps you could incorperate this.
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
Would be easy to convert so it was on a form as well, just change the object the pixels were drawn on, and a few max/min values and you're set.
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
Sorry, i created the zip file a while ago, forgot it was just the exe.....
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
There u go!
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
Figureing out where to draw the pixels is in the case statement: select case list1.listindex.
The rest is for the trails, colours and user interface.
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
Nice
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
I thought you might like this fade effect (I think it only works with windows with NT (2000,XP...)
Just so people searching may find this (it's usefull).
It fades the form, using alphablending, with the form and the background (what's behind the form).
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
Nice
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
Posts
3,051
How about this nice effect..
Quotes:
"I am getting better then you guys.." NoteMe, on his leet english skills.
"And I am going to meat her again later on tonight." NoteMe "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
"my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons