Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ocx files and swflash.ocx

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
hi all,

I am trying to incorporate a flash movie in my vb code using swflash.ocx but dont know where to start apart form getting the ocx onto the vb toolbar.

any help would be great.

thanks,

john
 
1. regsvr32 swflash.ocx
2. In VB project right click on controls toolbar -> Components. Then try to find ShockwaveFlash, ( or use browse button )
3. Add it into your Form and name it Flash.
4. Change Form property OLEDropMode to 1
5. Override method:
Code:
Private Sub Form_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
    Dim file As String
    file = Data.Files(1)    
    Flash.Movie = file
    Flash.Play    
End Sub
It should work on Drag & Drop to Form ( not Flash control )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top