Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
387 views

Wiki style text formatting

I'm looking for some kind of text-parser for ASP.NET that can make HTML from some style of text that uses a special format. Like in Wiki's there is some special syntax for headings and such. I have ...
3
votes
3answers
431 views

How do I get HTML Tidy to not put newline before closing tags?

HTML Tidy has this infuriating habit of putting a newline before the closing tag. For example: <p>Some text</p> becomes <p>Some text </p> How do I tell Tidy to keep the ...
3
votes
2answers
2k views

Export the Eclipse XML Formatting Rules?

Is there a way to export the settings defined in Window > Preferences Dialog under XML > XML Files > Editor in Eclipse 3.5 Galileo (JEE Package)? And where do Eclipse stores these settings? ...
3
votes
3answers
234 views

Safe Web Text Formatting

I am building a web application that will need to allow users to save formatted text to a database. Basically they just need to be able to change font color, font background color, font size, bold, ...
2
votes
5answers
1k views

How do I format an Integer using current locale in Delphi

var i : integer; i := 1234567; Given the above, I want the string "1,234,567" as output (assuming UK locale). IntToStr just gives me "1234567". I'm sure there's a one-liner for this, but I can't ...
1
vote
3answers
960 views

Visual Basic richtextbox - setting specific text to Italic font style

I have created a Richtextbox, which produces text based on user-inputted variables as well as some basic formatting - eg: name = txtname.text richtextbox1.text = "Hello my name is " & name & ...
1
vote
4answers
636 views

sed : removing alphanumeric words from a file

I have file with huge text, what I want to do is to remove all alphanumeric words. Example: gr8 2006 sdlfj435ljsa 232asa asld213 ladj2343asda asd!32 what is the best way I can do ...
1
vote
4answers
162 views

VIM putting a line at the top(or bottom) of a tile to set attributes? doesnt work for me

I read in "Vim book OPL.pdf" that you can put a line at the top of a file, say for instance a .txt file and it would change how that individual file was handled by Vim. for example vim:tw=78 however ...
1
vote
1answer
346 views

Indentation in WPF TextFormatter

I'm making a WPF text-editor using TextFormatter. I need to indent some paragraphs, so I'm using the Indent property from the TextParagraphProperties class. This works great in this scenario: ...
1
vote
1answer
720 views

Selective coloring on dynamic TextBlock content in WPF

For selective coloring of static content the following suggestion works fine : http://stackoverflow.com/questions/2435880/is-it-possible-to-seletively-color-a-wrapping-textblock-in-silverlight-wpf ...
1
vote
2answers
987 views

Why does Vim add spaces when joining lines?

I want to unwrap text in Vim. When I join lines I get an additional space between sentences. Why is that?
1
vote
1answer
680 views

Outline/Stroke the formatted text

I am rendering the FormattedText with different foreground color to different character(fore example first two red, next 2 yellow like..), now i have to display outline surrounded to this text. For ...
1
vote
4answers
470 views

Is there a C# auto formatter that I can use to define custom rules for formatting?

My group has a source analysis tool that enforces certain styles that we have to comply with. I can't change it, and some of the rules are just a pain. One example is that all properties have to ...
0
votes
1answer
579 views

android dev how to underline and change color of word in string like a link color

I have a app that gets a string from a database and it sets to a label. Now i want that label to underline one word such as "This word should be underlined." and i want to be able to click on that ...
0
votes
2answers
449 views

Trying to pass TextFormat into other Classes, getting error

Happy Tuesday everyone :) I noticed I was using the same fonts over again in several of my Sub Classes, so I figured I'd just make a Fonts Class to handle all those. Anyways I'm scratching my head ...
0
votes
1answer
110 views

Visual Studio HTML designer adds a <p></p> every time I switch to design view, I end up with a gazillion lines

I use split view, whenever I change the HTML code and switch to design view (clicking that popup "Design view is out of source view blah blah") VS adds 3 lines to the HTML. eventually it has many ...
0
votes
2answers
745 views

Why does “%.3i” print leading zeros?

There was a bit of a surprise with some code today. I was compiling it on AIX, with the warning level set to anal to see what rogue issues might be lurking. Something new crawled out of the code. ...
0
votes
1answer
1k views

How to change Word.Range text without losing format

Anyone knows how can I change the text of a Word.Range object but still keeping it's format? For example if I have "this text" and I change it to "that txt", txt will still be in bold. I'm looking ...