annienatti
Programmer
I developed application with VB6 and used Flash5 to enhance graphic interface. I added ShockwaveFlash control in VB6 and useed FDCommand action to interface with VB as the following codes
Private Sub Form_Load()
'Menu Flash
ShockwaveMenu.Movie = gbImagePath & "\MenuBar.swf"
ShockwaveMenu.Play
End Sub
Private Sub ShockwaveMenu_FSCommand(ByVal command As String, ByVal args As String)
If command = "SendValue" Then
Select Case args
Case "1": SelectSvc.Show
Case "2": SelectEng.Show
Case "3": SelectMdl.Show
End Select
End If
End Sub
There is Flash Menu in every forms. It's fine when I run from VB project but when I run from EXE file, sometimes the Perform illegal message occured and detail as following : _
PROJECT causes invalid page fault in unknown <module> at 00de = 00000000
Register : _
bla bla bla . . .
I spent 3 days but cannot figure out why.
Somebody help me please !!