Saving Flash?

gcollins

Guest
Joined
Sep 13, 2006
Messages
31
Location
Port Hope
Programming Experience
Beginner
Well with the help of users in this forum I was able to now view my flash file within my program. But know I can't figure out how to save it.

When a user clicks on my flash file it opens up in a new form for them to view it. What I want to do now is allow them to click a save button to save it to their computer.

Like with an image in a picture box:

If dlgSave.ShowDialog() = Windows.Forms.DialogResult.OK Then
pict_imageDisplay.Image.Save(FileName)
End If

But I can't seem to find a method to do this, does the flash object have this?

 
Where is the Flash file you opened to play? You can copy it to a new location with System.IO methods. Also in .Net 2 you can use the My.Computer.FileSystem.CopyFile method.
 
Back
Top