|
Hi, I am using Rich Text object in my C# application. The only issue I am having is that when user pastes formated text from another app, it remains formated which I cannot have. Is there any way how to paste only string and ignore formatting? Thanks!...
Started by Tomas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Assuming WinForms : try this : define a RichTextBox with a KeyDown event handler like this :
Append-only example :
private void richTextBox1_KeyDown(object sender, KeyEventArgs e) { if (e.Control && e.KeyCode == Keys.V) { richTextBox1.Text += (string)... .
|
|
Are you allowed to use different font colours on posts such as yellow? Or is that only for mods/admins/support? :P
Started by Themoneyroll on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at near-reality):
To view links or images in signatures your....
You currently have 0 posts.
Ex-Mod, need help? Send me a pm
To view links or images in signatures your post count must be 10 or greater .
SS+ have a different style of using the colors anyways .
You can use them.
|
|
I am setting up a template which includes a custom colour scheme in PowerPoint 2003. These are the 8 colours that appear in the fill and font colour palettes. If I add additional colours in the presentation, they appear for re-use(i guess) underneath ...
Started by Laura C_99 on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at microsoft):
You can....
Repeats of your corporate colors) to the extra colors section, and adding new ones will push the ones that're there off the dialog box .
You can use a little VBA to add 8 distinct colors of your own (eg .
Unfortunately, the feature's a bit broken.
|
Ask your Facebook Friends
|
Font and Background colours of TLZone? Hey ya'll!
I was just wondering if I could customise a few colours, I know that some forums allow personal customising?
Reason I ask is that this is my profile view and you'll see that the text on the left (below...
Started by bikerchris on
, 8 posts
by 3 people.
Answer Snippets (Read the full thread at tlzone):
Bumpetty bump
UK RIDER LOCATOR
Zone Thread Here!
My Tillis: Tyres to be decided, Bitubo, Sprint ST Steering Damper, Riflemans 1/5, Quik Tank connector, PCII, Bauwolf Exhaust cans (scratched, doh!), coolant leak gone (for the time being) & std sprockets... .
|
|
The font used in xterms is extremely compact yet readable. What font is that? The closest I've found that I can use in other other applications is DejaVu Sans Mono or Bitstream Vera Sans Mono. Those are as compact as xterms vertically but take up more...
Started by dreeves on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
It makes a great font for coding....
My favorite pixel font is ' Dina ttf 10px' at 16pt on a dark background.
The default font for X11 apps seems to be -misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1 are going to use them.
|
|
I just finished a medium sized web site and one thing I noticed about my css organization was that I have a lot of hard coded colour values throughout. This obviously isn't great for maintainability. Generally, when I design a site I pick 3-5 main colours...
Started by dbrien on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
Then you can change the colours just by replacing the file, or having a dynamically generated CSS file, or having have colour tags as you write, but then....
You could have a colours.css file with just the colours/images for each tag in.
|
|
I want to format lines of text differently in a .net C# webforms text box, eg. some lines italic or different colour? I know I can in windows forms, is there a richtextbox alternative for webforms? I find a lot of people asking but no answer...please ...
Started by Annabel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want....
The text text inside a color
font-style: italic
will make the font in italics
<style> .styledText { color: #ffeded; font-style: italic; } </style> <input type="text" id="txt1" class of the class property.
|
|
What is the best default font to use for a Unicode Application in which the user can select the font he wants to use?
The problem I notice is that not all Windows machines have every Unicode font. And every Unicode font does not include all the Unicode...
Started by lkessler on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To respond, because I wouldn't know, for example, if the idea of a sans serif font would apply languages identical for all languages?
The best default font for any Windows application, Unicode is more annoying than having to configure ....
|
|
I got to thinking about font (typeface) selection today. A site I did for work came with this professsionally done style guide that detailed colour selection, font selection, spacing, etc. It's the first time I'd seen anything like that but I have to ...
Started by cletus on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
With an "unlimited" range of font treatments, what I would probably try is some PHP + GD or ImageMagick.
|
|
I'm using netbeans on ubuntu, I would like to add some fonts to it. Could anyone tell me how this is done ?
Started by Vhaerun on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Tools > Options > Fonts & Colours > Syntax Category: default Font: ([...]) >I assume you mean the IDE's editor font?
I'm on Windows with 6.1 but I assume the process; Select Font
Adding....
Will be the same.
|