Webdreams

Members
  • Content count

    5
  • Joined

  • Last visited

About Webdreams

  • Rank
    Forum Newbie
  1. What code do you need, exactly? Charts module is too large, I cant´t paste all. Thank You.
  2. Sorry but it has connection with data base that it doesnt´ work to you. I can paste the code that you want.
  3. Hi, I have Flash Player's Global Security configured but the export doesn´t works. It seems a problem with the event in wich de code is called.
  4. 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
  5. I'm doing an applicattion too. I use Fusion Charts to make the charts but I have a problem at the time to export. If I do right button in the chart and select "save as jpeg" the progress bar appear but the image is not save. I've checked the FlashSecuritySetup and I execute de .bat in my charts folder. If I put the code to show the image in a picturebox that is in the documentation in the event FlashCall of my AxShockwaveFlash it didn´t works. ¿Can you explain me how can it fixed it? Than You.