Text as textName: JohnA Boice
Email: jaboiceathughesdotnet
Product: Firefox
Summary: Text as text
Comments:
You need to do as Safari does and make ALL text, including buttons,
links, bookmarks, and general page text actual text so screen readers
can interpret and voice the text.
Until this occurs, your products are a real pain to use. And I have
limited sight. What about those with less or no sight?
Browser Details: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3
...
chinese character in rich text control and text controlI have a chinese character in either rich text control or text control. The
character is look fine if it is a small size (10, 12), however when the font
size is changed bigger (36 or 72), the character is out of shape(many dot,
not smooth). Is anyone has any idea to print a bigger chinese character from
pb7.03.
...
Pasting text from Mac apps into rich text controls pastes plain textName: Bob
Product: Firefox
Summary: Pasting text from Mac apps into rich text controls pastes plain text
Comments:
Using: Mac OS X 10.6 and Firefox 3.5 and 3.6 beta 1
Steps to reproduce:
* Write text in Text Edit, Yojimbo, etc using rich text (e.g. font
sizes, bold, italics)
* Open Gmail in Firefox and compose an email
* Copy and paste the text you created from the other Mac app into Firefox
Observed: text is pasted in as plain text
Expected: converts the rich text to appropriate rich text in the
control, like Safari does
This is a huge pain when e.g. writing release n...
How to populate other text controls by losing focus of one text control
Hi All,Iam new to ASP.net. Here is a small illustration about my prob. I have 3 text controls in a page i.e which represents zip,city,state. I want to populate city and state after entering zipcode into zip text control i.e something like focus lost event on zip text control. Any solution regarding this thanks and regards,vijaycanaan
How about OnTextChange: http://msdn.microsoft.com/en-us/library/aa710190(VS.71).aspx
EricPascarello.com | Twitter epascarello | LinkedIn
Hi vijaycanaan We can capture the following event when TextBox lost focus: On Server-Side:We...
Fix broken text wrapping and control input text length in TextBox control
Hi!
I'm developing a(nother; it's my second!) ASP.NET application that right now is giving me fits.
On one of my screens, the user needs to be able to enter large amounts of text into three database fields. The database fields are all char(350).
I'm having two problems with this. First of all, I found that when editing an existing record, text in the fields would wrap in a manner similar to this:
Wow, what a sorryperformance!
The text box is much wider than the text "Wow, what a sorry", so I couldn't figure out why the text was wrapping. I tried setting the Columns property to 90 (which...
Changing the text of an input (text) control
Hi everyone, please answer the following:
I have a html input control as follows
<input id="newSearch_keywords" type="text" class="text" value="<%=JobsSearchBusinessObject.CurrentKeywords %>" name="newSearch_keywords""/>
When the page loads I need to look at the text of this input field and remove any * chars that are in the text.
Thanks for your help
<input id="newSearch_keywords" type="text" class="text" value="<%=JobsSearchBusinessObject.CurrentKeywords.Re...
text cut off in static text controlI have a window that needs to display a path in an uneditable field. THe
problem is that if the text is longer than the the field it makes the last
word disapear so c:\Program is display instead of C:\Program Files\etc...
Is there a way to stop the static text from doing this or to make a single
line edit unselectable (so the text can't be highlighted)?
You have several choices.
If the UI element where this static text is displayed is fixed in size, then
you are probably better off implementing a tooltip - see
http://www.migmag.pair.com/pb/files/tooltip.zip
On the other h...
changing text in static text controlHello
PB 11 build 8123
I have a window with a dwcontrol. When I am updating the dw control I
want one of the column names (static text controls) to change based on
a value I select in another column.
So far I have the code in the itemchanged to capture the value of my
selection in the field I first select.
How do I take this value, (it can only be Y or N) and program one of
the column headings (static text) to display a certain text?
I can't seem to get it to work with setitem or settext. Those two
funcs don't really work with column headings as far as I can see.
A...
MS Publisher / Word-like textframe web control... flowing text between text controls
Does anyone know of an ASP.Net web control capable of linking text boxes/frames together similarly to the Publisher & Word textframe objects (via the NextLinkedTextFrame property in Publisher or the TextFrame.Next property in Word)? The goal is to have text flow from one textbox into another. Thx.....
How to programmatically add user control to the middle of text inside Literal text control ? Pls help...
Greetings fellow programmers,I greatly appreciate all the help I can get. Here is the problem.I have a function that pulls content from the database and put the content into a literal control. Somewhere in that content, I need to insert a user control (bla.ascx). Ideally, I want to use string.replace to find the location where I want to insert the user control. But I can't... there is no such option on the literal control methods and properties.Do I have to overwrite render method? I'd normally use loadcontrol and add it to the placeholder control, but in this case, I can't dynamically ...
Bold Text For Selected text in Text Box
Hi EveryoneI have a small thing to do [at this time , very big for me]. I want to make some text string as bold which appears in a text box control for the web. It means some of the portion of the string will be bold and some will be in the normal font style. Can anyone suggest any idea to accomplish this task. [I know that we can set the font weight property for the whole text box and all the text appears in the selected font-weight]Any suggestions.BaberBaber SaeedSoftware EngineerPalmChip, Pakistan Toll Free: 0800-000-13 Ext:494Cell: 0300-6438634
Standard TextBox that comes with ASP.NET ...
Text not appearing when typing the text into text fieldName: Maadhavan
Email: madhavan_t_patyahoodotcom
Product: Firefox
Summary: Text not appearing when typing the text into text field
Comments:
Text not appearing when typing the text into text field or any other field
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.9) Gecko/2009040821 Firefox/3.0.9
From URL: http://hendrix.mozilla.org/
Note to readers: Hendrix gives no expectation of a response to this feedback
but if you wish to provide one you must BCC (not CC) the sender for them to
see it.
...
Rich Text DataWindow In Rich Text ControlHi, is there a way to take the contents of a rich text data window and put
it into a rich text edit control?
Thanks,
Cliff
...
Validation Control
I've been building a web form-to-email type application over the past couple of days and am currently tweaking the validation controls. I've done all the RequiredFieldValidators and added a regular expression to the email field to check for the @ but how do I write an expression for something like a "Name" field where it finds any number values entered as invalid?
Pete
try this:
^[a-zA-Z]$
also, have a look at : RegExLib
regards.Bilal Hadiar, MCP, MCTS, MCPD, MCTMicrosoft MVP - Telerik MVP
Thanks for the link...I saw that earlier. For some reason the regular expres...