Applet-Panel, background color and size problem

I am writing an applet with simple form.
Form is having 3 rows and 2 cols (label and textfield). Each row I want to display in different color. So I created each row with 2 separate panel (one for label and one for text field - of which I set the backgroung color).
The total form is in one panel with grid layout (2 colmns).
My problems are
1)The space between label and text field (col width) can not be resized. I tried to use setSize but not giving any effect.
2)Another problem is when I am seting the background color, the textfield is also changing the color (textfield I want to white color only). This does not have any effect on Choice
3)The first label I wanted to use simple break but could not. I tried \n\t, \n, chr(13) + chr(10) etc but not getting any result so created separate panel.
My code goes here:
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class test1 extends Applet{
protected TextField refnoTextField=null, payerTextField=null, amtTextField=null;
protected Choice typeChoice;
public void init() {
     /* The mainPanel layouts components with BorderLayout manager
          which will hold form and button panel */
     Panel mainPanel = new Panel(new BorderLayout());
     Panel taxformPanel=new Panel(new GridLayout(3,2));
     Label l;
     //panel for tax ref no label
     Panel refnoLabelMainPanel = new Panel(new FlowLayout(FlowLayout.LEFT));
//here wanted to use simple line break but \n\t does not seems to work not even chr (10), chr(13)
//so created separate panel (Payment Voucher Or \n\t Reference no.
     Panel refnoLabelPanel = new Panel(new GridLayout(2,1));
     l = new Label("Payment Voucher Or");
l.setFont(new Font("Helvetica", Font.BOLD,10));
     refnoLabelPanel.add (l);
     l = new Label("Tax Reference No:");
l.setFont(new Font("Helvetica", Font.BOLD,10));
     refnoLabelPanel.add (l);
     refnoLabelMainPanel.add(refnoLabelPanel);
     refnoLabelMainPanel.setBackground(Color.blue);
     //panel for tax ref no text field
     Panel refnoTextFieldPanel = new Panel(new FlowLayout(FlowLayout.LEFT));
     refnoTextField = new TextField(20);
     refnoTextFieldPanel.add(refnoTextField);
     refnoTextFieldPanel.setBackground(Color.blue);
     //panel for tax type label
     Panel typeLabelPanel = new Panel(new FlowLayout(FlowLayout.LEFT));
     l = new Label("Tax Type:");
l.setFont(new Font("Helvetica", Font.BOLD,10));
     typeLabelPanel.add (l);
     typeLabelPanel.setBackground(Color.yellow);
     //panel for tax type choice
     Panel typeChoicePanel = new Panel(new FlowLayout(FlowLayout.LEFT));
     typeChoice = new Choice();
     typeChoice.add("Personal Tax");
     typeChoice.add("Income Tax");
     typeChoicePanel.add(typeChoice);
     typeChoicePanel.setBackground(Color.yellow);     
     //panel for tax payers name label
     Panel payerLabelPanel = new Panel(new FlowLayout(FlowLayout.LEFT));
     l = new Label("Tax Payer's Name:");
l.setFont(new Font("Helvetica", Font.BOLD,10));
     payerLabelPanel.add (l);
     payerLabelPanel.setBackground(Color.blue);
     //panel for tax payer field
     Panel payerTextFieldMainPanel = new Panel(new FlowLayout(FlowLayout.LEFT));
     Panel payerTextFieldPanel = new Panel(new GridLayout(2,1));
     payerTextField = new TextField(20);
     payerTextFieldPanel.add(payerTextField);
     l = new Label(" (as per NRIC or Passport)");
l.setFont(new Font("Helvetica", Font.BOLD,8));
     payerTextFieldPanel.add (l);
     payerTextFieldMainPanel.add(payerTextFieldPanel);
     payerTextFieldMainPanel.setBackground(Color.blue);
     taxformPanel.add(refnoLabelMainPanel);
     taxformPanel.add(refnoTextFieldPanel);
     taxformPanel.add(typeLabelPanel);
     taxformPanel.add(typeChoicePanel);
     taxformPanel.add(payerLabelPanel);
     taxformPanel.add(payerTextFieldMainPanel);
     /* buttonPanel to hold all buttons */
     Panel buttonPanel = new Panel();
     buttonPanel.setLayout(new FlowLayout(FlowLayout.CENTER));
     Button continueButton = new Button("Continue");
     continueButton.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
                    continueButtonAction();
     Button clearButton = new Button("Clear");
     clearButton.addActionListener(new ActionListener()     {
          public void actionPerformed(ActionEvent e)     {
               clearButtonAction();
     Button cancelButton = new Button("Cancel");
     cancelButton.addActionListener(new ActionListener()     {
          public void actionPerformed(ActionEvent e)     {
               cancelButtonAction();
     buttonPanel.add(continueButton);
     buttonPanel.add(clearButton);
     buttonPanel.add(cancelButton);
     mainPanel.add("Center", taxformPanel);
     mainPanel.add("South", buttonPanel);
     add(mainPanel);
} // public void init()     
public void continueButtonAction() {
     MessageDialog d=new MessageDialog("Confirm","Continue? ",true, 430, 150);
     System.out.println ("Continue Button Pressed");
}//continueButtonAction
public void clearButtonAction()     {
     System.out.println ("Reset Button Pressed");
}//clearButtonAction
public void cancelButtonAction()     {
     MessageDialog d=new MessageDialog("Confirm","Cancel Button ? ",true, 430, 150);
     System.out.println ("Cancel Button Pressed");
} // cancelButtonAction
} // TaxPaymentApplet3
Please help,
manisha

I do not want to go into detail, but there are some hints you can follow.
I am talking about AWT, not swing, you should decide which one you will use and don't mix the two of them.
If you want to run your applet in current browsers without requiring the java plugin, you should be aware, that most browsers support old versions of java and many convenient methods and classes are missing :-(
So
You can change the size of a label by putting it in a panel ( labelPanel ), whose layout is set to FlowLayout. Then you put in labelPanel another empty panel ( emptyPanel ), whose layout is set to null, and you set the width of the empty panel to whatever you want ( this is the gap between the label and the next component ), an the height to the least nonsero number possible, i.e. 1. Well, you can add to the labelPanel more components, if you wish. So, when you want a gap, use an empty panel with a fixed size.
You cannot use line break in a label. You should place more labels in a panel instead. I am not sure if the direction of FlowLayout can be set to vertical, but very probably it can. If so, that is your solution. If not - see what other layout managers you have available, but make sure your choice belongs to java.awt ! BorderLayout allows you to use up to three labels (=> 3 lines). And if nothing fits your needs, ... write a layout manager.
Well, hope I could help.

Similar Messages

  • Background color and float problems

    Hello all,
    I am having a problem with the background color and the left
    float for a navigation sidebar (also with the background color for
    the footer). The body color is set to gray, and the main page is
    centered with a white background. I set up the pages using mostly
    CSS, with a few tables where they seemed necessary. I set up the
    navigation side bar as a div with a green background and a left
    float. The footer is set up as a div with a green background. All
    text is aligned left.
    When I preview in Safari, everything looks as expected.
    In Firefox and IE5: The background color of the navigation
    sidebar has white showing up behind the type that are not links
    (e.g., mailing address and subheads). The div does not float all
    the way to the left edge of the page. The background color of the
    footer should be green but shows up as white. I validated the code
    in DW, and it reports no problems (at least, it checked out after I
    made a few corrections).
    I am not that concerned about the background color for the
    footer -- it is either all there (in Safari) or not there at all
    (in Firefox and IE). But I would like to see if I can make it show
    up. For the navigation sidebar, would putting it in a table cell
    make it work correctly in Firefox and IE?
    Regarding the left float issue for the nav sidebar IE5: At
    the top of the page, my logo banner (it's placed in a div) shifted
    to the right (in IE only). When I added a left float to the banner,
    the banner lines up fine with the rest of the page, but a white
    margin appears along the left side of the entire page.
    None of my pages are uploaded to a web host yet. This is my
    first website. I am working in DW8 on a Mac.
    Thanks in advance,
    Kathy (Daylilybud)

    Mista,
    Here is my home page based on the template I sent previously.
    Thanks in advance!
    Kathy (Daylilybud)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    <title>Loon Song Gardens: Home Page</title>
    <link href="externalcss/informationcss.css"
    rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    a {
    font-weight: bold;
    -->
    </style></head>
    <body>
    <div id="container">
    <div id="banner"><a name="topofpage"
    id="topofpage"></a><img
    src="graphics/thumbnailsheader/lsgheadergraphic_760x110.jpg" alt=""
    width="760" height="110" />
    <div id="heading"><img
    src="graphics/thumbnailsheader/hotcolorstrip760.jpg" alt=""
    width="760" height="76" /></div>
    <div id="navsidebar">
    <p class="navsidebarnormal">Loon Song Gardens,
    LLC<br />
    10910 109th Ave N<br />
    Champlin MN 55316<br />
    763.422.0015</p>
    <ul class="ulnavsidebar">
    <li class="ulnavsidebarli"><a
    href="../donotuse/indextest4.html">Homepage</a></li>
    <li class="ulnavsidebarli"><a
    href="about_loonsonggardens/aboutus.html">About
    Us</a></li>
    <li class="ulnavsidebarli"><a
    href="about_loonsonggardens/our_daylilies/aboutourintroductions.html">Our
    Introductions</a></li>
    <li class="ulnavsidebarli">Seedlings</li>
    <li class="ulnavsidebarli">Photo Gallery</li>
    <li class="ulnavsidebarli"><a
    href="pricelist2008/pricelist2008ab2.html">2008 Price
    List</a></li>
    <li class="ulnavsidebarli"><a
    href="pricelist2008/lsgorderform2008website.pdf">Order Form
    (PDF)</a></li>
    <li class="ulnavsidebarli"><a
    href="about_loonsonggardens/shippingandterms.html">Shipping and
    Terms</a></li>
    <li class="ulnavsidebarli"><a
    href="about_loonsonggardens/visitus.html">Visit
    Us</a></li>
    <li class="ulnavsidebarli"><a
    href="mailto:[email protected]">Email Us
    </a></li>
    </ul>
    <p> <span class="navsubheadbold">ABOUT
    DAYLILIES</span> </p>
    <ul class="ulnavsidebar">
    <li class="ulnavsidebarli"><a
    href="about_daylilies/howtoplant.html"
    class="ulnavsidebarli">How to Plant</a></li>
    <li class="ulnavsidebarli"><a
    href="about_daylilies/growingtips.html"
    class="ulnavsidebarli">Growing Tips</a></li>
    <li class="ulnavsidebarli"><a
    href="about_daylilies/howtodivideadaylily.html"
    class="ulnavsidebarli">How to Divide</a></li>
    <li class="ulnavsidebarli"><a
    href="about_daylilies/moreaboutdaylilies.html"
    class="ulnavsidebarli">More About Daylilies</a></li>
    </ul>
    <p> <span class="navsubheadbold">OTHER
    LINKS</span> </p>
    <ul class="ulnavsidebar">
    <li class="ulnavsidebarli"><a href="
    http://www.daylilies.org"
    class="ulnavsidebarli">American Hemerocallis <br />
    Society (AHS)</a></li>
    <li class="ulnavsidebarli"><a href="
    http://www.daylilies.org/ENews.html"
    class="ulnavsidebarli">AHS Daylily E-News <br />
    (FREE SUBSCRIPTION) </a></li>
    </ul>
    </div>
    <div id ="content">
    <h1>Welcome to Loon Song Gardens! </h1>
    <ul>
    <li class="contentli">We specialize in northern-hardy
    daylilies (<em>Hemerocallis</em>).</li>
    <li class="contentli">Our daylilies are field
    grown.</li>
    <li class="contentli">We offer competitive
    prices.</li>
    <li class="contentli">Loon Song Gardens, LLC, is a
    licensed and inspected nursery.</li>
    <li class="contentli">We are an American Hemerocallis
    Society Display Garden. </li>
    <li class="contentli">Visitors are welcome by
    appointment.</li>
    </ul>
    <p>Loon Song Gardens is a specialty daylily nursery
    and the home of Mike and Kathy Lamb in Champlin, Minnesota, USDA
    hardiness zone 4. We grow over 1,000 named daylily cultivars in a
    wide range of colors, sizes, and forms, from classics to cutting
    edge. If you are looking for northern-hardy daylilies, check with
    us! We will gladly share our growing experiences with you so you
    may have the best possible success.Kathy hybridizes daylilies and
    has introduced four daylily cultivars to date. For details, see
    <a
    href="about_daylilies/about_loonsonggardens/our_daylilies/ourintroductionsmain.html">Our
    Introductions </a> and <a
    href="about_daylilies/about_loonsonggardens/our_daylilies/seedlingsandfutures.html">Seedl ings.</a></p>
    <h2>Are you new to the world of daylilies? </h2>
    <p>Learn more about daylilies! Use the links in the
    left sidebar to find answers to your questions. Check back for
    updates. If you have questions, send us an email, and we will try
    to help.</p>
    <h2>To place your order</h2>
    <p class="contentp">Use our on-line <a
    href="about_daylilies/pricelist2008/pricelist2008v215ab.htm">2008
    Price List </a> to make your selections. We are a small
    nursery and quantities are limited, so it is best to confirm your
    order via email.</p>
    <p class="contentp">To place your order, print the
    <a
    href="about_daylilies/pricelist2008/lsgorderform2008website.pdf">Order
    Form (PDF)</a>, fill it in, enclose payment by check or money
    order (payable to Loon Song Gardens, LLC), and mail to:</p>
    <blockquote>
    <p class="contentp"> Loon Song Gardens<br />
    10910 109th Ave N <br />
    Champlin MN 55316</p>
    </blockquote>
    <p>We ship at least a double-fan size plant unless
    otherwise noted in our listings, we include a bonus for orders of
    at least $35, and we guarantee that our plants are true to
    name.</p>
    <h2>Visit Loon Song Gardens</h2>
    <p>Loon Song Gardens is an official American
    Hemerocallis Society (AHS) Daylily Display Garden, open by
    appointment. If you will be in the Minneapolis area and would like
    to stop by, please contact us to schedule a time. For details,
    click on <a
    href="about_daylilies/about_loonsonggardens/visitloonsonggardens.html">Visit
    Us</a>. </p>
    <h2>Join the American Hemerocallis Society
    (AHS)</h2>
    <p>The AHS website includes lots of great daylily
    information, so be sure to take a look. </p>
    <p>Join AHS today and take advantage of the voucher
    program! New AHS members receive a voucher good for at least $25.00
    toward daylilies from participating vendors (a minimum purchase may
    apply). To join AHS, go directly to <a href="
    http://www.daylilies.org/AHSmemb.html">AHS
    Membership</a>.</p>
    <p>Kathy is currently on the AHS Board of Directors as
    Chair of Publicity and Media Relations. She produces <em>AHS
    Daylily E-News,</em> an e-newsletter free for AHS members and
    non-members alike. To subscribe, click on <a href="
    http://www.daylilies.org/ENews.html">AHS
    Daylily E-News</a>. </p>
    </div>
    <div id="topofpage"><a href="#topofpage">Top of
    Page</a></div>
    </div>
    <div id="footer"><!-- #BeginLibraryItem
    "/Library/footer1.lbi" -->
    <p class="footer">&copy; 2008 Loon Song Gardens,
    LLC. All rights reserved. | Loon Song Gardens, LLC | 10910 109th
    Avenue North | Champlin MN 55316<br />
    <a href="mailto:[email protected]">Email
    us</a>| | 763.422.0015 | Fax 763.422.0131 | This page was
    last updated
    <!-- #BeginDate format:Am1 -->March 30, 2008<!--
    #EndDate -->
    </p>
    <!-- #EndLibraryItem --></div>
    </div>
    </body>
    </html>

  • Hover over image will change background color and size since IE8

    Hello,
    I have a problem that only occurs in IE8 without compability view.
    I have in CSS set all textlinks to change background color on hover.
    Now my sliced imageslinks also change background color and for a larger background area than the actual image.
    It filles out the area outside the sliced image.
    This hasnt happened before in any other versions of IE and it looks fine in Firefox.
    Please can some one help me !
    I have been searching net for hours.
    I tried to change the background color when hovering imagelinks. Maybe I did something wrong but it didnt help.
    BR,
    Peter

    Noone that can give me a clue?
    I have been trying to figure this out all day

  • I have lost the ability to change fonts,use color and size and when I try to write anyone,I cannot see my mailing list and there is no send button.

    A few months ago my ability to use different fonts, colors and sizes suddenly disappeared. These choices were always available when looking at my email and I used them regularly . No one I asked ever heard of such a thing happening. I left it alone until I found someone to help. Then, a few days ago, when I clicked "write" , two things happened. First, I could not forward, reply or even see my collected email addresses. Second, there was no longer a place that said "send". My email page filled the entire screen and when I scaled it down, there was still no way to see my list or to send. I am a novice when it comes to fixes and terms but, I have asked people who have some experience with PC's they were stumped. I contacted Fairpoint and they said it must be a Thunderbird problem. Most of the people I asked said they didn't know Thunderbird. One suggested that I reinstall T.bird but, said I also might lose everything on my PC. I would appreciate any help you can give. Thanks, Jim

    When you click Write and open the new message editor, press Alt to show the Menu Bar, then enable all the toolbars under View/Toolbars. Plus, press F9 to show the Contacts sidebar.

  • Default background color and Focuslistener disapair on table?

    When I imp. TableCellRenderer on my table the default background color and Focuslistener disapair. What can I do to get it back and still keep TableCellRenderer on my table? This is how my TableCellRenderer looks:
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int col) {
            JFormattedTextField beloeb = new JFormattedTextField();
            beloeb.setFormatterFactory(new DefaultFormatterFactory(new NumberFormatter()));
            beloeb.setBorder(null);
            beloeb.setHorizontalAlignment(JTextField.RIGHT);
            if (value != null) {
                if (value instanceof Double) {
                    Double val = (Double) value;
                    beloeb.setValue(val);
                    if (val.doubleValue() < 0) {
                        beloeb.setForeground(Color.RED);
            beloeb.setFont(new Font("Verdana",Font.PLAIN, 11));
            beloeb.setOpaque(true);
            return beloeb;
        }

    I'm sorry to say this is a terrible example of a renderer. The point of using a renderer is to reuse the same object over and over. You don't keep creating Objects every time a cell is renderered. In your example your are creating:
    a) JFormattedTextField
    b) NumberFormatter
    c) DefaultFormatterFactory
    d) Font.
    So you start by extending the DefaultTableCellRenderer. A JLabel is used to display the text. There is no need to use a JFormattedTextField. All you want to do is format the data. So in your constructor for the class you would create a NumberFormatter that can be reused to format your data. Then your code in the renderer would look something like:
    if (value instanceof Double)
        Double val = (Double)value;
        setText( formatter.format(val) );
        if (negative)
          setForeground(Color.RED)
        else
            setForeground(table.getForeground());
    }Here is a really simple [url http://forum.java.sun.com/thread.jsp?forum=57&thread=419688]example to get you started

  • I cannot see the background color and borders when exporting

    I created a 10 page document with a background color and borders around the images (I am usiong InDesign 5.5), when I export it to PDF I only see white pages with my images, what am I doing wrong?

    I suspected as much. [Paper] is the absence of ink -- it means don't put anything here and let the paper stock show through and in the PDF it is essentially transparent ( the PDF only shows a white background to keep you from seeing the insides of the monitor -- well not really, but Acrobat doesn't dispaly transparency with grid the way Photshop does). The ability to edit the swatch is a convenience to make it easier for you to visualize what your design will look like on colored stock.
    If you want a colored background you either need to print on colored stock, or you need to print the color in the background by creating a frame and filling it with the color of your choice. I doubt you will be printing on a dark brown, especially since there are areas of white in your design, and the only way you get white is by leaving the paper blank iin those areas, or using an opaque white ink, which is bothexpensive and not very practical in photos, especially over a dark color.

  • What can I use to create a photo banner/collage that is free formed. I'll need background colors and ability to place 5 or more pics in a horizontal row? Does adobe have a product i can use to create this?

    what can I use to create a photo banner/collage that is free formed. I'll need background colors and ability to place 5 or more pics in a horizontal row? Does adobe have a product i can use to create this? I'm not looking for templates when creating.
    thanks
    tracy

    You can select 5 (or more images) and place them by dragging in Adobe InDesign. After creating document go to File > Place, navigate to images and select them. In InDesign start dragging and press right arrow key couple of times then release mouse button. You can export file as PDF, JPG, PNG image from File > Export.

  • Firefox 5 not printing background (colors and images) despit it's selection in Page Setup. Previous version worked fine.

    I upgraded to FireFox 5, but it is not printing background (images and colors) for certain pages which previously printed fine with my earlier version. Print Preview DOES shows the background images, but when sent to printer or PDF, background images do not appear in the printed output.

    I wish it were that but a long time ago when I had a problem with the gadgets with iGoogle back 6 months ago thereabouts I was asked to disable it then and I did and I just went to re-check and it is still not enabled, however, it will not let me un-install it though.. It only gives me an option to enable or disable.. Any advice ? So I'm wondering if it is something else still or is there a problem with the avast still ?
    thanks again for your help. Mind you that this all started when blogger went down ..
    take care

  • Override Panel background color

    Hello
    I am using an Adobe theme (GraphiteGraphical). It is a little too dark for my Panel containers. I would like to adjust the background color.
    I am able to adjust the Application's background-Color in the CSS file like so:
    s|Application {
        padding-top: 10;
        padding-bottom: 10;
        padding-left: 10;
        padding-right: 10;
        vertical-gap: 4;
        background-color: #CCCCCC;
    I am unable to do this for my Panels. Why? And how can I accomplish this?
    I need my Panel backgrounds to be the same as the Application's. Right now they are way too dark. Help?

    Hello
    Thank you Subeesh!
    I have tried this already, it was already in my styles.css file. It did not work. Also, I am not using spark panels but MX panels. Ive tried both, no luck.
    I do not understand why only my Login screen changes background color when I change thr background color in the Application CSS tag, but nothing else does?
    It is like the theme is overriding everything that is not Application CSS specific?
    How can I modify the CSS definition for the Graphite theme? It's too dark and the end users are not happy. Help!
    this does not work, the theme overrides this:
    s|Panel
            backgroundColor:#CCCCCC;

  • How can I correct background color and graphics in Firefox?

    For some reason some background color images and fonts do not appear in Firefox. Other browsers are mostly fine. I've tried most common fixes to no avail. I'm running Windows 7 Ultimate.
    I've attached two screenshots. One is Firefox viewing Google. The other one may be relevant because I can't change the color of fonts in Word and other Office docs.
    Anyway, I'm stumped on the Firefox side. The browser has been uninstalled, re installed, and refreshed.

    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    *http://windows.microsoft.com/en-us/windows7/turn-on-high-contrast
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong

  • Textarea ...  background-color:transparent   causing problem in IE7

    hello;
    when I use <textarea style="background-color:transparent " > IE7 does not accept input ... other browsers work fine;
    is there a way to get a transparent background for a textarea such that the textarea functions correctly in IE7 ( I haven't tested it in IE8 )?
    thanks,
    Shannon

    What happens if you remove the background tag altogether?
    I do this with my overflow css for text boxes and it leaves them transparent (as in: showing the page background) in Firefox, Safari Opera and IE 5, 6, 7 and 8.

  • Table background colors and images

    This should be easy, but I am not seeing it. I have a few pages with existing tables, probably created in DW CS3. In DW CS4, I need to select a table inside a cell of another table and assign a solid color for the background. Currently, the larger table has a textured background image and it is also filling the background of the table inside it.
    I can easily select the smaller table, but I don't see the old familiar information bar where I'd assign a color to the entire table.
    Any help would be appreciated.
    M. Jackson

    Hi Nancy O,
    I started a long time ago with Adobe Page Mill, then had to move to GoLive, and later into DW.
    The appeal of Page Mill was the GUI, letting a non-programmer make web pages visually, and letting the program write the code for me. Each upgrade have moved farther from that concept in my opinion.
    I just want to add tables and if DW wants to apply CSS to them, then fine. Maybe I will have to learn to do it in CSS, but it is not high on my current list of priorities. I'd prefer to spend most of my learning time in Photoshop. For now, I have quite a few pages that just need some tweaking and I don't have the extra time to dig into this venture.
    Thanks for taking the time to try to counsel me.  A couple of my photographer friends have suggested looking into Site Grinder as a plug-in to Photoshop. As I read the reviews, the artist group think it is the greatest and the code writers say it is not great at writing code.
    For now, I installed DW CS3 and made a few changes I can live with. CSS some other day or some other way.
    Best regards,
    M. Jackson

  • Background Color and Pattern Style for SSRS textbox in Tablix/Matrix

    HI,
    I have a requirement where I need to highlight the textbox background by dotted pattern style along with the relevant color. It is straight forward in Excel (by choosing Format Cells -> Fill -> background color/Pattern Style etc.), however SSRS
    seems to provide color only without the pattern style. I tried to work around this by putting in a chart (data bar), which then allows to select the Pattern Style along with color, but the resulting text value is not crisp at all, value needs to
    be displayed as data bar label and also once exported to Excel the Cell value only comes out as image instead of actual value.
    Need to achieve the same with SSRS. If anybody has done similar, thanks in advance.

    Hi dthapa,
    According to your description, you want to set pattern style with color for your textbox in your report. You want to achieve the same effect in SSRS as the same thing you did in Excel. Right?
    In Reporting service, we can only fill the textbox with colors or background image. So for your requirement, we try this workaround: Set pattern with colors for a cell in an Excel file. Cut the cell as image. Import this image into SSRS and set it as background
    image for textbox.
    Reference:
    Text Boxes (Report Builder and SSRS)
    Textbox Properties - Format Tab (Visual Studio Report Designer)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
          

  • Changing the background color and image of CRM logon page

    Hi ;
    I want to change the background image and color, namely full style , I knew that the service "CRM_UI_START" of SICF under the section "error page" but there you can change a small image for header and footer area.
    At the same time , I looked at component "CRM_UI_FRAME" , I didnt find the right place to change the style of logon page.
    How can i insert an background image or change background color?
    Thanks

    Hi Maggie ;
    We use CRM 7.0 , I want to change the style of web logon page.
    Thanks
    Hi Tuncer,
    May I know your CRM release?
    Best regards,
    Maggie

  • Difference between Background Color and Wall color in Charts

    Dear Experts,
    Can anyone please explain me the difference between Wall Color and Background Color in Charts and how they behave?
    Regards
    Sam

    Hi
    You can cleary notice the use of Wall Color and Background Color in case of 3D Bar /3D Area/3D Line/3D Surface charts
    Wall color -> color of the Wall in case of 3D Bar /3D Area/3D Line/3D Surface chart.
    Background Color --> Chart Background Color
    Regards
    Ashwini

Maybe you are looking for

  • Cannot connect to smtp server

    hi, i have been using microsoft entourage for mac 2004 for almost a year now and have been receiving and sending email just fine until a few days ago. i checked with my ISP and they said that the problem is not with my e-mail address and to check wit

  • Wont let me open my pdfs

    I paid for this service and then a free trial came up but i,d already paid for it? now the free trial is finished it wont let me open up any of my pdfs?

  • Several Return orders with Ref. to one MTO Billing Document.

    Hi, I am doing RE with ref. to MTO Billing Document but i am able to issue "N" number of credit memo's with ref. to same MTO. Please tell me the Controll, that stops raising the second RE order with ref. to same MTO. I checked copy controls completio

  • Manage SCUP published updates under WSUS and SCCM.

    After completion of SCUP environment, I published Adobe Flash player update successfully. Some where in blogs it was mentioned that published updates are under 'software library' but under SCCM2007 SP2 I am able to see 'software update' and there are

  • M & N keys--technical malfunction??

    After keeping my phone on the charger all night, my phone began to function very slow this morning. After taking the battery out and in a couple times, the phone would no longer turn on. Now that the phone has turned on, it appears that the "n" and "