Tagged Questions

0
votes
1answer
16 views

RichTextBox Text Positioning

Hello, I'm building a simple application, but I need to know how to use a RichTextBox and position the text on it, like: center, right and left. But how I can do this?
0
votes
2answers
122 views

C# Read text formatting?

Dear All, I want to be able to read text from a Silverlight TextBlock (TextBlock Control) (Silverlight & C#) and check what formatting (as in: bold, italic, font size, etc...) …
1
vote
4answers
314 views

Creating columns of text with a variable width font.

I'm trying to create coloumns of text for a C# app that will be running on MSN Messenger. I'm having trouple getting everything to line up. Here's an example of the output that I …
4
votes
6answers
799 views

Nice bit of code to format an xml string

hi Anyone got a ready made function that will take an XML string and return a correctly indented string? eg <XML><TAG1>A</TAG1><TAG2><Tag3></Tag …
5
votes
4answers
1k views

Use a custom thousand separator in C#

Hi, I'm trying not to use the ',' char as a thousand separator when displaying a string, but to use a space instead. I guess I need to define a custom culture, but I don't seem to …
0
votes
5answers
1k views

[Java] use of delimiter function from scanner for “abc-def”

Hi! I'm currently trying to filter a text-file which contains words that are separated with a "-". I want to count the words. scanner.useDelimiter(("[.,:;()?!\" \t\n\r]+")); Th …
5
votes
4answers
3k views

What is the WPF XAML Data Binding equivalent of String.Format?

Or, to be more clear, how can I format a block of text (in my case, to be included within a tooltip) such that some portions of the text come from bound values. In plain C# I woul …
0
votes
3answers
70 views

Wiki-like formatting in Rails

I forgotten the name of this library. But it's sort of like Wiki how you type certain characters in front of your text, and then it'll make the text bold/italic/underline. I'm no …
4
votes
9answers
2k views

JSTL/JSP EL (Expression Language) in a non JSP (standalone) context

Can anyone recommend a framework for templating/formatting messages in a standalone application along the lines of the JSP EL (Expression Language)? I would expect to be able to i …
1
vote
4answers
218 views

.NET Make xml more readable

Is there any way to take an xml string in .net and make it easyer to read? what i mean is can i convert this: <element1><element2>some data</element2></elemen …
1
vote
7answers
225 views

XML Text Format

Does anyone know of a good program where I can paste in xml (getting it from a System.out in my java class) and it will format the xml so it's not a really long line of text?
0
votes
0answers
89 views

Utility code to DataSet/DataReader table to console in Tabular format, table dimensions set at runtime.

Hello, I am essentially trying to replicate the same features as SQL Management Studio's Results To Text, to prettify my DataSet/DataReader object into a string based table. I …