Thank you for the reply. 
  
In my app, FusionChartsExportComponent.js is in the same folder than charts. I dont't have a reference of it in my code. 
I'm running in a local file system. I read the link and I execute FlashSecuritySetup.bat in my charts' folder. 
  
This is the code in my .vb: 
  
Private Sub AxShockwaveFlash1_FlashCall(ByVal sender As System.Object, ByVal e As AxShockwaveFlashObjects._IShockwaveFlashEvents_FlashCallEvent) Handles AxShockwaveFlash1.FlashCall 
  
'AxShockwaveFlash1 
  
If e.request.Contains("FC_ExportDataReady") Then 
  
Dim EC As New FusionCharts.ExportComponent() 
  
PictureBox1.Image = EC.GetExportedImage(e.request) 
  
End If 
  
End Sub 
  
This Event is used when I draw the chart but then "FC_ExportDataReady" is not contained in the request. The event is not used anymore. 
  
Thank You