Topic profile page for Upper case.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Upper case.
Topic "Upper case" was discussed 0 times on 0 sites in last 3 months
Started 1 day, 17 hours ago (2009-12-15 06:16:00)
by Sujay Patil
Hello, I want to accept only upper case characters in input field component. When user types any character, it should automatically convert it to upper case. After doing some research(Checking forum, Google), i found following ways, Using converters, but this will work when user do a focus lost after entering the value. Adding a style class, but the ...
Started 2 days, 5 hours ago (2009-12-14 18:31:00)
by sachavez
I'm using Excel 2007 and would like some assistance with the following problem: I have the following output: LOGISTICS PARK CHI IL 65495 Which is copied and pasted into another sheet with the following code: Sheets("proact_raw").Select Cells.Find(What:="origin").Activate ActiveCell.Offset(0, 1).Range("A1").Select Selection.Copy Sheets...
Started 5 days, 17 hours ago (2009-12-11 06:14:00)
by thiagu.m
hi every one i want to change the all user input into upper case, even if they are type with out caps lock on. for that i use the input style like this input[type=submit], input[type=button] { font-size: 10px; margin: 5px 5px 5px 0; cursor: pointer; text-transform: uppercase; } it is working in the view page , but in back end i am getting the lower case data. ...
Started 1 week ago (2009-12-09 12:16:00)
by user626836
Hi everybody, I have the following cursor that I use to compare a value that I'm entering in my form with the one I have stored in my data base. But if I already entered a username like this one JDOE and try to enter it again in lower case like this one jdoe, the cursor can't identify that there is already a username with the same name. How can I fix this?...
Started 1 week ago (2009-12-09 11:15:00)
by Geoff J
Looks like I have run the course with wedging the post it notes in between the battery and the ribbon. Has anyone solved the problem by replacing the entire upper case ? Mac Book Pro 15" Aluminum Mac OS X (10....
Started 1 week ago (2009-12-09 02:30:00)
by user8720164
Hi, Thank you for reading my post. 1) I created a table: CREATE TABLE radios(name varchar2(20), frequency varchar2(20)); Notice that the table name is lower case ("radios"). 2) I added a constraint on the "name" column: ALTER TABLE radios ADD CONSTRAINT name_pk PRIMARY KEY(name); 3) Now I want to list the existing constraints for the ...
Started 1 week, 1 day ago (2009-12-08 19:31:38)
by freemaya
dairyair....it was deleted,nothing but top line (upper case) dittos...silly shit now I guess this will be deleted... oh well! "fraid the grown-ups left some time ago! Merry Christmas
Started 1 week, 3 days ago (2009-12-06 13:39:00)
by turbine guy
I am in the process of opening up my 15" G4 PowerBook, 1.33mhz, to replace/upgrade my hard dive. I downloaded a great tutorial from iFixit, photos, drawing and all that handy stuff. I have gotten as far as what they referred to as the hardest part of the job and have a question. The latch that is above the CD drive slot is giving me a real pain. The instuctions said that a decent amount of ...
Started 4 days, 14 hours ago (2009-12-12 08:44:00)
by kofucii
Hello, I wish to convert first charactr of a string to Upper case, adn the rest to lower case. The case of string may vary like this: FOobAr fooBAR fOObaR but the output shold be: Foobar I guess it can be done with "tr", but how exacly?
Started 1 day, 7 hours ago (2009-12-15 16:33:00)
by cristianc
Ho provato e non funziona neanche a me Però forse la spiegazione di ciò la puoi trovare qui: http://www.stylusstudio.com/xsllist.../post50930.h tml http://www.stylusstudio.com/xsllist.../post50630.h tml Segnala ad un moderatore | IP: Collegato | Permalink
Started 5 days, 8 hours ago (2009-12-11 15:31:00)
by Jon Spivey
For a form you're probably better using javascript to force upper case - this way the form field contents will display to your user and be sent to your server in upper case. or for lower case "116" wrote in message news:15E09FA8-45AF-4AD3-A57F-03619D011C8E@microsof t.com... > Thanks. I have been ...
Started 6 days, 1 hour ago (2009-12-10 21:49:00)
by the_requiem
Funny, I didn't do any DLC stuff but it said 100% for me. In fact it said 100% even before I did Auditore Crypt. But then, I been offline all the time and didn't check after going online.
Started 4 days, 13 hours ago (2009-12-12 09:55:00)
by rlubke
You could use javascript to uppercase the value when focus is lost. You could, assuming you don't already have a converter attached to the input component, create a converter that upper cases the values.
Started 1 week ago (2009-12-09 05:15:00)
by user8720164
I am sorry :/: I thought I did it but I forgot, you know... to do the whole procedure. I just clicked the "Correct" button and thought it was done. I did it too hastily I guess. Now it is done, thanks again. -- Lmhelp
Started 1 day ago (2009-12-15 22:43:00)
by DerMajo
Hi I am not sure if its possible to overwrite or set the "which" value in javascript. Why do you want to do this? Is there a special reason? Because you just have to add the uppercase char to the inputtext value. If you are not sure, which element is calling this methode, you can get this information from the event. var targ; if (!event) var ...
Started 6 days, 12 hours ago (2009-12-10 10:51:00)
by Baby Boomer (US...
No need to "bump." We can all see your post. So far it's obvious that the 48+ users who has already viewed your post have not had your type of problem to answer your question. Give it a week! Remember, this is a huge holiday month & folks have better things to do than visit a message board. My shopping is done, gifts wrapped, just waiting for St Nick to deliver. ...
Started 2 days, 3 hours ago (2009-12-14 20:11:00)
by sachavez
Quote: Originally Posted by VoG Try adding Code: With ActiveCell .Value = Left(.Value, Len(.Value) - 3) & ", " & UCase(Right(.Value, 2)) End With VoG - That did the trick! Thank you for your quick and accurate response. Have a great weekend and an awesome Christmas holiday. Steve
Started 1 week, 1 day ago (2009-12-08 03:30:00)
by David McRitchie
If you want a macro solution that only processes text cells look for (#upper) in Proper, and other Text changes -- Use of SpecialCells http://www.mvps.org/dmcritchie/excel/proper.htm#up per you could modify it to change all cells including those with formulas because the macro is actually converting formula of text cells, including formulas would still be okay. -- HTH, David ...