JTabbedPane background color doesn't work in Win XP - SP 1 with JRE 1.4.2

Setting background color for JTabbedPane doesn't
work in "Windows XP with SP 1" when using JRE 1.4.2.
For example, following call doesn't set the
tab to green:
tabbedPane.setBackgroundAt(0, Color.green);
It always displays TABS with the white background.
Is anybody aware of this problem?
Thanks-in-advance for any help / suggestions!
Sundar

Thanks, bbritta and vairavan.
I tried setOpaque also, but still doesn't work,
On my system also:
UIManager.getSystemLookAndFeelClassName() = com.sun.java.swing.plaf.windows.WindowsLookAndFeel
I have given below the sample code that doesn't display tab color. Please let me know if you suspect something is wrong here, or any suggestions to make this work under Windows XP - Service Pack 1.
Thanks,
Sundar
// CODE STARTS HERE
import javax.swing.JTabbedPane;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.UIManager;
import java.awt.*;
import java.awt.event.*;
public class TEMP_TABBED_PANE extends JPanel {
public TEMP_TABBED_PANE() {
JTabbedPane tabbedPane = new JTabbedPane();
     tabbedPane.setOpaque(true);
Component panel1 = makeTextPanel("Howdy");
tabbedPane.addTab("One", panel1);
tabbedPane.setSelectedIndex(0);
tabbedPane.setBackgroundAt(0, Color.green);
Component panel2 = makeTextPanel("Howdy Howdy");
tabbedPane.addTab("Two", panel2);
tabbedPane.setBackgroundAt(1, Color.yellow);
Component panel3 = makeTextPanel("Howdy Howdy Howdy");
tabbedPane.addTab("Three", panel3);
tabbedPane.setBackgroundAt(2, Color.red);
Component panel4 = makeTextPanel("Howdy Howdy Howdy Howdy");
tabbedPane.addTab("Four", panel4);
tabbedPane.setBackgroundAt(3, Color.cyan);
//Add the tabbed pane to this panel.
setLayout(new GridLayout(1, 1));
add(tabbedPane);
protected Component makeTextPanel(String text) {
JPanel panel = new JPanel(false);
JLabel filler = new JLabel(text);
filler.setHorizontalAlignment(JLabel.CENTER);
panel.setLayout(new GridLayout(1, 1));
panel.add(filler);
//panel.setOpaque(true); <<-- UNCOMMENTING THIS ALSO DOESN'T HELP :(
return panel;
public static void main(String[] args) {
JFrame frame = new JFrame("Tabbed Pane Demo for Color");
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
// UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
JOptionPane.showMessageDialog(frame,
          "UIManager.getSystemLookAndFeelClassName() = " +
          UIManager.getSystemLookAndFeelClassName(),
          "Look And Feel",
          JOptionPane.INFORMATION_MESSAGE);
catch(Exception e) {
e.printStackTrace();
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {System.exit(0);}
frame.getContentPane().add(new TEMP_TABBED_PANE(),
BorderLayout.CENTER);
frame.setSize(400, 125);
frame.setVisible(true);
// CODE ENDS HERE

Similar Messages

  • My live! platinum doesn't work on win

    My sound blaster li've! II platinum doesn't work on win xp! I have tried to download drivers and install them but it's still impossible to listen to my external midi keyboard. Creative Playcenter, recorder, launcher and surround mixer are impossible to initialize....a message tell me that there's an error or that it's impossible to find drivers. I've tried to re-install everything and then install new drivers for xp but...nothing!!!
    How can I solve these problems? I want again complete funcionality of my audio card!
    Thanks to everyone will give me an answer...
    Bob

    iOS: Troubleshooting applications purchased from the App Store
    You may want to try deleting the app and download it again. Read the troubleshooting steps.

  • [svn:fx-gumbo_beta2] 10321: Fix SDK-23520 - Application background colors don' t work with the Wireframe theme

    Revision: 10321
    Author:   [email protected]
    Date:     2009-09-16 13:42:01 -0700 (Wed, 16 Sep 2009)
    Log Message:
    Fix SDK-23520 - Application background colors don't work with the Wireframe theme
    QE notes: Wireframe tests need new baselines. There are subtle rendering differences on the edges/corners that are not visible, but are causing test failures. Joann has excluded the wireframe tests for now.
    Doc notes: None
    Bugs: SDK-23520
    Reviewer: Chet
    Tests run: checktests, mustella gumbo/components/wireframe
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23520
        http://bugs.adobe.com/jira/browse/SDK-23520
    Modified Paths:
        flex/sdk/branches/gumbo_beta2/frameworks/projects/wireframe/src/spark/skins/wireframe/App licationSkin.mxml

  • I have a imac g4 with a philips cdd5301  drive. the drive doesn't work what should i replace it with

    i have a imac g4 with a philips cdd5301 drive. the drive doesn't work. what should i replace it with that is compatible. i've seen some bad reviews about the philips drive

    Any good external optical drive should do, in this case, Google is your friend, just make sure it's Mac compatible.

  • Copy paste color doesn't work?

    Copying and pasting background colors of boxes doesn't appear to work. Any workarounds?

    Well I read the forum rules and it doesn't say
    anything about not using URGENT. Sounds like you are
    going based on convention.Consider basic good manners. You have just approached a bunch of strangers and asked them for their help, for free. By telling us it's urgent, you're really saying "my problem is more important than these other people asking for help", which is only true as far as you're concerned. Everyone considers their own problem more important.
    The forum rules may not say anything about not using "URGENT", but since the people answering the questions have the power to do so or not, you just have to abide by what they say. Like it or lump it, basically. Or cough up some hard currency

  • JTabbedPane Background Color incorrect when using SCROLL_TAB_LAYOUT

    I am tring to set the background (JDK 1.41_02) on a JTabbedPane that uses SCROLL_TAB_LAYOUT. It is reported as a bug with this example:-
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class TestFrame extends JFrame {
    JSplitPane jSplitPane1 = new JSplitPane();
    JTabbedPane jTabbedPane2 = null;
    JPanel jPanel1 = new JPanel();
    JPanel jPanel2 = new JPanel();
    JPanel jPanel4 = new JPanel();
    JPanel jPanel3 = new JPanel();
    JTabbedPane jTabbedPane1 = null;//new JTabbedPane();
    public TestFrame() {
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    public static void main(String[] args) {
    TestFrame untitled11 = new TestFrame();
    untitled11.setSize(250,250);
    untitled11.show();
    private void jbInit() throws Exception {
    jTabbedPane1 = new JTabbedPane();
    jTabbedPane2 = new JTabbedPane();
    this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    jSplitPane1.setOrientation(JSplitPane.VERTICAL_SPLIT);
    jTabbedPane1.setBackground(Color.red);
    // jTabbedPane1.setOpaque(false);
    jTabbedPane1.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
    jTabbedPane1.add(jPanel3, "Problem");
    jTabbedPane1.add(jPanel4, "Pane");
    jTabbedPane2.setBackground(Color.orange);
    jTabbedPane2.setOpaque(true);
    jTabbedPane2.add(jPanel1, "Working");
    jTabbedPane2.add(jPanel2, "Pane");
    jSplitPane1.add(jTabbedPane1, JSplitPane.TOP);
    jSplitPane1.add(jTabbedPane2, JSplitPane.BOTTOM);
    jSplitPane1.setDividerLocation(100);
    this.getContentPane().add(jSplitPane1, BorderLayout.CENTER);
    I have tried added the suggested solution
    javax.swing.UIManager.put("TabbedPane.tabsOpaque", Boolean.FALSE);
    javax.swing.UIManager.put("TabbedPane.contentOpaque", Boolean.FALSE);
    prior to creating the tab pane but stll get the problem.
    am I doing something wrong.

    The fix for the bug 4690946(http://developer.java.sun.com/developer/bugParade/bugs/4690946.html) was integrated only in jdk 1.5

  • Remote Control Doesn't Work in Win-7 !!!

    After upgrade operating system to win-7 Remote Control Stop Working !!
    and the ENE CIR Already installed ...
    but it's still Don't Work
    My Remote Details : RC1762302/00
    3139 228 50021
    Hp SPS :435743-001
    HP:HSTNN-PRO7
    RC6 IR
    cp04 30801 j 064454 REVB
    and this pic 4 it http://img44.imageshack.us/img44/971/846610569l.jpg

    I too have this exact same issue.  The play, stop, forward, reverse buttons don't do anything, and also the sound buttons, they activate the volume window but not adjustment of the volume happens. The only buttons that work are the opening of applications and the power button. All this happened after I installed some free updating software for some other paid and free applications I have (Advanced SystemCare Professional), all quite legitiment, as a result there were corrupt icons and I had to uninstall the offending software and some corrupted software including Microsoft Office beta and reinstall... no viruses were found on a full Zonealarm scan.  I have the DV6-2113TX on Win-7.  If ANYONE has a clue how to fix the full functionality of the remote, please let me know as it's really niggling me that it just doesn't work even after reinstalling the drivers for the IR etc.
    I tried contacting HP online and I get NO replies.  I am yet to phone.  It is still under warranty with 20 months left (8 months manufacturer, 12 months supplier).
    cheers
    Jasen

  • tr misbehaving (background color doesn't span the tr

    Isn't it wierd how intractable problems seem to solve themselves when you finally give up and ask for help...
    I just noticed that the css for the table '#maintable' was set to  'display: block;'
    I removed that specification and the table started to behave appropriately.
    I posted this message anyway in case someone else runs into the problem.
    The problem page validated with DW CS4 (code), BBedit (syntax), W3C (code, css, links)
    The row was set to bgcolor="#333300" but the background only covered part of the row.
    It acted as though there was a smaller table within a larger table, but there was only one table!
    The table was set to
    <table width="750" align="center" id="maintable">
    The css is posted below the following URL and html code...
    http://www.natlassoc.com/new/tracer/forms.htm
    HTML:
    <tr bgcolor="#333300">
            <td valign="top"><h1 class="style2">NAM wants to help you<br>
                    So does your Attorney General <br>
                    and the Federal Trade Commission (FTC) </h1>
                <p align="center" class="style2">The biggest difficulty we have is that many people say they have a problem <br>
                - but do not follow through and file a  complaint.</p>        </td>
        </tr>
    The CSS:
    #maintable
        border: 15px outset #606000;
        background-image: url(../pics/Parchment.jpg);
        display: block;
        margin: auto;
        padding: 10px;
    .style2 {color: #FFF}
    Thanks for listening to me talk to myself (and the choir).
    Dan H.

    I just noticed that the css for the table '#maintable' was set to  'display: block;'I removed that specification and the table started to behave appropriately.
    I posted this message anyway in case someone else runs into the problem
    <table> is already a block tag, so the style should make no difference at all.
    The row was set to bgcolor="#333300" but the background only covered part of the row.
    It acted as though there was a smaller table within a larger table, but there was only one table!
    The table was set to
    <table width="750" align="center" id="maintable">
    The css is posted below the following URL and html code...
    http://www.natlassoc.com/new/tracer/forms.htm
    HTML:
    <tr bgcolor="#333300">
            <td valign="top"><h1 class="style2">NAM wants to help you<br>
                    So does your Attorney General <br>
                    and the Federal Trade Commission (FTC) </h1>
                <p align="center" class="style2">The biggest difficulty we have is that many people say they have a problem <br>
                - but do not follow through and file a  complaint.</p>        </td>
        </tr>
    The CSS:
    #maintable
        border: 15px outset #606000;
        background-image: url(../pics/Parchment.jpg);
        display: block;
        margin: auto;
        padding: 10px;
    .style2 {color: #FFF}
    The 10px padding is applied to the <table> tag.  But a <table> doesn't have padding, although Firefox seems to think it does.  Only the cells within the table have padding or spacing.  I suggest you find another way to do this.  By the way, you need to give your 'tooltip' layers a background color.  And you don't need the overflow style on them.

  • JTabbedPane Background Color

    Hello,
    How can i change the Background Color for the JTabbedPane?
    thanks

    play with this:
    UIManager.put("TabbedPane.selected", Color.cyan);

  • JProgressBar background color does not work in XP with JRE 1.4.2

    Hi,
    I am setting the background color of JProgressBar. While it used to work in 1.4.1, the background color does not show in 1.4.2 on XP. It looks like it has something to do with the XP L&F in 1.4.2. I am setting the L&F to systemlookand feel. Is anyone aware of anyworkaround for this? Setting the opaque property does not help either. I don't want to say swing.xp=false. We need the xp look and feel.
    Any help will be appreciated.
    Thanks.
    Sujatha.

    Actually I draw a blank looking into it a bit deeper. The Windows UI paintXPBackground method is private and the XPStyle class can not be accessed outside the package. I guess the reason for this is to protect the XP LAF from having the backgrounds changed etc.
    If it is important to you the source is available for you to replicate your own MyXPStyle class and then you would have to recreate the whole paintDeterminate methods in your MyProgressBarUI class. It would not be very future proof though.

  • Header background color does not work

    Hi,
    I would like to change the background color of the header element, but it does not work as I imagined
    First of all, here is the HTML:
    <body>
    <div id="wraper">
      <header>
        <h1><span>Pacific</span> Coastal Highway</h1>
        <nav>
          <ul>
            <li>Home</li>
            <li>Big Sur</li>
            <li>Pfeiffer Beach</li>
            <li>Elephant Seals</li>
            <li>Morro Bay</li>
          </ul>
        </nav>
      </header>
      // ... some other HTML elements & content ...
    </body>
    So, within <header> element we have <h1> and <nav> elements, and within that <nav> element there is a list that is actually menu.
    Here it CSS code that refers to these elements:
    #wraper {
        width: 1200px;
        background-color: #FFFFFF;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        border-right: 1px solid #000000;
        border-left: 1px solid #000000;
    body {
        margin: 0;
        background-color: #CBD2FB;
        font-family: "OpenSans Regular", "Gill Sans MT", Arial, "Times New Roman", sans-serif;
        color: #202020;
        background-image: -webkit-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: -moz-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: -o-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
        background-image: linear-gradient(180deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 11.91%,rgba(232,238,245,1.00) 25.91%,rgba(202,212,220,1.00) 100%,rgba(0,0,0,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(138,169,207,1.00) 100%,rgba(135,167,207,1.00) 100%,rgba(202,212,220,1.00) 100%);
    h1 {
        margin-top: 0px;
        font-size: 48px;
        text-shadow: 1px 1px 2px #969696;
        padding-top: 32px;
    h1, h2, h3 {
        font-family: "Prociono Regular", "OpenSans Regular", "Gill Sans MT", "Times New Roman", Arial;
        color: #507AAD;
        text-align: center;
    h1 span {
        position: relative;
        top: -37px;
        left: 35px;
        font-family: GoodDog, Arial, "Times New Roman", "Gill Sans MT", sans-serif;
        font-size: 47px;
    header nav ul {
        margin-right: auto;
        margin-left: auto;
        list-style-type: none;
        padding-left: 0px;
        width: 705px;
        /* [disabled]margin-bottom: 10px; */
    nav ul li {
        float: left;
        padding: 10px;
        display: block;
        width: 110px;
        text-align: center;
        background-color: #A9A3FF;
        border-right: 1px solid #FFFFFF;
        border-radius: 23px;
        background-image: -webkit-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        background-image: -moz-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
    background-image: -o-linear-gradient(270deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        background-image: linear-gradient(180deg,rgba(135,167,207,1.00) 0%,rgba(204,217,234,1.00) 60.11%);
        margin: 18px 5px;
    And, finally, here's how it looks:
    Now, I'd like to change the background color of the <header> element (to chage that white behind that <h1> and menu into some other color), so I just added the background color of the <header> element in CSS:
    header {
        background-color: #FF2D31;
    But, here is how it looks now:
    As you can see, although <nav> element with list (menu) is IN <header> element - the background color of <header> is just behind <h1> element.
    Do you know why it's happening, and what would be the best way to solve this problem?
    Thank you in advance.

    Ben Pleysier wrote:
    The problem is caused when floated children do not force the parent element to clear the floats.
    Nancy O. wrote:
    It may seem counter-intuitive but overflow:hidden prevents margin collapse on parent elements containing floats:
    The magic of “overflow: hidden” — Articles — Colin Aarts, freelance web developer
    I'm trying to figure out what happened (and why) in my example, where the problem occurred, but...
    I tried with inspecting elements with Firebug - to see what's what in case when there isn't overflow:hidden property that is related to <header> element in this example from the first post:
    As you can see in the picture - <header> element is only that blue area containing <h1> element, and although <nav> element (with the <ul> element inside) is IN <header> element - it is not shown within the blue area, as it is not within <header> element.
    As for the <h1> element which is inside of the <header> element, when I select it - it looks like this:
    Now, purple area indicates the padding-top of <h1> element, and I guess that yellow area which indicates the margin is actually browser's default margin of the <h1> element.
    Next, confusing is when I select <nav> element:
    Although <nav> element is selected - there is no that blue area indicating where is that element on the web-page... ?
    Next, when I select <ul> element, there is only yellow area indicating margin -  I guess that yellow area which indicates the margin is actually browser's default margin of the <ul> element.
    When I select <li> element - it's the same case as with <nav> element there is no that blue area indicating where is that element on the web-page... ?
    Finally, when I select <a> element - it looks like this:
    All in all - inspecting all <header> element and the elements within it didn't help me to see what and why this is happening (with the background color of the header element). I think the problem is in me, I'll wait a few days and maybe then things become clearer in my mind
    Sorry for my bad English.
    Again, thank you all!

  • It doesn´t work weblogic sever 10.3.2 with jeveloper 11.1.1.2.0 with Win 7

    Hi everyone, how must I configurate weblogic server with jdeveloper 11.1.1.2.0 on Windows 7 x86 ?
    I installed jdeveloper 11.1.1.2.0 with weblogic server 10.3.2 that comes in jdevstudio 11.1.1.2.0.
    JDeveloper works but when I am going to test any web application weblogic doesn´t work and the
    service never starts up.
    I have the next message:
    the system cannnot found the specified path
    Process Exited
    I have to set up any environment varialbes or I need any plugging.

    Hi,
    is there any more information than this ? Which path is it that the system cannot find ? Can you try installing JDeveloper into a directory that does not contain blanks ?
    Frank

  • CSS -- background color doesn't show with scroll bar

    I have a nav bar with a background-color that shows up fine if the image opens to the right size.  If, however, the window opens small and I have to use the scroll bar to move things over, the color for the nav bar isn't there.
    Any thoughts would be appreciated.
    Here's the code:
    HTML:
    <body>
        <div id="Global">
            <div id="navHeader">
                <div id="navBar">
                    <ul class="navStyle">
                        <li>Home</li>
                        <li>Chamber Info</li>
                        <li>Event Galleries</li>
                        <li>Contact Us</li>
                        <li>Join</li>
                    </ul>
                </div>
            </div>
        </div>
    </body>
    CSS:
    @charset "utf-8";
    /* CSS Document */
        padding:0 0;
        margin:0 0;
    body{
        background-color:#f1eee3;
    #Global{ margin:0 auto;}
    #navHeader{
        width:100%;
        height:40px;
        margin:0 auto;
        background-color:#bfbfbf;
    #navBar{
        margin: 0 auto;
        width:960px;
        text-align:center;}
    .navStyle{
        font-family:"Eras Medium ITC",Arial, Helvetica, sans-serif;
        font-size:18px;
        padding-top:10px;
    .navStyle li{
        display:inline;
        padding-left:20px;
        padding-right:20px;

    Does this help?
    #navHeader{
    width:100%;
    min-height:40px;
    _height:40px; /**for IE6 only**/
    margin:0 auto;
    background-color:#bfbfbf;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Background image doesn't work in dreamweaver 8

    I have dreamweaver 8 and trying to install a background image through modify>page properties>appearance.
    I created my background image through fireworks and saved it in my "images" folder.  However when I access it through dreamweaver, I'm not able to see it on my page. I can, however, apply my background color, but not my "bg.jpg" image.
    Why not?
    Can somebody help me?

    My guess is that your image might not be suitable for web output.
    Did you optimize your image for the web?  I don't use Fireworks but in Photoshop it's called File > Save for Web.  A typical background image that repeats horizontally and vertically on screen should have a filesize of around 10-20 KB.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Dreamweaver CSS div background color doesn't match .png menu button color on PC

    Hello,
    I created a menu with buttons the same background color (CSS) as the background color on my CSS template. However, for some reason, the colors don't look the same on mac and a pc. The background on the menu buttons that I created (.png) match the css template div background on a mac. But, when the site displays on a pc, the menu background color from the css template is darker than the .png background color, even though the color code is the exact same. On a mac, the .png background color matches the css div template color exactly. Anyone know what is going on or how to fix?
    I appreciate any assistance!

    Are both monitors calibrated?
    http://www.wikihow.com/Calibrate-Your-Monitor
    Windows renders images a tad darker.  To compensate, use Gamma Correction in Photoshop.
    http://www.photoshopsupport.com/tutorials/cb/gamma.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • Itunes 10.5.2 freeze when starts on windows 7 home premium 64 bit

    I've uninstalled, restarted then installed again the 64 bit version of Itunes and it keeps freezing even in safe mode, there is no way that I can sync my iPod touch 4g to my computer. Is there any other .exe file that I could install to make itunes w

  • Portal export - page not found on view log shell script download

    We are currently developing with Portal Version: 9.0.2.2.14A on a Solaris box and I am having difficulty exporting to my production servers. I am following the directions in the Metalink document titled "Exporting/Importing in Oracle Portal 9.0.X" (D

  • Bug on dads/schema mapping in oracle 11g

    This is a very annoyng problem i had with the new 11g version. i have a lot of users in the db, they are all copies of a master schema but they are mapped differently in dads.conf example: <Location /sam> PlsqlDatabaseUsername wsam <Location /jo> Pls

  • Email - too many recipients

    Each month I email out our Parish Newsletter to about 120 addressees.  This month, for the first time, it failed to deliver, returning an error message saying that I am exceeding the temporary limit of the server and that I have too many recipients. 

  • Free song not refreshing

    I have redeemed a coke code and bought a track off the itunes store, but once it's bought the "1 song" displayed does not indicate that I have no more free songs to redeem, it just keeps saying 1 song. This is all fine and dandy until I try actually