you could use a webbrowser if you are confident with html and can setup a shockwave object in html. something like this would work

Code:
Dim SourceHTML as String = "<object width='550' height='400'>" & _
                                      "<param name='movie' value='somefilename.swf'>" & _
                                      "<embed src='somefilename.swf' width='550' height='400'>" & _
                                      "</embed></object>"
WebBrowser1.DocumentText = SourceHTML