How to make like Foxmail, MSN form the effect of the news

  Procedure TForm1.FormCreate (Sender: TObject); 
Begin
  Form1.Top: = Screen.Height; 
  Form1.Left: = Screen.Width - Form1.Width; 
  SysTmrTimer.Enabled: = True; 
End;

  Procedure TForm1.SysTmrTimerTimer (Sender: TObject); / / Timer is a SysTmrTimer 
Begin
  / / Set attributes you Interval 10… 
  Form1.Top: = Form1.Top - 1; 
  If Form1.Top = Screen.Height - Form1.Height Then 
  SysTmrTimer.Enabled: = False; 
End;

End.

  With this article can be made more effective…… gradual and transparent what… 
  Http://blog.csdn.net/greatsuperyoyonc/archive/2004/07/23/50326.aspx 

Bookmark it: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • Sphinn
  • del.icio.us
  • Google
  • DotNetKicks
  • DZone
  • Furl
  • Netvouz

Tags:

Releated Articles


0 Comments to “How to make like Foxmail, MSN form the effect of the news”

No Comments. Send your comment.

Leave a Reply

You must be logged in to post a comment.