text

Full-justification with a Java Graphics.drawString replacement?

Does anyone know of existing code that lets you draw fully justified text in Java2D? For example, if I said, drawString("sample text here", x, y, width), is there an existing library that could figure out how much of that text fits within the width, do some inter-character spacing to make the text look good, and automatically do basic w...

Change an image to text via CSS for printing?

Lets say I have a header banner on a webpage I'm about to print. Instead of wasting someone's ink printing the entire block of the image, is there a way via css to replace the image with text of H1 size? ...

Lines get trimmed when Printer.Print to a "Generic Text Only" printer

I am maintenance a old vb6 application that print ZPL-II. I just find out that it has a bug if I print long lines to the printer by "Printer.Print", the lines will be trimmed to first 89 bytes/line only. It works perfect and keep lines as it is when I use Print or Copy in DOS to LPT. Where does this behaviour come from? How can I fix i...

About "AUTOMATIC TEXT SUMMARIZER (lingustic based)"

Hello, I am having "AUTOMATIC TEXT SUMMARIZER (linguistic approach)" as my final year project. I have collected enough research papers and gone through them. Still i am not very clear about the 'how-to-go-for-it' thing. Basically i found "AUTOMATIC TEXT SUMMARIZER (statistical based)" and found that it is much easier compared to my...

Komodo Edit: Running macros via keybinding versus toolbar

Question: Is anyone out there familiar enough with Komodo Edit to shed some light on this macro? I need to figure out how to do buffer text selection in a macro when it is invoked via the tool panel. Problem: I have a very simple macro in Komodo Edit javascript that works as expected, but only when invoked via a custom keybinding. If th...

Export Crystal Report to Text File - No RTF File

I am using Crystal Report that comes with VS 2005. I need to Export the Crystal Report To Text File. What's the way to do it. ...

How do I convert Rtf to Text using ASP.Net?

How do I convert To Text Format from RTF using ASP.Net? ...

Why is only 64kB of data being saved in my MySQL data column?

I am trying to insert a very long text string into a MySQL Blob column, but MySQL is only saving 64kB of the data. The string is 75360 characters long. I am connecting with PHP's mysql_connect(). Any ideas? Does it make a difference if it's Blob or Text. I originally had it as a Text but changed it with no affect. ...

Read keyboard characters to determine shortcuts

I'm working on a document application and part of this application I've to add support to read the keyboard pressed events and replace the pre-defined characters set if that keyboard entry is match with the pre-defind short form/word.The actual application has implemented in C++. Please provide me your thoughts on how to implement this....

Parsing data from txt file in J2ME

Basically I'm creating an indoor navigation system in J2ME. I've put the location details in a .txt file i.e. Locations names and their coordinates. Edges with respective start node and end node as well as the weight (length of the node). I put both details in the same file so users dont have to download multiple files to get their ma...

What is the optimal (speed) way of parsing a large (> 4GB) text file with many (milions) of lines?

I'm trying to determine what is the fastest way to read in large text files with many rows, do some processing, and write them to a new file. In C#/.net, it appears StreamReader is a seemingly quick way of doing this but when I try to use for this file (reading line by line), it goes about 1/3 the speed of python's I/O (which worries me...

How do I rotate a label in C#?

I want to show a label at 90 degrees (so I can put a bunch of them at the top of a table as the headings). Is there an easy way to do this? Thanks! ...

Grabbing text from a webpage

I would like to write a program that will find bus stop times and update my personal webpage accordingly. If I were to do this manually I would Visit www.calgarytransit.com Enter a stop number. ie) 9510 Click the button "next bus" The results may look like the following: 10:16p Route 154 10:46p Route 154 11:32p Rou...

Convert RTF Stream to Plain Text Stream

I have crystal report and I need to convert it to text file. Currently I can only convert it to RTF Stream. Now I need to convert the RTF Stream to Text Stream. I am using C#. Thanks. ...

Mirroring console output to a file

In a C# console application, is there a smart way to have console output mirrored to a text file? Currently I am just passing the same string to both Console.WriteLine and InstanceOfStreamWriter.WriteLine in a log method. ...

Determining "Owner" of Text Edited by Multiple Users

You may have noticed that we now show an edit summary on Community Wiki posts: community wiki 220 revisions, 48 users I'd like to also show the user who "most owns" the final content displayed on the page, as a percentage of the remaining text: community wiki 220 revisions, 48 users kronoz 87% Yes, there could be top (n...

Windows Command to detect and remove text in a file

I have an ascii file and in there somewhere is the line: BEGIN and later on the line: END I'd like to be able to remove those two lines and everything in between from a command line call in windows. This needs to be completely automated. EDIT: See http://stackoverflow.com/questions/425864/sed-in-vista-how-to-delete-all-symbols-between...

Is there any extendable editor out there with vi-like modes?

I'm looking for a perfect text editor :) The "must have" list: vim-like modal editing, keybindings similar to vim emacs like extendibility - same "real" language for plugins and the editor itself, so that the extension can affect almost anything in the editor and outside... vim script is not enough, python plugin is not enough either ...

How do I identify language of a text document in Java?

Is there an existing Java library that could tell me whether a String contains English language text or not (e.g. I need to be able to distinguish French or Italian text -- the function needs to return false for French and Italian, and true for English)? ...

How do I center text horizontally and vertical in a TextView in Android?

How do I center text horizontally and vertical in a TextView in Android? So that it appears exactly in the middle of the screen. ...