writer

Are there OpenOffice.org export components for Delphi (non-OLE)?

For document exchange, I would like to generate OpenOffice.org text and spreadsheet documents. So far I have found export components which require OpenOffice to be installed, using OLE. Are there already Delphi components available which can write native files for OpenOffice.org Writer or OpenOffice.org Calc? ...

Best free Excel writer for C# to output datatable to excel

I've got a console app that loads up a datatable; I'd like to export that to an Excel format and attach it to an email that's sent out on a regular basis. What is the best library to do so that I can pull down for free? I'm working for an academic institution and we don't have a budget for third-party controls. possible related quest...

Picture Writer in java

How do we write a picture from a word documnet to a ppt using java api? ...

Full code coverage

I'm trying to obtain full code coverage for the following line of code... stringWriter.Write(HtmlEncodedString.Format(string.Format("{0,-10:C}", x + y))) The line above this one is showing as fully covered and is just writing out a string but this one is only showing as partially covered. Anybody have any ideas how I can make this l...

Officewriter Excel Report - bc30277 Type character '!' does not match

Hi guys, i have an officewriter report that i am trying to publish to SQL Reporting services through excel. This is a parameterized report with just 1 input parameter. When i click on 'Publish' in officewriter toolbar, there is an error. It says 'the value expression for the query parameter '@test' contains an error: [bc30277] Type cha...

Disappearing Fields in AX Report

Good Day, I am creating a report in AX report writer. When I create the report, it pulls all the information fine. However, when I limit the report, by select only those records with a hrmcomptype = 'Band', the report still pulls the correct data, but the fields that I am pulling from the table that houses hrmcomptype, all disappear. I ...

error printing to document writer .xps extension

I am using Microsoft Vista which I am not real familiar with but getting the hang of it. When I was in google maps trying to print out the directions to the document writer and then try to open it to view the directions, it shows download, download, download and on and on until I have to hurriedly close the window. When I go to downlo...

Writing out BMP files with DataBuffer.TYPE_FLOAT or DataBuffer.TYPE_DOUBLE in java

Hi Guys, I had a problem working with the image classes in java. I am creating a buffered image with DataBuffer.TYPE_DOUBLE. This all works fine in memory (I think). But the problem starts when I try to write it using ImageIO.write. Initially I was getting no exception at all and instead was only getting an empty output file for my t...

Trying to write a loop that uses an OutputStream to write to a text file.

I'm not a java programmer, I'm a VB programmer. I am doing this as part of an assignment, however, I'm not asking for help on something assignment related. I'd like to figure out how to get the OutputStreamWriter to work properly in this instance. I just want to capture the values I'm generating and place them into a text document. T...

OpenCV - VideoWriter produces a video with a "repeated" image

I'm trying to process each frame in a pair of video files in OpenCV and then write the resulting frames to an output avi file. Everything works, except that the output video file looks strange: instead of one solid image, the image is repeated three times and horizontally compressed so all three copies fit into the window. I suspect ther...

Thread safe StreamWriter C# how to do it? 2

So this is a continuation from my last question - So the question was "What is the best way to build a program that is thread safe in terms that it needs to write double values to a file. If the function that saves the values via streamwriter is being called by multiple threads? Whats the best way of doing it?" And I modified some code ...

Java's [Input|Output]Streams' one-method-call-for-each-byte: a performance problem?

[Input|Output]Streams exist since JDK1.0, while their character-counterparts Readers|Writers exist since JDK1.1. Most concepts seem similar, with one exception: the base classes of streams declare an abstract method which processes one single byte at a time, while base readers/writers classes declare an abstract method which processes w...

What is the most memory efficient way to write from a database to a (zip) file in Java?

My program is fast enough, but I'd rather give up that speed for memory optimization since one user's maximum memory usage goes up to 300 MB meaning few of them could constantly crash the application. Most of the answers I found were related to speed optimization, and other were just general ("if you write directly from a database to mem...

Good & Simple Ruby XML writer?

Anyone know of an easy to use Ruby XML writer out there? I just need to write some simple XML and having trouble finding one that's straightforward... ...

Write a text file using stream

reader = new InputStreamReader(MyClass.class.getResourceAsStream( "/apathdir/textFile.txt"), "UTF-8") Hi! I have this reader and, basically, i want to do a writer, this way, save this file on same path of the jar file, like: >ls >myJarFile.jar textFile.txt ...