Short dump ( PNP LDB )More than one radio button is active

Hello Guys!!!
      I am working on HR report and I’m using <b>PNP LDB</b> . on output when I select “Current month” and select “personal area” single values and hit  execute button . Its giving me short dump “<b>More than one radio button is active </b> “. Why is that any body can help me ?
Cheers
Usman

Also check on AT SELECTION-SCREEN OUTPUT. You`re not selecting any of them too...
Checkout this code ..
I declare PNP in attributes and AT SELECTION-SCREEN OUTPUT.
  PNPTIMR5 = ' '.
  PNPTIMR3 = 'X'. ( Just comment it or give error message )
its giving short dump ,if I try to do the same thing you describe in your post !
Hope this’ll help you
Thanks
Saquib

Similar Messages

  • How can I add more than one submit button in a jsp without use of javascrip

    I want to add more than one submit button in a jsp without use of javascript

    you can do add multiple submit button with this way
    <input type="submit" value="Previous" />
    <input type="submit" value="Next" />
    <input type="submit" value="Finish" />

  • Can you have more than one submit button on a form?

    I'd like to divide a form so that there are two sections, each with their own submit buttons.  Is it possible to have more than one and if so, how do you "create" a button?

    Hi,
    You could try Redirect URL under Options tab. The way is you create two forms instead of two sections. Let's say form A and form B, then set form A's Redirect URL to form B.
    After submit form A, it will jump to form B after seconds, which you can also set in Redirect URL option.
    Let me know if this can help you.
    Thanks,
    Pengpeng

  • How do I create more than one navigation button in Adobe Fireworks CS6?

    Hi guys, 
    Apologies if this comes across as very stupid question. I am a complete beginner with Adobe Fireworks and I'm in the process of creating my first website and I have got to the stage where I want to create navigation buttons and the book I have recommends using Adobe Fireworks so I have downloaded. My problem I have encountered is after I have created my first two state button what is the next step to create another two state button which has the identical size and colour of the previous two state button?
    Here is a brief rundown of the steps I have done to do the first two state button:
    1) Edit-Insert-New Button
    2) Chose the rectangle and then specified the width and height of the button and chose my stroke and fill colour
    3) Centred the button and used the text tool to put the button as a 'Home' button for my website. I then went on Window and Align in order to centre the text on the button
    4) I went on Select-Select All and then went on Windows-States to open the states panel. I right clicked on state 1 which is Up and clicked on copy to states. I then selected the next state radio button and clicked OK.
    5) I selected State 2 and slightly modified it by changing the colour of the text.
    6) I then clicked the back button to return to the main window.
    After this what step should I take to create my another button which has the same size, colour and text style as I have created for the first button? I tried just repeating these steps again but when I do step 1 it creates a new fireworks document which means I have to create the buttons size, colour, text style from scratch.
    Your help would be greatly appreciated guys and once again I do apologise if this comes across as a silly question.
    PS Please could you let me know if the steps I have taken to create the 1st two state button are correct

    Initially you need to configure via the provider's own web based control panel multiple e-mail accounts. If they don't have one, work it out with their customer support to have three distinct mail accounts. Then you can setup multiple logins by adding new accounts to mail. Since mail checks all accounts per Mac OS X user account simultaneously, it probably is best to use different usernames on the same internet provider. If you don't want mail to show all the information from all three mail accounts simultaneously, configure Apple menu -> System Preferences -> Accounts to have multiple users on your computer, and configure each of the internet service provider accounts for each separaet user on Mac OS X.
    Message was edited by: a brody

  • One menu with more than one overlay buttons. Is that posible?

    Hello, (I posted this yesterday but as a part of a created and solved question that is the reason I decided to create my own's)
    I have a menu and I want to link it to a two different tracks so I use two buttons. The problems is that I only can link one overlay button to the menu so what can I do with the second button if I want it to work exactly as the first button -the one that is overlayed to the menu-?
    Thank you and I expect that I have been clear enough

    Yes you should put all of your buttons onto a single overlay file. See this tutorial on how to do that;
    http://www.kenstone.net/fcphomepage/alex_all_menusdir/chapter1.html
    Please skip over the part on Layered Menus and go directly to the part on Simple Highlights.

  • URGENT! Help with creating more than one linked button

    Hi!
    Could someone help a newbie with trying to figure out this.
    I work in Flash CS3, AS3.
    I've created a button that links to another webpage by using this code (the code is added to a separate layer):
    import flash.events.MouseEvent;
    steud.addEventListener(MouseEvent.CLICK, onMouseClick);
    function onMouseClick(e:MouseEvent):void
      var request:URLRequest = new URLRequest("http://www.xx.html");
      navigateToURL(request, "_blank");
    It works just fine, but the problem is that I want to add more buttons (and links) to it, and thats where I get stuck. When I try just adding a new layer and adding the code there, everything stops working. I've also tried copy/pasting the code beneath the first one, with no results.
    Does anyone know?
    /J

    I will try
    I've modified this tutorial http://www.tutcity.com/view/create-a-sliding-content-with-back-and-forward-navigation.2394 7.html and the intent is to make a sliding menue that contains images of plants that link to the url of the plant. I've got buttons (with a mouse over effect that shows the name of the plant), and in AS2 I could use GetURL to link an invisible button to the URL, but to create the sliding effect, I had to use AS3. I've understood that GetURL doesn't work in AS3.
    In scene 1 I have three layers; content, arrows and actions.
    The actionscript looks like this:
    // File downloaded from www.riacodes.com
    import com.greensock.*;
    var arrayX :Array = [0,-800,-1600,-2400,-3200,-4000,-4800];
    var currentIndex : Number = 0;
    left_mc.addEventListener(MouseEvent.CLICK,navigate);
    right_mc.addEventListener(MouseEvent.CLICK,navigate);
    left_mc.buttonMode = true;
    right_mc.buttonMode = true;
    checkArrows();
    function navigate(e:MouseEvent):void{
    if(e.currentTarget == left_mc) currentIndex --;
    else currentIndex ++;
    checkArrows();
    TweenLite.to(content_mc,.5 ,{x:arrayX[currentIndex]});
    function checkArrows():void{
    if(currentIndex == 0) left_mc.visible = false;
    else if (currentIndex == arrayX.length - 1) right_mc.visible = false;
    else{
    left_mc.visible = true;
    right_mc.visible= true;
    On the content layer I have the backgroundimages that slides as a movieclip.
    If I doubleclick on the movieclip I have two layers, one with the bakground images and the invisible buttons, and one layer where I've put the script:
    import flash.events.MouseEvent;
    JC.addEventListener(MouseEvent.CLICK, onMouseClick);
    function onMouseClick(e:MouseEvent):void
      var request:URLRequest = new URLRequest("http://www.blomsterbolaget.se/vaxtsidor/Dracaena_fragrans_JC.html");
      navigateToURL(request, "_blank");
    JC is the instance name of one of my buttons. So far everything works, but I want to add linking to another button, and I'm not sure how to do this correctly. When I've created the invisible buttons, I've drawn a square, converted it to a button, named it, and named the instance name. Changed the Alpha to 0. I've also added an On mouse over effect, but I don't think that has anything to do with this.
    Hope you can help med!
    /J

  • Adding in more than one toggle button

    Hi,
    I am having problems when adding multiple toggles. I am unable to work out what its actually doing as occasionly when i click on toggle 2, its firing toggle 1 and the sometimes its doing it the other way around -clicking on toggle 1 will fire toggle 2.
    Any help is much appreicated.
    My code below:
    //Adding flows to stage
    var flow0:MovieClip = new mov_flow_0();
    this.addChild(flow0);
    flow0.y = 235.80;
    flow0.x = 142.50;
    var flow1:MovieClip = new mov_flow_1();
    this.addChild(flow1);
    flow1.y = 287;
    flow1.x = 314.60;
    //Stop Flows
    stopFlow();
    //Setting up buttons
    var totalButtons:int = 2;
    var buttonArray:Array = new Array();
    setUp();
    function setUp()
    for (var i:int = 0; i<totalButtons; i++)
      var mc = root["toggleBtn_" + i];
      buttonArray[i] = mc;
      mc.buttonMode = true;
      mc.addEventListener(MouseEvent.CLICK, btnClicked);
      mc.btn.x = OFF_POSITION;
    function btnClicked(e:MouseEvent):void
      var id = e.target;
    var index:int = getIndex(id,buttonArray);
    onState = !onState;
    var mc = root["toggleBtn_" +index];
    var flowToUse = root["flow" + index];
    trace ("mc: " + mc.name);
    trace ("flowToUse: " + flowToUse);
    if(onState)
      //mc.btn.x = ON_POSITION;
      TweenMax.to(mc.btn, 0.5, {x:ON_POSITION});
      flowToUse.flow.startFlow();
    else
      //mc.btn.x = OFF_POSITION;
      TweenMax.to(mc.btn, 0.5, {x:OFF_POSITION});
      flowToUse.flow.stopFlow();
    // function to search an array to find a given entry
    function getIndex(id_to_find:Object,array_to_search:Array)
    for (var i:int = 0; i<array_to_search.length;i++)
      if (id_to_find == array_to_search[i])
       return i;
       break;
    function stopFlow()
    flow0.flow.stopFlow();
    flow1.flow.stopFlow();

    Try this:
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    //Adding flows to stage
    var flow0:MovieClip = new mov_flow_0();
    this.addChild(flow0);
    flow0.y = 235.80;
    flow0.x = 142.50;
    var flow1:MovieClip = new mov_flow_1();
    this.addChild(flow1);
    flow1.y = 287;
    flow1.x = 314.60;
    //Stop Flows
    stopFlow();
    //Setting up buttons
    var totalButtons:int = 2;
    setUp();
    function setUp():void
              for (var i:int = 0; i < totalButtons; i++)
                        var mc:MovieClip = root["toggleBtn_" + i];
                        mc.buttonMode = true;
                        mc.addEventListener(MouseEvent.CLICK, btnClicked);
                        mc.btn.x = OFF_POSITION;
                        mc.onState = false;
    function btnClicked(e:MouseEvent):void
              var mc:MovieClip = MovieClip(e.currentTarget);
              var flowToUse:MovieClip = MovieClip(root["flow" + String(mc.name).match(/\d+/)[0]]);
              if (mc.onState)
                        TweenMax.to(mc.btn, 0.5, {x: ON_POSITION});
                        flowToUse.flow.startFlow();
              else
                        TweenMax.to(mc.btn, 0.5, {x: OFF_POSITION});
                        flowToUse.flow.stopFlow();
              mc.onState != mc.onState;
    function stopFlow():void
              flow0.flow.stopFlow();
              flow1.flow.stopFlow();

  • How to handle more than one submit buttons on servlets

    Hi:
    anyone know how to handle the multiplet submit button on servlet,
    such as next, previous, add and so on.
    Thank you

    Don't worry about because only the button that is clicked will get submitted. In the servlet you just test for the existance of a parameter:
    if (request.getParamter("SubmitButton1") != null) { ..... }
    if (request.getParamter("SubmitButton2") != null) { ..... }
    Save the following HTML code, open in IE and click on the buttons to see what will get sent to the servlet:
    <html><head></head><body>
    <form method="GET">
       <input type=text name=text1>
       <input type=submit name="Submit1" value="Me">
       <input type=submit name="Submit2" value="you">
    </form>
    </body></html>

  • ITunes 8.1 Can't Seem to do More Than One Thing at a Time

    I upgraded to 8.1 and now, rather than a "faster" iTunes experience as was advertised on Apple's website, iTunes can't seem to do more than one thing at a time without locking up the application completely. For instance, when trying to download podcasts if I choose to hit more than one "Get" button at a time iTunes will freeze up until the first podcast has completely downloaded. During this time I cannot access any other screen in iTunes at all.
    This freezing of iTunes also occurred while I was trying to sync my iPhone 3G. I received the Calendar sync error that a few other people have mentioned on the forum and wanted to turn off Calendar sync (since I don't use it and don't understand why iTunes turned it on by default, apparently, after the upgrade) but I had to wait for my iPhone 3G to completely sync before I could gain access to any of the tabs in the iPhone sync window.
    So, basically it seems like the new version of iTunes (8.1) really doesn't like to be bothered while it is trying to copy data from one place to another.
    Any ideas?

    I'm using Vista Ultimate 64-bit and iTunes 8.1 installed OK, but required a restart of the entire OS after upgrading. It takes forever to launch, clicking on certain items (like applications) causes itunes to freeze for about 15-30 seconds before it continues (this is actually something that's been there since the introduction of the app store), I've had to switch my library view to LIST and avoid any sort of album art. Using album art to view my library causes iTunes to be extremely, obnoxiously unresponsive.
    The best part - plugging in my iPhone to sync it... iTunes simply sits there dumbly - doesn't even recognize that I've plugged my iPhone in. So now I can't even sync. QUALITY product, quality. So the app I'm FORCED to use to manage my phone doesn't even work after upgrading. Outstanding.
    I'm terrified of uninstalling and reinstalling... the last time I did that with iTunes it jacked my library up... it "lost" all of my music... basically it disassociated all of the music (even the stuff purchased through the itunes store) with the index file so I had to re-import EVERY song and delete the duplicate entry.
    I searched a ton of forums looking for any clues as to how I could improve performance... All I run into is apple fan boys flaming any and all forums to the point of PC *****, no Apple *****, and so forth. Extremely unhelpful.
    The fact is this - if I wasn't forced to use iTunes to manage my non-jailbroken iPhone 3G, then I'd dump it completely. It is a horrible app. Why punish the customers that haven't gone the route of "jail breaking" their iPhones?
    One individual on one of the forums suggested that blue screens, and all the other random errors, including slow performance were due to a lack of RAM. I have 4GB of RAM on my machine I can run a virtual Fedora core 9 machine and a virtual WinXP machine on my Vista x64 box and still not have any performance issues with those two virtuals in the background sucking up system resources, yet with nothing open and less than 50% of my 4GB of RAM in use iTunes performance is abysmal. I have not run into any other application on my Vista machine that performs as badly as iTunes.
    And Apple is touting a "64-bit" version of iTunes - it isn't. The applications the 64-bit installer installs are all 32-bit.
    So, I'm searching as the two of you are for an answer to horrible performance of iTunes.
    Even exiting out of iTunes takes a day and a half... "saving itunes library".... And my "library" isn't that big.

  • Select more than one photo for an mms upload

    I am trying to send more than one photo (by mms) to [email protected]  It will only let me select one at a time to upload.  I know how to select more than one (capital button), but it does not work.  any body know how to select more than one photo to upload at a time?
    thanks!
    Solved!
    Go to Solution.

    Sending more than one file is easy to do but I am not sure how facebook works with this, you would have to try
    Click the picture you want to send in the MMS and select the contact, when it loads up and you have selected send as MMS the cursor should be at the top right next to the image file name - simply hit the menu button and select attach picture and browse to the next picture you want to send and once you have done that you should see 2 pictures in the MMS window ready to send - trackball or menu button to send from there
    Good luck
    LuKiN

  • Syncing iphone using more than one computer

    Does anyone know how to get iphone to sync to more than one computer? I activated my wife's iphone from my computer (after having logged into her itunes account) but when I try to sync from her computer (logged into her account) nothing happens.

    You can, but you can only sync one type of information with each computer. Here are the instructions I followed to sync my two computers. Hope they help.
    How to Sync with Two Computers
    You can sync your iPhone with only ONE media library. However, it is possible to sync the media library with one computer (like your home computer), and the contacts/calendar information with another computer (like your work computer). I have this working on two PCs with Windows XP. I have read posts of folks doing it with two Macs, and with one Mac and one PC.
    This is not sanctioned by Apple, so I dont know if these steps are "correct". I only know that these are the steps I followed and worked for me. Your mileage may vary.
    1. Select "Disable automatic syncing for all iPhones" under Edit / Preferences / iPhone in the iTunes menu.
    2. Uncheck "Automatically sync when this iPhone is connected" in the Summary tab of iTunes.
    3. Check "Only sync checked items" in the same tab.
    4. On the computer you want to sync contacts and calendar, check the corresponding boxes in the Info tab. UNCHECK everything else in the MUSIC, PHOTOS, PODCASTS and VIDEO tabs.
    5. Sync your iPhone with this computer FIRST.
    6. On your other computer, follow the same steps above (1, 2 and 3). Then, UNCHECK everything in the INFO tab, and check everything else on the other tabs.
    7. When you sync with this second computer, you may get a message that the iPhone has already been synced with another computer, and that the media library will be deleted. Fine. There should be NO media library on the iPhone since you unchecked all the media items on the first computer, right?
    8. Sync. Then you can sync on both computers and each will sync what is checked and not overwrite the rest.

  • How to Use Adobe Pro on More than One Computer

    If I am a subscriber, can I use Adobe Pro on more than one computer?

    2 activations allowed - Cloud License http://www.adobe.com/legal/licenses-terms.html

  • My 2009 iMac freezes and won't run more than one application at a time - how can I fix this?

    Help! My iMac has been getting worse regarding freezing, especially when trying to open iPhoto. It will load slowly, and then I get the pinwheel of death for ever, until I shutdown and try over again. It usually takes several tries, and usually overnight. How can I resolve this issue?

    First, back up all data immediately, as your boot drive might be failing.
    Step 1
    This diagnostic procedure will query the log for messages that may indicate a system issue. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|timed? ?o' | tail | open -ef
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, stop here and post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.
    Step 2
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Reset the System Management Controller.
    Run Software Update. If there's a firmware update, install it.
    If you're booting from an aftermarket SSD, see whether there's a firmware update for it.
    If you have a portable computer, check the cycle count of the battery. It may be due for replacement.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane. See whether there's any change.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    If you have a MacBook Pro with dual graphics, disable automatic graphics switching in the Energy Saverpreference pane for better performance at the cost of shorter battery life.
    Step 3
    When you notice the problem, launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, and Idle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in andWrites out.)
    Step 4
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Can't gift more than one song at a time

    Does anyone know how to gift more than one song at a time (not an album, but non-contiguous songs off one or multiple albums)?
    I tried adding them to my wishlist so I could add in several, but I already own several of the songs and you can't add songs you already own.
    Of course, this would be resolved if they would just bring back the shopping cart, but for now, I have no idea how to accomplish what should be a very simple task.

    It is, indeed, frustrating, and seems short-sighted on Apple's part. Imagine a shop owner saying, "You can buy anything you want for yourself, as many as you like, but if it's a gift, you can only buy one."
    I did receive a nice response from Apple confirming that this is, in fact, impossible to accomplish:
    Dear Michael,
    Welcome to iTunes Store Customer Support. I am Animesh and I will be assisting you today.
    Thank you for your interest in giving an iTunes Store or App Store gift. I understand that you would like to gift multiple songs from different albums. I understand that this is important for you.
    Michael, please note that you can buy a song, an album, a video, an audiobook, a TV episode or season, a movie, or an application for anyone who has a valid email address. However, there is no such option to gift multiple songs at a time from different albums. You are required to gift them individually, also the Wishlist feature is for personal usage and not gifting.
    I can realize that it must be difficult for you. I have felt the same way in the past when I've found myself in similar circumstances. I have found in situations like this that voicing your opinion is a good way to get the "ball rolling".
    Please know that Apple takes the feedback from our customers very seriously. This is the reason for our feedback page - to create a forum where our users can vent, praise or share whatever feelings they have to allow us to meet your needs, and grow as a company.
    I took the liberty of submitting your feedback to Apple on your behalf. I would also encourage you to share this link with all of your friends and family who wish to submit the feedback, and have them all submit the same request.
    Here is the link for you.
    http://www.apple.com/feedback/itunesapp.html
    I know sometimes it feels as though submitting feedback will not yield results, so I will also invite you to check out the following link. This is a letter from Apple's CEO addressing customers who purchased an iPhone very early on at $599, then the price went down to $399 shortly after. Mr. Jobs heard our customers and Apple responded accordingly.
    http://www.apple.com/hotnews/openiphoneletter/
    I hope that you will consider sharing your thoughts on the feedback page.
    Michael, we very much appreciate your concerns, and if there's anything else I can do for you, just respond to this email and let me know. Thank you for supporting the iTunes Store.
    Sincerely,
    Animesh
    iTunes Store Customer Service

  • On some pages the text from more than one paragraph stack up on top of each other, like writing something then writing something else on top of it.

    On some pages the text from more than one paragraph stack up on top of each other, like writing something then writing something else over the top of it. Some pages will run text and pictures together, like a car rear-ending another or a train pile up. Other pages will cut an image or text short, i.e. it will display a portion of the top of the image or text but not the rest. This happens on Amazon for example, the section where it says "Customers who looked at this also looked at" will allow only a certain amount of the upper portion of the description immediately below the picture of the product but below that section everything is fine until I get to another section displaying more products and their descriptions and then it cuts the bottom portions off again. I've noticed this behavior mostly in the sections with product photos, the text sections seem okay. YouTube also displays this behavior. It's even doing it on this page right now. Below this box I can read "The more information you can provide the better chance your question will be answered " , but directly below that in the next sentence I can see the start of it with "Troublshootin" and the "Automatically Add" in a green field covering the "g". The next clear text is "A window will open in the top corner. Click Allow, and then click Install. If the automated way doesn't work, try these manual steps." I tried turning of pre-fetching, clearing history, cookies, and cache, scanning for malware with Avast and Windows Defender all to no avail. It began when I upgraded from dial up to DSL via AT&T Uverse. I have a Motorola NVG510 modem. The modem was replaced an hour ago along with new dedicated lines and DSL/Phone splitter from the box by an AT&T technician to make sure my incoming lines were up to par. He ran a connection test and verified everything is up to standards. IE does not display this behavior. I am running Firefox20.0.1 and all previous versions have acted the same way since I upgraded to DSL about 3 months ago.

    If you have increased the minimum font size then try the default setting "none" in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but use an extension to set the default page zoom to prevent issues with text not being displayed properly.
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

Maybe you are looking for

  • Is there a continuous scrolling month view for ical, like outlook?

    is there a continuous scrolling month view for ical, like outlook?

  • Deletion is taking long time using forall

    Hi,        i am  inserting and deleting the rows using forall. insert taking less time to inset the rows but while coming to deletion it is taking more than 5 days long time to delete 18.5 million rows in a table using forall. the main table having 7

  • TS1631 I cannot get sound on downloaded apps?

    I cannot get sound on downloaded apps.  I do get sound from music download.. 

  • Question about backing up MBP

    I purchased my MBP back in August of 2009 and it has been virtually flawless since I have bought it. However I have downloaded all kinds of stuff to it and added all kinds of different things to it, I have a pretty large music library and what I woul

  • Disable Standby/Hibernation MSI Radio

    Hi all, through Windows power management I set my MEGA 651 to go into hibernation after 10 minutes idle time. TV-recording programs are able to disable this setting while running. MSI Radio unfortunately does not disable this setting therefore after