how to implement FlashWindow in c#

  • Thread starter Thread starter dongxm
  • Start date Start date
Hi,

the easy way to do this, is by using the
webbrowser activex control on your windform.
If the Flash PlugIn is installed it will be played.
You only have to call e.g Navigate(urlToSiteWithFlashMovie).

Cheers
Lars Behrmann

_________________
Nothing is impossible. UML is the key for all your problems.
AODL - Make your .net apps OpenOffice ready
http://aodl.sourceforge.net/
 
no Flash! it's can FlashWindow in taskbar, en....like MSN Messenger's Talk
Window on anybody talk with me, and the Talk Window is non Activated....
 
Have the following declaration at the class level:

[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool bInvert);

Then just call the function FlashWindow() passing the Handle property of the
window to be 'flashed' and bInvert value.

Also include "using System.Runtime.InteropServices;"

how to implement FlashWindow function in c#?
thanks very much!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top