Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[VB.NET] - Integrate Flash Into Your Application - [TUT]
#1
Just a quick tutorial on how to integrate .SWF files into your VB.NET applications using the Shockwave Flash Object component.

This is very simple to do and it's really quite useful to know.

You need to start off by adding the component. To do this, right click on "All Windows Forms" in your Toolbox, and select "Choose Items".

[Image: 1fmf.png]

On the pop-up window, select the COM tab, and scroll down to Shockwave Flash Object. Check the box next to it, and click OK.

[Image: 2njn.png]

Now find the Shockwave Flash Object in your Toolbox, and drag it onto your form. Now you just need to get it to play something! For this example I will simply add an OpenFileDialog, which will be used to select the the .SWF file, and open it in the Shockwave Flash Player. Note you can also link directly to an .SWF URL in the same way.

Code:
Dim OFD As New OpenFileDialog
        OFD.Filter = "SWF Files (*.swf)|*.swf|All files (*.*)|*.*"
        Dim results As DialogResult
        results = OFD.ShowDialog

        If results = DialogResult.OK Then
            AxShockwaveFlash1.Movie = OFD.FileName
        End If

And there you have it..
Reply


Messages In This Thread
[VB.NET] - Integrate Flash Into Your Application - [TUT] - by Fragma - 08-15-2011, 01:29 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to hook the keyboard. [VB.NET] [TuT] Vorfin 92 54,865 09-23-2019, 11:55 AM
Last Post: Jamimartin
  VB.NET Port Scanner [TUT] Fragma 30 12,812 11-27-2012, 11:26 PM
Last Post: ƃu∀ ıʞƃu∀
  [TUT] MD5 Encrypter & Finder [VB.NET] Fragma 12 7,017 11-25-2012, 10:36 PM
Last Post: ƃu∀ ıʞƃu∀
  [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] Statics 95 55,781 10-07-2012, 06:56 AM
Last Post: a99
  Application Organiser lhcrulz 3 2,450 02-11-2012, 08:56 PM
Last Post: AceInfinity

Forum Jump:


Users browsing this thread: 1 Guest(s)