Why text isn't clear in sparc using QFont(wqy font size 7),x86 is clear

the version is solaris 10 10/08 ,use Qt4.2.3 to develop application, in solaris x86, the text is clear . while in sparc the text is incomplete, the font is wenquanyi and heiti, both are sanserif. actually in gedit ,the font is also not clear. is this the reason of sparc itself. try to change screen resolution,it is no use.

You posted and cross-posted this same question all over the place, seven different times.
Do not do that. This site considers that to be the same as spamming.
(I've deleted all the other posts and left just this one.)
The answer is easy to understand:
You have utterly different graphics hardware and their respective drivers.
GPU chipsets on SPARC do not run on x86 systems.
You may have no choice but to simply live with whatever you get.

Similar Messages

  • Can Parameters be used to adjust Font size in Rpts?

    Post Author: KJ7
    CA Forum: General
    Hi there - we want to use Crystal Rpts to print labels for various tape/media formats.
    The staff will select & preview the reports thru a different program/platform - where all the data is entered & updated. (The reports themselves reside on the server, and I'm the one who updates & modifies them, the users simply print, export results, etc.)
    The issue is - if we start utilizing Crystal for the labels... the staff no longer has immediate access to manipulate templates (to modify font size, etc.) unless I give them all licenses to Crystal Rpts (which would be costly & not entirely prudent). 
    I'm a bit of a novice in terms of Crystal & have very little knowledge in terms of parameters, but I was wondering if I can use a parameter to have them adjust the font size?? [That way - they could preview the report - if the text doesn't all fit, they can cancel out, go back in, adjust their parameter criteria, etc.]
    Any assistance you might be able to give me would be GREAT!!
    Thanks!
    ~k
    PS - I'm working in Crystal 9... it's the version that's compatable w/my other program (ScheduALL)

    Post Author: KJ7
    CA Forum: General
    Thanks - all of these suggestions are really helpful! - one last follow-up:
    my users who are testing this are remarking that they often have to go in and re-size/tweak these items a number of times.  Obviously, this means re-freshing the preview more than once.  Because of the detail of the labels - and the user's preference to be able to manipulate the font size for various fields discreetly, I've created 11 separate parameter fields for font re-sizing (grouping some items together only where appropriate).
    So the question is (now that I've set these defaults - and they've over-ridden, some or all of them) ... is there a way for them to go back & revise one or more parameter and still keep the rest of their current settings/changes (without having to re-enter all that info all over again)??
    EX: Preview 1:
    ?Name font >default val: 10 => change to 9
    ?Title font >default val: 8 => change to 7
    ?CH1 font >default val: 8 => change to 7
    ?CH2 font >default val: 8 => change to 7
    ?spine font >default val: 7 => remains static
    ?interior label font >default val: 8=> change to 7
    Preview 2:
    Leave all items the same as above except:
    ?Name font >default val: 10 => (was changed to 9) => change to 8
    Please advise.  Thanks.
    ~Kara

  • Why has Adobe has saved my document in a larger font size?

    My document now occuies 56 pages (with lots of white space) instead of the original 32 pages. How do I get to make Adobe keep to my original font size? Many thanks! johnmr

    Are you using the CreatePDF service which is part of the Adobe PDF pack? If so this service is not Reader and there is a special forum to help with those questions? If you are using Acrobat, we have a Acrobat: Creating, Editing and Exporting forum to help users using Acrobat.

  • Some Text Messages do not display when using large font on iphone

    When using increased font size (accessability function) on iphone some text messages will not display. The iphone just seems to lock up. If normal font size is used text massage displays with out any issue. When font size is increased, text message will not display again.

    Hi Peter
    Actually, Captivate does have an essentially unlimited number
    of undo levels. But that number may appear to be different. The
    number of levels starts when you begin editing the project. If you
    close and re-open a project, that starts the undo process over.
    I've tested and I gave up after about 280 or so undos.
    Where Captivate doesn't allow an undo, it normally warns you
    with a rather catastrophic looking dialog.
    Cheers... Rick

  • Is there any way to change the font size of the text in the Finder Sidebar?

    This may sound like a bit of a dorky question but here goes nothing...
    I am rather near-sighted and in need of new glasses but I am stuck in a holding pattern until I can get a referral to see my eye doctor. Anyway... I have found myself using the Zoom features far more often and increasing the font size in the Finder for the Item Names & Info.
    The problem that I am facing now, is that the font size of the text in the sidebar is FAR SMALLER than the font size of the text of the actual file names & info.
    +*IS THERE ANY WAY TO INCREASE THE FONT SIZE OF THE TEXT IN THE SIDEBAR??*+
    So far I have looked in:
    *The Finder Preferences
    *The Desktop Preference Pane
    *The Appearance Preference Pane
    *The Seeing Tab of the Universal Access Preference Pane
    And to add to my frustration I have also searched the Mac OS X Help AND all of the posts in this thread (back to 1/1/09) that had the word "sidebar" mentioned in them!!
    +*DOES ANYBODY HAVE ANY OTHER IDEAS?? OR IS THIS ONE AREA THAT I AM OUT OF LUCK BECAUSE APPLE DIDN'T FORESEE THIS ISSUE??*+
    Usually, Apple is really very good about foreseeing any possible trouble (ESPECIALLY when it comes to the area of Accessibility for people w/ disabilities!!)
    I do hope that SOMEBODY can help me on this one!!
    Also, I noticed that the size of the text that is on the Toolbar is also the same ITSY BITSY font size as the text on the sidebar, but I am guessing that there is next to nothing that can be done about that!!
    Thanks a Million!!
    +~Kathryn A.+
    P.S. Here is the link to a screenshot that I took that will illustrate my problem more clearly...
    Icon View Screenshot: http://screencast.com/t/gzDONwN3

    Hi! The only way I know of is changing the screen resolution. Tom

  • Using a javascript to change the font size used by the measurement tool

    A couple years ago I saw a javascript written that would allow me to chang the font size used by the measurement tool in Acrobat 9.  When the IT department deliverd my new laptop with Acrobat X Pro, they had wiped out the script and I am not expert enough to recreate it from scratch.  Any suggestions?  I believe it was in an older post by Dave Merchant, but I truly can't find the post or a way to recreate the script.  Thanks for any help.

    Executing this code from the JS console will change the font size of all the Measurement annotations to 20. You can change the value in the first line to use a different font size:
    var newTextSize = 20;
    this.syncAnnotScan();
    var annots = this.getAnnots();
    for (var i in annots) {
        var annot = annots[i];
        if (annots[i].type=="Line") {
            var richText = annot.richContents;
            for (var i in richText) {
                richText[i].textSize = newTextSize;
            annot.richContents = richText;

  • How do I enlarge the text in my contacts? I tried enlarging the font and that doesn't work.

    How do I enlarge the text in my contacts? I tried enlarging the font size and that doesn't work.

    Under accessibility you can make the text bold, that might help.

  • Why doesn't my custom ItemRenderer accept Application font size?

    I have a CSS file:
    s|Application {
              fontFamily: Verdana;
              fontSize: 9;
    Why doesn't my custom mx:AdvancedDataGrid  ItemRenterer accept the font size defined in the stylesheet?

    What is the value of fontSize?  Could it be set in some other selector?

  • Why is my texting using data? When I have data turned off I can't send/receive. Texting is "unlimited" but it's using up all my data- help!

    Why is my texting using data? When I have data turned off I can't send/receive. Texting is "unlimited" but it's using up all my data- help!

    Texting longer text messages or any media (pictures/video/sound etc) being sent requires data to be active. However, it does not count against your data caps.
    Since you have an iPhone, you must also be aware of the difference between iMessage and SMS Text messages. The iPhone, by default, will send an iMessage when sending another text message to anyone else with an iPhone, iTouch, or iPad. This does use your data if you are not connected to wifi. In Settings, you can turn iMessage off, and then all of your texts will go through Verizon.
    Also understand- iMessage will use wifi when connected to wifi, but would need cellular data connection to work when not connected to wifi. Regular SMS text messages that are long or any media will always use the cellular data and not wifi, so will not send if cellular data is turned off, even if on wifi. However, this does not count against your cap.

  • Hello, I wonder why there isn't Finnish language in the adds-on list. Could you please make it available to Firefox users. Thank youin advance. Rappe

    Hello, I wonder why there isn't Finnish language in the adds-on list. Could you please make it available to Firefox users. Thank youin advance. Rappe

    (1) Firefox's built-in post-crash page has not been a real HTML page for a long time (for example, from the time of Firefox 22, see: [https://support.mozilla.org/en-US/questions/968212 Want to save LOTS of versions of "Restore Session.xht" from the "oops ..." page for later use]). If you had this working differently with Firefox 25, that might have been created by an extension.
    You can check to see whether extensions are disabled or need an update on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. The disabled extensions cluster toward the bottom of the list. To poll for updates, use the "gear" button above the list and choose Check for Updates.
    If you used the Reset feature (or Firefox automatically did a reset due to some problem during upgrading), you will need to reinstall missing extensions. The reset feature creates a folder on the desktop named Old Firefox Data. Do you have that folder? There may be data you can recover from it.
    (2) There are many ways for history to get cleared, both internal to Firefox and external. Could you double-check your Privacy settings?
    orange Firefox button (or Tools menu) > Options > Privacy
    * The "Firefox will" drop-down says Remember History: Firefox shouldn't be clearing history, but an add-on or external software could do it
    * The "Firefox will" drop-down says Use custom settings for history: inspect the "Clear history when Firefox closes" setting to make Firefox isn't set to clear history. Also check your add-ons and consider external software.
    Firefox normally accumulates months of history. However, some of Firefox's database sizes are based on disk space available. If your hard drive is very full, Firefox might reduce the amount of history stored.

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • Iphone 4s - how do I change the name in the contacts for the owner of the phone - it is coming up as the other person who uses the laptop - so when ringing or texting anyone 2 names are being used as the caller id on the screen

    Iphone 4s - how do I change the name in the contacts for the owner of the phone - it is coming up as the other person who uses the laptop - so when ringing or texting anyone 2 names are being used as the caller id on the screen

    *Ralph Johns* writes:
    "Your options are:
    Get a trial account form @mac which will work as an iChat name after the 60 days run out but not be a email account that is valid (And is free)"
    Do you mean a trial account from .Mac? (DotMac)
    "Get an AIM Screen name and set it to Display what you want as you set it up.
    The Screen name can be whatever yu want but you can also set it to display something else as well."
    I had thought about this, but it seems other people have already chosen the screen name "pinksharkmark" and virtually every variation of it I can think of. So that isn't an option for me. As for getting it to display something else as well, do you mean that if I were to get an AIM screen name like "CromulentCat" I could somehow log in to iChat under the AIM account "CromulentCat" yet get iChat to represent me to my Buddies as "PinkSharkMark"? Because I have to admit I don't see how that can be done. It appears as if iChat displays to anyone chatting with you precisely the account name you logged in under and nothing else. So if you logged in using a .Mac account, then you are displayed as "[email protected]" while if you logged in under an AIM account, you are displayed as "CromulentCat". But that's it that's all... there is no way to change CromulentCat to PinkSharkMark.
    Thanks very much for taking the time to reply, though.

  • Why is it such a pain to use java in a country that uses commas as decimal?

    Why is it such a pain to use java in a country that uses commas as decimal separator?
    A few weeks back I've asked here about the keypad decimal key. For some reason, java doesn't map the decimal key to a comma on the Portuguese (Portugal) keyboard layout. I've got no answer and I ended up using a custom plainDocument on the JTextFields to replace all points with commas.
    Now, I've just spent the whole morning trying to store and use decimal numbers properly. For some reason, a Double/Float .valueOf method (or the corresponding parse method) simply ignores the locale in use and uses US defaults when parsing the string. I can't parse anything with commas in those methods and I should, as it is the decimal separator for the system and default locale being used by java.
    First of all, I shouldn't be expected to perform replacements on every single operation that comes with a comma and I obviously can't be expected to program my own locale checking to decide what decimal separator to use in each final system. Second, is there any way to work with numbers seamlessly, without having to know the locale of the end user?
    I'm sorry if this is all my fault for doing something completly wrong, I'm new to java and I did search around to no avail. I'm really frustrated with what seems to be a complete lack of support in java for locales other than the US one.

    Good old Cobol has the "DECIMAL-POINT IS COMMA" clause... And isn't it great? :)
    Second, is there any way to work with numbers seamlessly, without having to know the locale of the end user?Consider "123.456". In some locales, this number is one hundred twenty-three thousand, four hundred fifty-six. In other locales it is one hundred twenty-three and four hundred fifty-size thousandths. How will you be able to determine which, without a locale?That's not what I've meant. Java should know the locale and behave accordingly. I don't have to know the locale of the end user since it might vary greatly. My point is that if strings are flying around with commas and if comma is the decimal separator on the end user's machine, any method aimed at parsing a numeric value out of a string should regard commas as such. I'm constantly replacing dots with commas and vice versa which could cause trouble if a different locale is used.
    And I mean that as a rant. Given my inexperience with Java, there might be good reasons for such a behaviour as baftos argued. What I'm really interested is in finding the proper way to deal with this issue.
    Have you tried the NumberFormat.parse? I will now.
    Edited by: Smigh on Apr 9, 2008 9:21 AM

  • Why do we have to pay to use the iCloud

    Why do we have to pay to use the iCloud isn't it free?

    Welcome to Apple Support Communities
    iCloud is free unless you want more than 5 GB of storage. If you want more storage, you have to pay

  • HT201269 why is it that when trying to use a back up of my old iphone i click on devices and the options are all frey scaled? I cannot access the restore and back upo options

    why is it that when trying to use a back up of my old iphone i click on devices and the options are all frey scaled? I cannot access the restore and back upo options

    Let me start with the general advise...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

Maybe you are looking for

  • How do I find the summary page on ITunes. Have new Windows 8 and have to change to manually manage music

    I have downloaded audiobooks from the library using Overdrive for years. I have a new computer with Windows 8 and now it's been difficult. I have a book ready to transfer to ITunes to download to my Ipod but in order to transfer it a message came up

  • TDMS File Viewer not working in LabVIEW2009

    Anyone know how to get this to work in 2009. I believe this came from the forums and quit working when I upgrade to 2009. Solved! Go to Solution. Attachments: TDMS - File Viewer.vi ‏63 KB

  • Revenue dummy cost centre

    Hi experts, I am doing a rollout for another company.  The config are copied from another copy and should be the exact.  However, I face a problem with Billing and it always look for revenue dummy cost centre.  I can't find any config in OKB9 Default

  • Purchase requisition is re-created even though their is enough stock.

    Hi Experts, we have got a problem with a material. Although sufficient Purchase orders in place to cover all demand, it keeps creating additional purchase requisitions. If purchase requisitions are then deleted they would be automatically be re-creat

  • ERROR IN REBATE

    while settlement of rebate getting error "Th sales volume is not current". Please help.