Click here to Skip to main content
15,886,065 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Normally we can add the swf control in vb. but how to add the particular SWF file in our project and deploy with in it.
Posted

Here is a short guide for using flash with Windows Forms applications:
Embedding Flash in a Windows Forms .NET app[^]

If you are creating and asp.net application have a look at this:
SWFObject[^]

Best regards
Espen Harlinn
 
Share this answer
 
Comments
VJ Reddy 3-May-12 8:40am    
Useful references. 5!
Espen Harlinn 3-May-12 8:41am    
Thank you VJ
Sandeep Mewara 3-May-12 8:55am    
Good one! 5!
Espen Harlinn 3-May-12 9:13am    
Thank you, Sandeep :-D
Maciej Los 3-May-12 18:37pm    
And 5 from me ;)
Try this steps

1.Copy te swf file in bin folder.
2.Select "Add/Remove Items".
3.Select "COM Components" Select "Shockwave Flash Object". Click OK.
4.You can see the Shockwave Flash Object in the tool bar.

C#
Code:-
AxShockwaveFlash1.Movie = Application.StartupPath & "\flashfile.swf"
AxShockwaveFlash1.Play()



Read more: http://wiki.answers.com/Q/How_add_swf_file_in_vb.net_forms_which_is_save_in_resources#ixzz1toABaXKF
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900