Changing the uppercase (capital) to lowercase (small) letters

I have a J4680 all in one and I need to be able to changing the uppercase (capital) to lowercase (small) letters when using keyboard in order to properly enter my password when setting up wireles connection. Does anybody know how changing the uppercase (capital) to lowercase (small) letters?
This question was solved.
View Solution.

Sorry that you are having a problem switching from upper and lower case letter for wireless connection. 
When the keyboard appears on the printer display, there should be a ARROW pointing up or a TRIANGLE. Press that, and the entire keyboard changes into CAPS.
If you do not have the KEYBOARD, and you have the NUMBERS and LETTERS buttons, you continue press the button until CAPS appear. 
For example, (1, abc,), when pressing the number 1, it shows, A, then B, then C, then 1. After 1, the letters should automatically changed into capital A, B, and C. 
Let me know if this helps, or if I confused you. 
**Click the KUDOS star on the left to say 'Thanks'**
Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

Similar Messages

  • I purchased an IPAD2 for my special needs daughter.  She only currently understands lowercase letters only and gets confused with the uppercase letters.  Is there a way to change the keyboard to display lowercase letters?

    I purchased an IPAD2 for my special needs daughter.  She only currently understands lowercase letters only and gets confused with the uppercase letters.  Is there a way to change the keyboard to display lowercase letters?

    There is no way for the keyboard itself to display only lower case letters. It doesn't display lower case letters at all for that matter.
    When you are using the keyboard - The other issue that you will have is with the shift key. Even with auto caps turned off you can still type capital letters if you tap the shift key and if you double tap it by mistake - it will turn into all capital letters so also turn off Caps Lock in the keyboard settings.
    Other than that, there is no way to ensure that you can type in lower case.
    Maybe an external bluetooth keyboard would be a better solution but I don't use one, and I have never even seen one in person so someone else will have to verify that for you.

  • Abap code with relevant capital lettres and small letters

    Hi all,
    i wrote my code in capital letters and i want to change tables and data objects and other stuff into small letters .Is there any option in abap editor to change the code  as per the SAP standards.
    Thanks,
    Madhu

    Hi,
    You can use pretty printer..
    In SE38 choose..Utilities -> settings
    In the prettry printer tab..
    Check Indent..
    Check Keyword upper case..
    Press enter..
    Now go to your code in change mode..
    Press the pretty printer button in the application toolbar..
    Thanks,
    Naren

  • Iphoto shows two photo libraries with the same name, one in small letters the other in all capital letters. they both open the same library and the only one in my computer. How do delete the capital letrs one as the one in the pictures folder is in

    In my  iPhoto application when I select switch libraries It shows 2 libraries with the same name, but one has the name is in Capital letters.
    They both open the same library which is in the Pictures folder. This is the only library I can see and the name is not in capital letters?
    How do I get rid of the one in capital letters

    What is your iPhoto version?
    when I select switch libraries It shows 2 libraries with the same name, but one has the name is in Capital letters.
    In the Library Chooser Panel look for the pathes to the two duplicate libraries. You will see the location of the libraries in the path bar at the bottom of the window when you select one of the libraries. Does it show both libraries in the same folder?

  • Changes to Uppercase in own created table in SE16

    Hi Experts
    I have created an own table where I can save the data.
    These data can include both uppercase and lowercase letters.
    When I want to find something in my table in the t-code SE16 and press Enter, the letters always changes to big letters.
    Then I don't find anything because the data usually is written in small letters.
    How can I solved this? Where can I change the option to search with small letters or mix letters?
    Thanks  //  Peter B

    Hi,
    what is you domain name, is it the standard one or you have created it, as a good practice try to create new domain and then try to change there, hope that will help you out.
    cheers
    Bhavana

  • EDGE is in small letters and therefore I am not able to send/receive emails.

    Hi friends,
    I have recently purchase 8520 curve. I am not able to send /receive emails in my mobile because the word edge appears in small letters . Please help me by letting me know the procedure to solve the problem.

    Did you subscribe for BIS or paid the amount to your service provider? If so call them and request assitance with setting up your BB for internet. If you are already subscribed you can check on Manage Connections, Mobile Network Options, Data Services should be set to "On". But I suspect your BIS is not configured by your service provider so call them.

  • Changing the small letters to capital letters

    Hai,
    Experts,
      I retrieved the data from ADRC table into the Smartform. Then it displayed the data in small letters. How should i Change that Data in Capital letters.
    Thanks & Regards,
    Rathnam.

    Hi..
    use translate stmt..
    <b>translate <fld > to UPPERCASE</b>.
    The TRANSLATE statement converts characters into upper or lower case, or uses substitution rules to convert all occurrences of one character to another character.
    Converting to Upper or Lower Case
    TRANSLATE <c> TO UPPER CASE.
    TRANSLATE <c> TO LOWER CASE.
    These statements convert all lower case letters in the field <c> to upper case or vice versa.
    Substituting Characters
    TRANSLATE <c> USING <r>.
    This statement replaces all characters in field <c> according to the substitution rule stored in field <r> . <r> contains pairs of letters, where the first letter of each pair is replaced by the second letter. <r> can be a variable.
    For more variants of the TRANSLATE statement with more complex substitution rules, see the keyword documentation in the ABAP Editor.
    DATA: T(10) VALUE 'AbCdEfGhIj',
    STRING LIKE T,
    RULE(20) VALUE 'AxbXCydYEzfZ'.
    STRING = T.
    WRITE STRING.
    TRANSLATE STRING TO UPPER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING TO LOWER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING USING RULE.
    WRITE / STRING.

  • Small letters -capital letters change in Flash CS5

    hi,
    How to change the small letters to capital letters in flashCS5. Please any one tell the solution.
    thgs,

    you might have to explain exactly what you are trying a bit more
    you can use the String's toUpperCase() function.
    so if you have a textfield for example
    myTextField.text = myTextField.text.toUpperCase();
    if you want to force small letters to capitals as a user types in a textfield then you would need to add an event listener listening for teh change event and use the above code.
    if you are after something else explain in more detail please

  • How we will change the lowercase data in flat file to uppercase

    How can i change the lowercase date in flat file  after uploaded, out put should be uppercase.

    Hi ramana,
    See the example.
    DO.
       READ DATASET s_filename INTO I_TEMP.
       IF SY-SUBRC <> 0.
        EXIT.
       ELSE.
         move I_TEMP to I_FINALTAB.
         append I_FINALTAB.
         clear I_FINALTAB.
      ENDIF.
    ENDDO.
         In the above code we are moving the data form file to i_temp and i_temp to I_FINAL.
    Here before moving to i_FINAL.
    use  TRANSLATE i_temp to UPPSERCASE.
    Then move to i_final.
    Pls. reward if useful.

  • I need to change the Firefox browser size. It went from the default size...and now it's the full size of the screen with small letters. How do I repair such an issue?

    Smaller letters and takes up the entire screen..how I change it back to a default size...back to 100%?

    You may also need to reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • I joined a website using an id with a name using small letters. Firefox has automatically put a capital in my id. How do I remove it? The website is case sensitive and won't allow me in with my id with an initial cap?

    I joined a website with my id in all small letters. Firefox has automatically made it with an initial cap. The website is case sensitive and will not allow me in. How do I remove the automatically set id password and start over so that I may have access to that web site? Thanks.

    I have decided to dedicate this thread to the wonderful errors of Lion OSX. Each time I find a huge problem with Lion I will make note of it here.
    Today I discovered a new treasure of doggie poop in Lion. No Save As......
    I repeat. No Save As. In text editor I couldn't save the file with a new extension. I finally accomplished this oh so majorly difficult task (because we all know how difficult it should be to save a file with a new extension) by pressing duplicate and then saving a copy of the file with a new extension. Yet then I had to delete the first copy and send it to trash. And of course then I have to secure empty trash because if I have to do this the rest of my mac's life I will be taking up a quarter of percentage of space with duplicate files. So this is the real reason they got rid of Save As: so that it would garble up some extra GB on the ole hard disk.
    So about 20 minutes of my time were wasted while doing my homework and studying for an exam because I had to look up "how to save a file with a new extension in  mac Lion" and then wasted time sitting here and ranting on this forum until someone over at Apple wakes up from their OSX-coma.
    are you freaking kidding me Apple? I mean REALLY?!!!! who the heck designed this?!!! I want to know. I want his or her name and I want to sit down with them and have a long chat. and then I'd probably splash cold water on their face to wake them up.
    I am starting to believe that Apple is Satan.

  • Why my files name switch from small letters to capital letters?

    Hi guys,
    I've a weird problem working with Illustrator CS6. It doesn't happen all the times but sometimes my files name switch from small letters to capital.
    For example the file "file.ai" becomes "FILE.AI"
    What could be the reason?

    I'm on a Windows 7 PC, and am having the same problem. Here is what I have discovered so far:
    The file name is changed to lowercase only when the following things happen:
    The file is opened outside of Illustrator using Windows Explorer ( or other file directory), however, the file must be in the results of a search. For instance, if I type in the search window the word "Dog", all files associated with that query will show in a list. Clicking on an .ai file in that list produces a lowercase file name in Illustrator.
    Selecting the same file in the Windows Explorer without a search ( manually navigating to that file) does NOT produce a lowercase file name, or opening the file directly using Illustrator's file system will NOT produce a lowercase file name.
    Ive tried this on several different machines in the office and have had the same results. Also, it appears that the length of the file name doesnt have any effect on the phenomenon. I have had this happen with single letter names as well as extra long ones.
    Try this out and see if you are getting the same results. I have tried this on several machines here at the office. All of them are Windows 7 ( 64bit) running CS5.5

  • Why can't I change the capitalization of letters in my iPhone music library?

    Just got a new iPhone 6. Once I sync music to my phone, I'm unable to change the way song/album/artist titles are capitalized. For example I synced one album to my phone where the title of the album was in all caps. I then deleted the album from my phone, changed the title to lowercase letters in iTunes, and re-synced it to my phone, but on my phone the album title still appears in all caps. The problem persisted even after I restarted my phone, and I made sure to type the album title in lowercase letters in the "sort as" field as well.
    The same problem is happening with an artist name as well. How do I fix this?

    I have this exact problem, an artist is in all caps. Must be an issue with how the music app database is set up somehow. Changing the text to something else "fixes" the capitalization but the app still remembers the old all caps name for it when I try to change back.

  • Small Letters rather than Capital

    Hey guys,
    I'm using Des6i PL/SQL Definitions in my development. My client's standard is to generate everything in Small Letters and not in Capital (except keywords which I can control with other codes inside the BEGIN..END definition area). As an example, I identified all procedure parameters in small letter, but the generated code is in Capital. Second thing, my table in designer are in a specific order, and when I generate them to *.tab file they are coming in different order although they all reference the same table.

    Hi,
    In Text Function  you can find LowerCase-Converts all upper case letters in I to lower case letters  &
    toUpperCase- Converts all lower case letters in I to upper case letters
    Regards
    Agasthuri Doss

  • Capital and small letters.

    Dears Sirs,
    For my UNI assignment I am generating an array of objects with length of the array is given by the user. Each object contains Name ,Age and income fields.I have done that.
    But there is a constraint. In the Name fieldtThe first character should be a capital letter and all remaining should be small letters.
    How can it be accomplished?
    I thought that
    1) I generate a capital character first time and store it in a variable. Next I generate a string of small letters. Later I append it.
    Or 2) If possible, I generate only a string of small letters then transform the first letter into capital letter.
    Please advise if the second option is possible in java. If so hoe to do that.
    Thanx,
    venkatcute

    The second option is easy; I suggest you have a look at the Javadoc of the String class, that's right here: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html - it has methods like toUpperCase and toLowerCase(); With charAt(0); you can get the first character of the String and then you can create a new String with the first character converted to uppercase.

