export

Export to excel - Issue on Windows Server 2008 IIS7

I am trying to export to repeter/Gridview in excel, this is working fine in my local machine and windows server 2003, however when I deployed on Windows server 2008 its not working properly. here is my code StringWriter sw = new StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); string attachment = "attachment; fil...

%EXPORT_TAGS problem

I have a module something like this, in "lib", called Fool.pm, which is based on the source code of CGI.pm (since that was the first module I thought of when I was thinking about exporting tags): package Fool; require Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw/raspberry/; %EXPORT_TAGS = ( ':all' => \@EXPORT_OK, ); 1; and a tes...

How can I solve this problem? "Error executing tag <export:formats>: groovy.lang.MissingMethodException: "

It seems like it´s not getting the right method or siganture. It has already worked for a long time, but yeterday I got this Error and I don´t know where I can start. I reinstalled the plugin "export 0.3" and I installed the newest Verion "export 0.6". All attempts were in vain. I´m using Grails 1.2, Groovy 1.7 and export 0.6. Here...

extract every audio-channel in a quicktime file

I want to extract every audio channel in a quicktime movie with the QuickTime-API. That means if the file has 5.1 surround, i want 6 audio files in the end. But at the moment I don't know how to manage that. Until now I have: OSStatus err = noErr; MovieAudioExtractionRef extractionSessionRef = nil; Boolean allChannelsDiscrete = true; in...

CSV Export Script only generates error in IE?

I have a CSV export script (enrdata_arch.php) which calls information from an existing database and exports it into CSV format. For some reason however, the script returns the following error ONLY in Internet Explorer: Microsoft Office Excel cannot access the file 'https://www.domain.com/admin/enrdata_arch.php'. There are several possib...

How could I export application settings into a portable file? [C#]

I think this is what the asker of this question is getting at, but its hard to tell and there's no accepted answer... I have a C# app built using visual studios application settings. A really useful feature would be the ability to export the settings in one file. Similarly it would be useful to be able to import configuration files exp...

Import/Export XML data into SQL Server Compact Edition ?

Does it exist a Microsoft tool or a sql query for import/export XML data into SQL Server Compact Edition ? Like this for SQL Server : http://msdn.microsoft.com/en-us/library/ms191184.aspx#binary_byte_stream ...

How to use RTF export feature of KDE?

In stackoverflow.com I have found a question where a user was suggesting to use this libraries of KDE in order to export-inport RTF files. But, when I downloaded I saw that there are lot of files that are included in the .cc and .h files that are missing. So please give a hint how to download all necessary files and is there any guide th...

Access Redis from relational databases

Is there any way to access Redis data from relational databases, such as Oracle or SQL Server? One use case I have in mind is ETL to a data warehouse. ...

Is it safe to delete an svn copy and re-export to the same location?

I've screwed up a certain sub-folder in my svn working copy and now I am unable to commit the entire directory. I am however able to commit individual sub-directories (not too many), and thus have been able to save my work on the whole. If I try to commit the entire working directory, I get a "Unable to lock {PATH}" error. I've tried svn...

Mysql problem in exporting data

I am using mysql and trying to export database through below command mysqldump -uroot -p -d database_name > file.sql It ran successfully. However it did not export the data, it only export the schema of database. anyone know why is this happening? Thanks in advance. ...

Export Non-executable jar in Eclipse with Reference Libraries

I have a project in Eclipse which I would like to export into a jar. However, this code is only generic helper code I use on many projects and would like to have wrapped up nicely, so I do not want to create an executable jar. My code relies on two referenced libraries, but it seems that the non-executable jar export feature in Eclipse d...

Can i export a JSON object to Excel in ASP.NET MVC site

i am already creating a "table" by having a list of json objects. Is there any generic way i can export this to excel without a lot of custom coding for the details of the data itself? ...

Export mysql database to Microsoft Access (.mdb)

I'm looking for some tips on how to export a mysql database into a .mdb file that is readable by Microsoft Access 2007+ (and editable too!). It needs to be a script that can run on a Linux server (maybe using PHP?). I can't seem to find out anything anywhere. Any ideas? Cheers! ...

Does anyone have example code for a sqlite pipeline in Scrapy?

I am looking for some example code of a SQLite pipeline in Scrapy. I know there is no built in support for it, but I'm sure it has been done. Only actual code can help me, as I only know enough Python and Scrapy to complete my very limited task, and need the code as a starting point. ...

Export to excel in .net

I have following code for export to excel in ReportByApp.aspx page containing crystal report crReportbyApp.rpt Dim outstream As System.IO.MemoryStream Dim strFileName As String strFileName = "Report_" & Now.ToString("MM-dd-yy") & " " & Now.Hour.ToString & Now.Minute.ToString & Now.Second.ToString & N...

Export Crystal Report as an image

Is there any way to export a Crystal Report as an image? CrystalDecisions.Shared.ExportFormatType The above type doesn't include anything that looks like an image, so does anybody have a clever workaround to generate an image? I am using C# to generate a PDF already, and I would like to generate an image (.png, .jpg, .gif) along sid...

HTML and Cocoa Objects, will they dance together?

Hello fellow coders & codetts I was wondering, if I needed to create a rich text formatted document using html and css, which will be used inside a UIWebView, could I then insert cocoa calls inside HTML tags? I do this in ruby, and many other langs do this as well, but I do not know if possible on the iphone. My main goal is to displa...

SQL: Normalizing Code / Export - Import

I've decided to rewrite a database I have that is poorly normalized. I've created the new database but now need to move data from the old database into the new one. I'm not sure exactly how to accomplish though. For example, in the old database I have a webDorms table that looks like this: id (PK, int) room_type (varchar) description (...

MicroSoft Reporting Services: hide footer depending on export format?

I'm using MicroSoft Reporting Services (MSRS) 2008. Currently I'm designing reports that can be rendered both as PDF and Exel, which works fine in general. If I define a footer in the designer, I'll see it in PDF and do not see it on the Excel sheet. Although when I print out the Excel file, the footer is there again (in the page preview...