Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > Interface and Graphics > Flash in VB doesnt Maximize to full screen?


Reply
 
Thread Tools Display Modes
  #1  
Old 03-02-2005, 10:45 AM
nickman nickman is offline
Newcomer
 
Join Date: Feb 2005
Posts: 2
Question Flash in VB doesnt Maximize to full screen?


Hi, Anyone know how to get an SWF in a VB Form to go to full screen?

Is there a way?
Reply With Quote
  #2  
Old 03-02-2005, 02:12 PM
djanim8 djanim8 is offline
Junior Contributor
 
Join Date: Jul 2004
Posts: 280
Default

Quote:
Originally Posted by nickman
Hi, Anyone know how to get an SWF in a VB Form to go to full screen?

Is there a way?
This should work:

Code:
Private Sub Form_Load() ShockwaveFlash1.Movie = App.Path & "\file.swf" 'Full Movie Path here ShockwaveFlash1.ScaleMode = 0 'ShowAll End Sub Private Sub Form_Resize() ShockwaveFlash1.Width = Me.ScaleWidth ShockwaveFlash1.Height = Me.ScaleHeight End Sub

It will scale the flash box to the form, but if its not the same aspect ratio, it will have "borders" around the top and bottom

OR if you want it without the title bar do this:

Set BorderStyle to 0 and and ControlBox = False:

Code:
Private Sub Form_Load() ShockwaveFlash1.Movie = App.Path & "\file.swf" 'Full Movie Path here ShockwaveFlash1.ScaleMode = 0 'ShowAll Me.WindowState = vbMaximized End Sub Private Sub Form_Resize() ShockwaveFlash1.Width = Me.ScaleWidth ShockwaveFlash1.Height = Me.ScaleHeight End Sub

Last edited by djanim8; 03-02-2005 at 02:19 PM.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->