Lower case q in jtables in JDK 1.3/JDev 3.2

Has anyone gotten the lower case "q"
to be accepted on a tab into a jtable column (as in a gridcontrol), under JDev 3.2/JDK 1.3?
I am still not getting this to work, although Sun claims it fixed in 1.3?
(The JDev "About" box says I'm using 1.3)

Resolved. sigh.
Lower case "q" is now accepted correctly in jtables.
Reason ( embarassment ) for the original post: I changed the Default Project Properties to JDK 1.3, per instructions in the JDev 3.2 readme.
Uh, when one brings in an existing project into your JDev 3.2 workspace, one must explicitly change the Project Properties for THAT Project from the 1.2 it was created under to 1.3( of course ).
null

Similar Messages

  • MacBook Pro Lower Case cracks.

    Since I opened my MacBook Pro without Retina-Display 2012, the Lower Case cracks, if I press the upper and lower Case together.
    What can I do to solve this problem?
    Should I solve the screws a bit or should I thighten those screws?
    Thanks!

    A new Mac is in warranty for 1 year from the date of purchase.
    You may have to take the computer to the Apple store or Apple Authorized  Service Provider
    to get it fixed under warranty.
    Best.

  • Magsafe flashing or dim green - not charging etc. ----lower case plastic?

    OK, here's a long story as short as I can make it. It will probably be confusing, as I don't have time to figure out the best organization of this info. I'm at work.
    ---SHORT VERSION---
    What is the material attached to the lower case that the internals of the laptop are attached to made of? Does it serve a purpose other than holding down and stabilizing internals?
    ---REASON I'M ASKING---
    I was replacing my IO/DC in board, as that is what was recommended by the Genius bar (no power with my old battery in, powered with no battery). I bought 2 other used batteries that didn't work with it either, both with supposedly over 90% health (but came shipped without much or no charge).
    Anyway, last night I decided since the batteries didn't work, I would tackle the IO board. When taking it apart, I missed one of the instructions mentioning a 4mm hex head on the IO board, and broke off the bit that it screwed into of the lower case.
    My question is...what is the material that the internals of the computer screw into? Is it plastic, or some sort of weak metallic material? I guess I'm asking if I could have made my problem even bigger by breaking the bit where it screws into, or if it is for "attachment" purposes only. I superglued it back on, and it stayed when I reattached the board. However, before I could get a strong green light powering up with no battery. Now it's very dim. However it will actually stay powered with a battery attached...but not charge. Sometimes it flashes, and sometimes it's dim green.
    Finally (maybe), this is not a new IO board. I had to reinstall my old one, due to the fact that I'm an idiot and bought the wrong part (got an A1260 board instead of an A1211 board.) I just am worried since my symptoms have changed, that I may have created yet another problem. Now I'm waiting on another IO board, this time for A1211.
    Just thought I'd see mainly if anyone knows what the material is made of.
    Thanks!

    Nevermind. Pretty sure it's plastic.
    Turns out there was a loose connection. I'd double checked everything last night, but must have missed it as I was tired and hurrying. After it didn't worked I opened it back up and found a part that was loose, snapped it in, and it wasn't better.
    Today I opened it up, and the other side of the same connector was loose. OOPS.
    It now powers up like it did previously. It even started charging the battery for a few minutes, but then it quit. Still I'm relieved it's at least back to "normal" and hopefully when the RIGHT part comes, it'll work.

  • How to convert a text file in lower case to upper case?

    I've a beginner in java world and I just come through the tutorial in http://java.sun.com/docs/books/tutorial/essential/io/filestreams.html showing how to copy a text file:
    import java.io.*;
    public class Copy {
    public static void main(String[] args) throws IOException {
         File inputFile = new File("farrago.txt");
         File outputFile = new File("outagain.txt");
    FileReader in = new FileReader(inputFile);
    FileWriter out = new FileWriter(outputFile);
    int c;
    while ((c = in.read()) != -1)
    out.write(c);
    in.close();
    out.close();
    And I would like to ask how to covert all lower case letters in input file to upper case letter in output file at the same time of copying.
    I guess it'll be using Character.toUpperCase(c), but I don't know how to do it actually.
    Any help would be much appreciated.

    Hope this helps
    import java.io.*;
    public class Copy {
    public static void main(String[] args) throws IOException {
    File inputFile = new File("farrago.txt");
    File outputFile = new File("outagain.txt");
    FileReader in = new FileReader(inputFile);
    FileWriter out = new FileWriter(outputFile);
    BufferedReader buff = new BufferedReader(in);
    String c;
    while ((c = buff.readLine()) != null)
    out.write(c.toUpperCase());
    in.close();
    out.close();
    }

  • Is there a way to remove the dot in a lower case "i" using photoshop?

    I'm working on a poster for a concert, and don't want the dot to appear over the "i" in a word.  Does anyone know how to remove the dot?

    Sure
    You may be able to find a font without dots on lower case i
    You can rasterzise a text layer and remove the dot.
    You can convert the text layer to a shape layer and remove the dot by editing the shapes path.

  • How can I change a column to lower case?

    I selected an entire column and discovered that it's already set at Format > Font > Capitalization > None
    If I change "None" to "All Caps," it capitalizes everything. But when I change it back to "None," letters that were originally capitalized remain capitalized. How can I change EVERY letter in a column to lower case?
    Thanks.

    Format > Font > Capitalization changes how the text is displayed. But it doesn't change the actual text.
    To change all letters to lower case you can use the LOWER() function in cells that refer to the original text. Then select the cells with the formula displaying the "recapitalized" text, command-c to copy, and Edit > Paste Formula Results to remove the formulas.
    SG

  • My itune gift card says it's not authorized.  I've tried to redeem by typing in upper case letters and lower case letters.  I've never had this problem before, what do I do so I can use this gift card?

    I bought an itunes gift card yesterday and I have tried to redeem, but when I do I get a message the card has not been authorized.  I have typed in typed in the code as seen mostly upper case and I have tried lower case also.  Neither is working.  I've never had this problem before.  Should the store where I purchased it from done something to supposedly "activate" it.  I'm at a loss.  I do not have the store reciept a friend does, and I'm sure she desposed of it.

    Yes, the retailer is supposed to activate the card. Otherwise they'd lose hundreds to shoplifting. What you normally should do is go back the retailer from whom you purchased the card and discuss the problem with them. They should either correctly activate the card or give you a new one. If they refuse to help, as some retailers do, or this was a gift so you cannot contact the retailer, go here:
    iTunes Support
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • XML element names required in lower case

    Hi,
    I am on release 4.6C
    I create an XML file from internal table using FM SDIXML_DATA_TO_DOM and SDIXML_DOM_TO_XML.
    The internal table is defined such that the  fieldnames of internal table are same as element names in XML file.
    The XML file gets created properly, but the element names appear in upper case.
    The requirement is to have it in lower case.
    Does anybody have any idea about how to control the case here?

    Hi Sudhir
    you can convert field names manually using translate command to convert it to lower case.
    hope this helps.

  • How can you create a paragraph style that removes all spaces and forces everything to lower case?

    Hi,
    Is there anyway of using GREP (or some other magical wizardry) to create a paragraph style that automatically removes all spaces and forces words into lower case?
    Strange request i know....I'm wanting to use it for datamerged email addresses.
    Thanks

    so doing it through InDesign is a work around I'm exploring.
    Excel has the 'LOWER' function and the ability to record macros for a quick find/replace on the spaces - so that's definitely a good option if it can't be solved purely in InDesign.
    You can change case via scripting in InDesign. This AppleScript (OSX only) will set the case of the selected paragraph style to lower. It would be possible to add some code that would strip spaces as well:
    tell application "Adobe InDesign CS6"
        activate
            set StyleList to name of every paragraph style of active document
        set myDialog to make dialog with properties {name:"Document Paragraph Styles"}
        tell myDialog
            tell (make dialog column)
                tell (make border panel)
                    tell (make dialog column)
                        make static text with properties {static label:"Choose a Style", min width:150}
                    end tell
                    tell (make dialog column)
                        set myPresetsDropdown to make dropdown with properties {string list:StyleList, selected index:0, min width:150}
                    end tell
                end tell
            end tell
        end tell
        set myResult to show myDialog
        if myResult = true then
            --+1 gets the correct name because list starts at 0
            set myStyle to item ((selected index of myPresetsDropdown) + 1) of StyleList
        else
            return
        end if
        destroy myDialog
        tell active document
            set myStyle to paragraph style myStyle
            repeat with j from 1 to (count stories)
                repeat with i from 1 to (count paragraphs in story j)
                    if applied paragraph style of paragraph i of story j is myStyle then
                        --defines a variable to replace the generic this_text parameter in the handler
                        set SCText to the contents of paragraph i of story j
                        set contents of paragraph i of story j to my change_case_of(SCText)
                    end if
                end repeat
            end repeat
        end tell
    end tell
    on change_case_of(this_text)
        set the_comparison_string to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        set the_source_string to "abcdefghijklmnopqrstuvwxyz"
        set the_new_text to ""
        repeat with thisChar in this_text
            set x to the offset of thisChar in the_comparison_string
            if x is not 0 then
                set the_new_text to (the_new_text & character x of the_source_string) as string
            else
                set the_new_text to (the_new_text & thisChar) as string
            end if
        end repeat
        return the_new_text
    end change_case_of

  • Lower case search is not working in the Web

    Hi BW Gurus ,
    when i am executing  a query i am able to search the values in the selection with f4 using smaller case as well as lower case but in the web it is taking only upper case letters search... if i am giving as lowercase it wont show any records when it is upper case its showing records. any solution for this.....
    vas

    Hi Vas,
    While searching, put a condition such that it works for both the lower case as well as uppercase.
    Regards,
    Ravi G

  • Lower case in variable substitution

    Hi experts,
    in my scenario I have a receiver CC that put an xml file in a target server.
    The requirement is to dynamically determine target directory based on a field on mapping header.
    I have used variabile substitution to retrieve the value of the field, and with %% i have put this value on field target directory.
    The problem is: value from mapping is in capital letter, but the name of the target directory in which I have to put the file is in lower case letters, and target server is case sensitive.
    Obviously I cannot change value in mapping, but I need to put variable in variable substituion in lower letters.
    Is it possible?
    Thanks
    Fabio

    Fabio Boni wrote:
    Hi,
    > I don't want to make changes on mapping, is not possible to put lower case in variable substituion?
    > Thanks
    > Fabio
    no
    also in case you want to put small case in variable substitution why cant you use dynamic configuration and set the values to lower case?

  • How so I make automatically created subdirectories lower case?

    I was able to successfully make my .html pages lower case, however, I have a gallery page where I drag in photo albums.  For my gallery page, iWeb creates a subdirectory called "Pages" that's shown in my browser address window when looking at an album.  I can't figure out how to make "Pages" lower case. 
    FYI:  I publish to a folder and ftp my site to my host outside of iWeb.  I can physically rename the "Pages" folder to a lower case name, but iWeb seems to create pointers somewhere that specifically look for "Pages" and not "pages."  My host is linux based, and therefore case sensitive.  Any thoughts on how to make "Pages" lower case?

    I don't understand why you want to do this.
    File names on the server are case sensitive but they don't have to be lower case.
    If you have an image file named "My-Photo.jpg" the url is...
    http"//www.domain-name/folder-name/My-Photo.jpg
    and it will work.
    If you put the URL like this...
    http"//www.domain-name/folder-name/my-photo.jpg
    ... it won't.

  • ISE 1.2 - Guest Account converted to lower-case automatically

    Hello
    I have an ISE appliance version 1.2 and sponsor portal
    I create accounts with upper case username and upper case password, but Sponsor portal convert it to lower case.
    I try to login with lower case or upper case. I can't login with both.

    Check the Multiport configurations and HTML page settings for converting the Alphabetic-Cases.:
    You can check the below link for step by step configuration of HTML-Page’s setting:
    Link-1
    http://www.cisco.com/en/US/docs/security/ise/1.2/user_guide/ise_custom_portals.html
    Link-2
    http://www.cisco.com/en/US/docs/security/ise/1.0/sponsor_guide/ise10_sponsor.html#wp1069407

  • HT1338 My MacBook Pro (running Leopard 10.5.8) won't allow keyboard to type an upper case 'C' using the shift key...works fine with caps lock, or, with my Typinator workaround using double-typed lower case c (not always best). Any ideas?

    My MacBook Pro keyboard won't type an upper case 'C' using the shift key... only with caps lock. Workaround has been to use Typinator by typing a double lower case c, not always the best solution. Mac is a refurbished model, which initially was fine. Apple tech helped me correct the quirk when it first appeared, but now it has returned and refuses fixes. Any ideas?

    I'm willing to bet that this has something to do with iCloud.  I've been facing a frozen computer nearly every time I go into it. 
    In Activity Monitor I have seen two programs associate with iCloud that take up about 2.5 GB of memory (I only have 4 in the computer) -- causing everything to freeze.  One of these is called "iCloud Helper" and the other one is something like "Address Book Sync helper" -- I see parts of these names in the stuff you have posted.
    I am at my wits' end with these and have written to Apple asking them to do away with these or fix them.  To get rid of the Address book sync thing I have gone into system preferences for iCloud and unchecked Contacts -- but then spontaneously it gets rechecked.  And oftentimes after I Force Quit the iCloud helper, it spontaneously turns on again.  My conclusion --- the iCloud is basically unusable.  It turns a Mac into the most useless, clogged, sluggish PC.  If this is happening to a lot of people's computers -- and I see no reason why yours or mine should be an exception -- these programs just might destroy Apple itself. 
    So -- I'm about to completely give up on iCloud, and I suspect that others will too unless this gets fixed.
    Cheers,
    Bob

  • Hi, i forgot my macbook pro(snow leopard) password and i tried to reset it through single user mode, but whenever i type, everything comes out in CAPs instead of lower case. Each time i press the minus(-), it always comes out as an underscore(_).Pls help.

    Hi, i forgot my macbook pro(snow leopard) password and i tried to reset it through single user mode, but whenever i type, everything comes out in CAPs instead of lower case. Each time i press the minus(-), it always comes out as an underscore(_).Pls help.

    Well, you can try easing the shift key up with something thin but flexible (credit card sort of thing) but if the contacts below are stuck you may need to get it seen to by an authorised repairer.
    If you can borrow a keyboard (a PC one will probably work as long as the password is alpha-numeric with no special characters) you can at least get in to backup your HD before going for repair.

Maybe you are looking for

  • Error when import  metadata form Oracle Olap (aw) to rpd

    Hi all, When import Oracle OLAP analytic workspace to rpd user bi Admin tool, i get error: [nQSError: 77031] Error occurs while calling remote service AWImportService11G. Details: Error getting AW version -- IO error: The network Adapter could not es

  • Why am I getting Internal Server Error when trying to access PayPal?

    I have tried modifying cookies, making sure PayPal.com is allowed, read everything I can find on internet and still unable to solve problem. In an older blog posting, it said PayPal is blocking Firefox. Is this still true? == URL of affected sites ==

  • Need to add date field on select screen of report RM06INP0.

    Hi All, I have to create a new report ZRM06INP0 as a copy from RM06INP0 and add a field in the selection. When the selection "Price Determination w/o PO" is not picked then we need a maintainable field from the info record. The default for the date i

  • Delete an ENTIRE podcast?

    Hi Does anyone know how to delete an entire podcast? The show, the header...everything? I'm the owner- I changed servers and upgraded extensively, but the old podcast is still out there. It's confusing for first time visitors. We're talking about Smo

  • I OMEGA ix4 200d error

    Dear Sir, I am Nagamani from M Damodaran & Associates Chennai. We are Using NAS I OMEGA ix4 200d Model.We are getting the errors in NAS. The Errors are 1. Drive3 is Missing2. Data Production need to be reconstructed These are errors we getting. I swa