Maybe you are looking for

  • Persistent Chat/MUCs with Jabber 9.7 on CUCM9.1/CUPS9.1

    Hello All, I'm testing Jabber 9.7 internally on a CUCM9.1/CUPS9.1 deployment, in hopes of using persistent chat rooms. Currently, I have working MUC rooms with 3rd party chat clients, but I think there's a configuration option missing from CUCM or CU

  • IPod touch AND iPod classic not detected by Windows 7 or iTunes, but both are charging fine via USB.

    I already tried uninstalling and reinstalling all the Apple software on my computer but that didn't help whatsoever.  Both devices are fully charged, and I have tried different cables and USB ports, but to no avail.  When I check for the driver softw

  • Local and Roaming profiles not being created

    Hello all, I'm in need of help and I wondered if there was anyone out there with some suggestions. The problem is that one of our sites has Netware 5 and Zfd3.2 and there are no longer any roaming profiles or local profiles being created. Volatile us

  • No you tube on my apple tv

    after updating my apple tv 2nd genration last night with the new software, my you tube was gone. whats left in the main menu is the computer and settings. can anyone help me?

  • Where clause in BMM (logical table Source) is not working

    Hello Folks , I felt I ask here before I ask Siebel(oops Oracle!) support, by which I could save significant time NOT restart box multiple times , change log level , upload RPD , making multiple screen shots etc.. etc.. Here is an example the scenari