IE doesn't show my body background

This is a very strange problem. I feel that the different
aspects of this mistake are related, though. IE does not display my
body background or recognize some of my links as working links.
(except for the briefest of moment as it is loading the page.) The
code for the background and the links are identical in other site
pages, but this phenomenon only occurs in IE on the index page.
What on Earth causes that? I do not have the entire site remotely
hosted, yet, but you can see some of my problems at
www.eversnug.com/holmeschiropractic You'll notice that only the
landing page (index.html) manifests the issues. Both drtimbio.html
and pageerror.php have the expected background. I really appreciate
your help! If you need more information I will happily supply it.
Also, I can easily post more of the website if you need a larger
picture. Thanks in advance!

At 487Kb, I think that great big BG image should be ditched.
In a way, IE
is doing you and your site visitors a favor by not loading
it.
http://www.websiteoptimization.com/services/analyze/wso.php
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"Aaron RH" <[email protected]> wrote in
message
news:[email protected]...
> Thanks, Walt. Thanks Nancy.
>
> Nancy, I will take your advice and clean up my layout
for those who wish
to
> increase the size of text. I don't know why folks who
need larger text
don't
> either get a bigger monitor or switch to Opera. My page
retains ALL of
its
> absolute positioned layout in Opera! Actually, Firefox
(my favorite
browser)
> is the only one that is a COMPLETE disaster when the
font size is
increased.
> That makes me sad.
>
> For now, though, I did change my background so that if
the background
image
> does not load properly, (which it is STILL not doing) I
will at least
still
> have a similar background color. I incorporated the
pngfix.js file, also.
I
> am happy to say that the blue background is visible,
but, sadly the
background
> image is not. Most importantly, though, the same problem
(I believe) is
> preventing my "get directions" links from being
accessed.
>
> Walt, thanks for turning me on to the validator website.
Awesome tool!
It
> taught me that some of the things that I thought were
right, work even
though
> they are not actually right. I fixed all that I could.
There are only 4
> errors left. The website says 65, but you'll notice that
it only sites
lines
> 119, 120, 121, and 184. Looking at these one at a time
you'll see that
119 is
> a long hyperlink to Google Maps, 120 is to Yahoo Maps,
and 121 is to
Mapquest.
> Incidentally these are the links that do not work in IE,
but I believe
that
> these "errors is not actually the cause of all of my
woes, because the
> background and the "request appointment" fields below
ALSO do not work
even
> though they are "error free." Finally, line 184 is not
my coding, it is a
> tracking script that Yahoo tacks onto the end of all
files they host. I
can't
> control this line, and I believe it is also not the
culprit, because the
same
> errors occur while I test locally. (read: Yahoo
script-free.)
>
> You both have been so helpful, I can only hope that you
might both feel
> disposed to continue helping me shake out this problem.
>
> Again, many thanks.
>

Similar Messages

  • I-beam (text) cursor doesn't show on white backgrounds

    The I-beam cursor (for text editing) doesn't invert on white backgrounds, which are common in all apps. Hence, it is invisible. This occurs in the following apps:
    *MS Office 2004 (Word)*
    FINDER (when you edit the name of a file or folder)
    iTunes 7 (in any field you edit)
    Runtime Révolution 2.9 (an IDE dev app)
    *Adobe Illustrator CS3 (using the Text Tool)*
    *Quark XPress (using the Text Tool) Version 6.51 up to 8.1*
    BBEdid (v 8.x)
    Google Earth
    Toast 8
    Vuescan
    Firefox (2.0.0.13)
    The problem occured already under 10.5 Leopard, and is still a nuisance (read: not fixed) under 10.6 Snow Leopard
    Anybody have a solution of how to let this cursor invert again as should be? Or hack some system file to make is permanently black?

    i have tried this new charset combination specifically for iphone and i m waiting for response from sweden alliance.....i hope this works fine as iso works great for 8-bit characters.
    would like to have your thoughts though.
    $headers .= "Content-Type:text/plain; charset=\"iso-8859-1\"\n  format=flowed Content-Transfer-Encoding: quoted-printable";

  • SQL developer 3.1 in schema browser doesn't show package body

    Hi,
    When i search a package with schema browser, i can't see the package body of other owner, the menu "edit body" is disabled.
    My user as select any dictionary et select_catalog_role
    When i connect with a DBA's user, i can see all.
    I'am on windows with sqldev 3.1
    Thanks

    Hi erifet,
    This one seems to go back and forth. It was originally fixed in Schema Browser for 3.0. The "Edit Body" was greyed out, but an "Open Body" icon in the code editor toolbar for Package Spec was enabled. Here is the forum reference:
    30EA1 package bodies missing in schema browser still not fixed
    In 3.1, both "Edit Body" and "Open Body" are greyed out, and that applies both to Schema Browser and Connection Navigator for Other Users packages, so at least 3.1 is consistent. The difference between the Browser and the Navigator is Schema Browser has no option to display a Package Body type (must go through Package Spec type), while the Connection Navigator displays a Package Body node type in the tree beneath the Spec node. In the forum thread AM references, Vadim explains what 3.1 does: it uses the ALL_OBJECTS view, which apparently does not include package bodies. Off-hand I'm not sure why it does not include them, and the following link doesn't shed any light:
    http://docs.oracle.com/cd/B19306_01/server.102/b14237/statviews_1001.htm
    Adding the execute privilege on the package does not help either. At least you have the workaround of using the Connection navigator to view the package body metadata (code) of Other Users if you have been granted either SELECT_CATALOG_ROLE or SELECT ANY DICTIONARY. As for returning to the 3.0 Schema Browser behavior, perhaps Vadim will notice your post and have some explanation as to why or why not that may be possible.
    Regards,
    Gary
    SQL Developer Team

  • Background image in extended awt.Button doesn't show.

    Hi all
    I have an applet that has only an awt.Button visible on the page. Because of layout requirements I need to style that button with a background image. I have extended the java.awt.Button like this:
         class ImageButton extends Button {
              public void paint(Graphics g) {
                   super.paint(g);
                   g.drawImage(getImage(getDocumentBase(), "../img/loadSertificate.jpg"),
                             0, 0, null);
         }and use the extended:
         public void init() {
              mSignButton = new ImageButton();
              mSignButton.setLocation(0, 0);
              Dimension appletSize = this.getSize();
              mSignButton.setSize(appletSize);
              mSignButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        signSelectedFile();
              this.setLayout(null);
              this.add(mSignButton);
         }Now everiting is ok but when the applet is loaded the background image doesn't show and only a plain gray button is visible. The interesting part is that the image does show after I click somewhere in the browser's window and later on it's always visible as expected.
    Below is part from the log from the java console:
    basic: Applet started
    basic: Told clients applet is started
    Loaded image: http://ip:8080/UserManagement/img/loadSertificate.jpg
    network: Cache entry found [url: http://ip:8080/UserManagement/img/loadSertificate.jpg, version: null]
    network: Connecting http://ip:8080/UserManagement/img/loadSertificate.jpg with proxy=DIRECT
    network: Connecting http://ip:8080/UserManagement/img/loadSertificate.jpg with cookie "JSESSIONID=8A0936441BDA3215A10D9798742C4685"
    network: CleanupThread used 39850 us
    network: ResponseCode for http://ip:8080/UserManagement/img/loadSertificate.jpg : 304
    network: Encoding for http://ip:8080/UserManagement/img/loadSertificate.jpg : null
    network: Disconnect connection to http://ip:8080/UserManagement/img/loadSertificate.jpg
    Loaded image: http://ip:8080/UserManagement/img/loadSertificate.jpgAny suggestions how to fix this issue?!
    Edited by: factor5 on Nov 12, 2009 1:27 AM
    Edited by: factor5 on Nov 12, 2009 1:28 AM

    xmm sry but this was a forgotten repaint() :
              public void paint(Graphics g) {
                   // call super's paint method
                   super.paint(g);
                   g.drawImage(getImage(getDocumentBase(), APPLET_BUTTON_IMAGE_URL),
                             0, 0, null);
                   repaint();
              }Now it seems to work fine.
    Edited by: factor5 on Nov 12, 2009 1:44 AM

  • Desktop background doesn't show up

    I have a new Mini with 2GHz Core 2 Due, 2G RAM, and 320G HD. I use it as a headless (no keyboard, mouse, or monitor) music server running iTunes. I control it through VNC client (I tried both JollysFastVNC and Chicken of the VNC). Screen resolution is set at 1024x768. The problem is that the Desktop background picture never showed in the VNC client window, no matter what picture I chose. More importantly, Cover Flow in iTunes doesn't show either; the top half of the Cover Flow window is always blank but the bottom half works fine. List and Grid view work without problem, however.
    I really don't know what is the right forum to post this so I just start here. Does anyone have any idea on the cause and how to fix it?
    Thanks in advance for all the helps.

    Hmm, dunno what to tell you then. I've got an older Mini running headless and have controlled it with Chicken of the VNC and with Leopard's screen sharing. Both work fine (though I've never tried iTunes' cover flow with it... it's not a media server, it's being run as a calendar and FileMaker server). So I suspect you may have some odd, subtle system problem.

  • 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

  • Package Body in the tree doesn't show all procedures

    I am using Sql Developer 1.0.0.14.67 on Win XP Professional,
    DB servers Oracle 9i on both Linux Red HAt and Win XP Professional
    I have troubles with one of packages - in the tree under Package Body SQL Developer doesn't show all procedures of this package body.
    On the right panel all package body source is shown, but in the tree under Package Body it shows names of only procedures up to certain line in the source code - up to line where first Private (not included in Package Spec) procedure code starts.
    BUT, there are more Public procedures in package body below this Private procedure - and all of procedures below first private are not included in the tree under Package Body

    I find this quite annoying. I cannot use the navigation panel on the left to find the location of all functions and procedures in the package body. The 'missing' procedures are listed under the package spec, and double clicking on them takes me to the spec and not the body.
    I'm running v1.2.1.32.13. Is this a know issue and is there a fix planned?

  • CS4 background-image doesn't show in browser

    ok...I have cs4...
    the CSS is:
    body {
        background-image: url(/Assets/qlogoBKGlt.gif);
        background-repeat: no-repeat;
        background-color: #fff;
    IT SHOWS UP in the DESIGN window of DW.  It won't show up in Firefox or Safari...most up-to-date versions.
    The line of code in the html file is:
    <body>
    The header code;
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link rel="stylesheet" href="styles/style.css" type="text/css" />
    <link rel="shortcut icon" href="favicon.ico" />
    <link rel="icon" href="favicon.gif" type="image/gif" / >
    * Proof that the background image is there:
    http://www.solterrasolarcells.com/staging/Assets/qlogoBKGlt.gif
    * THE HTML page that should be displaying this:
    http://www.solterrasolarcells.com/staging/index.html
    * The CSS STYLE SHEET:
    http://www.solterrasolarcells.com/staging/styles/style.css
    Can someone tell me what I am doing wrong?
    Thanks,  -bill

    The path in the CSS is wrong.
    You're thinking that the index.html file is in the root directory of this beta site hence the root relative reference in the CSS.
    However, as far as the server is concerned, the root directory (where the index file is located) of this beta site is in a subfolder called "staging".
    http://www.solterrasolarcells.com/staging/index.html
    The CSS in the body selector for the background is pointing to /Assets/qlogoBKGlt.gif.
    The full address of that path is http://www.solterrasolarcells.com/Assets/qlogoBKGlt.gif but the Assets folder does not exist at root level on the server, hence no image appears.
    So for a root-relative path, you need to prefix the CSS with the "staging" folder
    i.e.
    body {
        background-image: url(/staging/Assets/qlogoBKGlt.gif);
        background-repeat: no-repeat;
        background-color: #fff;
    or for a document-relative path from the "styles" folder where the CSS file is located, go up a level:
    body {
        background-image: url(../Assets/qlogoBKGlt.gif);
        background-repeat: no-repeat;
        background-color: #fff;
    When the site goes live, the "staging" folder will presumably disappear (all files will come up a level) and therefore any root relative links will have to be altered to reflect that.

  • Body Background Not Showing in Browser

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    <title>Community United Methodist Church Web
    Site</title>
    <link href="/site_styles.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <div id="header_container">
    <div id="header">
    <div id="logo">
    <div id="header_text">
    <h1>Community United Methodist Church Coeur d' Alene,
    Idaho</h1>
    </div>
    <div id="navigation">Content for
    id"navigation"GoesHere</div>
    </div>
    </div>
    </div>
    </body>
    </html>
    @charset "UTF-8";
    /* CSS Document */
    body {
    background-color: #FF3333;
    margin: 0px;
    padding: 0px;
    #header_container {
    background-color: #FF3333;
    width: 100%;
    #header {
    margin: auto;
    width: 760px;
    #logo {
    background-image: url(/images/logo.jpg);
    background-repeat: no-repeat;
    margin: 0px;
    padding: 0px;
    width: 760px;
    height: 143px;
    #header_text h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 120%;
    color: #FFFFFF;
    clear: left;
    float: right;
    width: 350px;
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 5px;
    padding-bottom: 0px;
    padding-left: 0px;

    Right, without seeing the page as you suggested, which would
    tell us exactly
    what is causing it I was making a best guess at what the OP
    might be
    doing/seeing.
    Regards,
    Trent Pastrana
    www.fourlevel.com
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > If the OP meant that on PREVIEW (F12) the background
    color is not seen
    > *and* they do not have temp files enabled in their
    PREFERENCES settings
    > for preview in browser, then you are exactly correct.
    That would do it.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "T. Pastrana" <[email protected]> wrote in message
    > news:[email protected]...
    >> Could be that your stylesheet link path is relative
    to the site root
    >> rather than the document?
    >>
    >> <link href="/site_styles.css" rel="stylesheet"
    type="text/css" />
    >>
    >> Other than that we would need to see the actual page
    in its entirety.
    >>
    >> --
    >> Regards,
    >> Trent Pastrana
    >> www.fourlevel.com
    >> --------------------
    >>
    >>
    >> "Manic Mama" <[email protected]>
    wrote in message
    >> news:[email protected]...
    >>> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    >>> "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    >>> <html xmlns="
    http://www.w3.org/1999/xhtml">
    >>> <head>
    >>> <meta http-equiv="Content-Type"
    content="text/html; charset=UTF-8" />
    >>> <title>Community United Methodist Church
    Web Site</title>
    >>> <link href="/site_styles.css"
    rel="stylesheet" type="text/css" />
    >>> </head>
    >>>
    >>> <body>
    >>> <div id="header_container">
    >>> <div id="header">
    >>> <div id="logo">
    >>> <div id="header_text">
    >>> <h1>Community United Methodist Church
    Coeur d' Alene, Idaho</h1>
    >>> </div>
    >>> <div id="navigation">Content for
    id"navigation"GoesHere</div>
    >>> </div>
    >>> </div>
    >>> </div>
    >>> </body>
    >>> </html>
    >>>
    >>>
    >>> @charset "UTF-8";
    >>> /* CSS Document */
    >>>
    >>> body {
    >>> background-color: #FF3333;
    >>> margin: 0px;
    >>> padding: 0px;
    >>> }
    >>> #header_container {
    >>> background-color: #FF3333;
    >>> width: 100%;
    >>> }
    >>> #header {
    >>> margin: auto;
    >>> width: 760px;
    >>> }
    >>> #logo {
    >>> background-image: url(/images/logo.jpg);
    >>> background-repeat: no-repeat;
    >>> margin: 0px;
    >>> padding: 0px;
    >>> width: 760px;
    >>> height: 143px;
    >>> }
    >>> #header_text h1 {
    >>> font-family: Arial, Helvetica, sans-serif;
    >>> font-size: 120%;
    >>> color: #FFFFFF;
    >>> clear: left;
    >>> float: right;
    >>> width: 350px;
    >>> margin-top: 40px;
    >>> margin-right: 0px;
    >>> margin-bottom: 0px;
    >>> margin-left: 0px;
    >>> padding-top: 0px;
    >>> padding-right: 5px;
    >>> padding-bottom: 0px;
    >>> padding-left: 0px;
    >>> }
    >>>
    >>>
    >>>
    >>
    >>
    >

  • How do I keep the body background-image centered?

    I have a body background-image that does not fill up the
    entire window on the tops and bottoms of most monitors (it
    strectches to the left and right just fine) and so I would like to
    have it centered vertically with equal amounts of the
    background-color #ECE5C8.
    I assumed using background-position: 50% 50% would do the
    trick and it does until switching to full screen mode and all the
    content jumps upwards and messes up the whole site layout (IE
    only-in friefox, the background-image still doesn't center) so
    instead I have the background-position set to: 50% 0%.
    Thanks a million to anyone who can help me get it centered, I
    know there has to be an easy fix but I sure can't figure it out!
    The site can be found here:
    http://www.lightspacewebdesign.com/sacredsolas

    There would be only two ways to make this layout 'work'.
    1. Just make everything on that page a graphic. Then there is
    no
    possibility that resizing the text in the browser will blow
    the layout.
    This is a very bad idea for obvious reasons.
    2. Have the text containing 'graphical box' built in pieces
    so that as the
    text expands, it can cause the box to expand as well. The
    easiest way to do
    this is with a top a middle and a bottom image of the box,
    using each as the
    background image of three stacked containers. Place the text
    in the middle
    container and as it expands, it will tile the middle
    background image
    vertically to give the impression of the box expanding. This
    approach
    doesn't lend itself to your background image, since there is
    no way to tile
    the background image to fill the newly created space.
    Beyond that, I think you are a dead duck. The problem is not
    that this is
    what you were given to work with - it's that you didn't
    understand how
    unusable the design was when you accepted it. I think your
    best option now
    is to go back to the designer and explain to them how this
    lovely layout
    only works well in print, and not on the web. Show them how
    it fails.
    Solicit suggestions from them for how to make it work in a
    medium where
    there is no way to control the size of the text.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "afriendofcheese" <[email protected]> wrote
    in message
    news:[email protected]...
    > By "a rigid layout scheme that cannot allow flexibility"
    I assume you mean
    > that
    > everything shouldn't be bound inside the position of the
    background-image,
    > but
    > this is what the designer and client gave me to work
    with.and so I have to
    > make
    > due.
    >
    > With that in mind, I hope someone out there can help me
    out with this!
    >

  • Firefox doesn't show headers on websites or mail options such as fonts, etc

    Firefox is the only browser that I'm having these problems with. They are as follows:
    In the compose e-mail block of my yahoo, it doesn't show the options for fonts, size of fonts, backgrounds, etc. It also won't let me change the color of the fonts. It just shows blank boxes. Not only can't I change things in individual e-mails that I compose, I can't change my e-mail options.
    In the customize backgrounds and colors for my yahoo page, it doesn't let me change colors or themes.
    In websites, it doesn't show the headers of the website, including name of website and selections. It's blank. The body of the website shows up. Just not the header.
    Is there a way restore Firefox to it's original state? If so, how do I do this? Or do I need to uninstall it and reinstall it? I didn't do this when I first started using Firefox.

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Windows Accessibility settings.
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • Report works fine in VS2010 but simply doesn't show when published

    Problem:
    Crystal Report works fine in VS 2010 but doesn't show when published to web-server, there is no error, it simply doesn't show.
    Background:
    Installed VS2010 on a freshly installed and fully updated (.net 4.0 is included in the updates) windows server 2003 box with production release Crystal Report 2010. Nothing else is on the server.  IIS 6 is running.  My web-server and VS2010 is on the same box.
    I went ahead and created a new asp.net 4.0 web project called webapplication1. Thereafter, i put a few controls (text-boxes, list-boxes and so on)  on the default.aspx page. Then i created a report.aspx page. This page will have the crystal report viewer on it. I went ahead and set the report up without much hassle (got how-to's from the internet).  I successfully tested my web app with the built-in testing server, the beautiful crystal report presented exactly what i asked it to. There was one recurring "Sys.Application is null or not an object" hiccup that occured every time during testing when i navigated from the default.aspx page to the report.aspx page (the page the report is on). Clicking ignore or continue  on the dialogue box that comes up because of the hiccup will allow testing to continue.  Here's a screen-shot of this recurring hiccup.
    http://i440.photobucket.com/albums/qq122/ricom_19/Testing-Error.jpg
    As i've shown, testing went great, except for the hiccup. I now moved to setup a publish profile. Since my web-server and VS2010 is on the same box this seemed relatively straight forward. All the files went over except the report, i.e. crystalreport1.rpt  file. I solved this by  setting the build action to 'Content' in the CrystalReport1.rpt properties. I did a republish. Now i have all my files, see screenshot: [http://i440.photobucket.com/albums/qq122/ricom_19/Application-Home-Directory.jpg], on the web-server.
    I proceeded to try to browse to my app from another computer on my network. This was successful until i tried to navigate to the report.aspx page that the crystal report is on. The the report.aspx page loaded but the crystal report was simply not on it. No errors, not even the hiccup from testing occured. Its as if the crystal report viewer was never on the page to begin with. Only when i right clicked on the page and 'view source'  did i see some remnants of the crystal report viewer.
    Here is the Report.aspx page when tested in VS2010:
    [http://i440.photobucket.com/albums/qq122/ricom_19/successful-Test.jpg|http://i440.photobucket.com/albums/qq122/ricom_19/successful-Test.jpg]
    Here is the Report.aspx page when published to the web-server and browsed to from another computer on the network:
    [http://i440.photobucket.com/albums/qq122/ricom_19/Reportviewer-Disappear.jpg|http://i440.photobucket.com/albums/qq122/ricom_19/Reportviewer-Disappear.jpg]
    Details of adding report to my web app:
    1) Populate my dataset then write the XML schema, reportschema.xml
    2) Added the crystal Report to the project then used the wizard to navigate to the reportschema.xml. Of course i had to create new connection in Database expert. see screen-shot:
    [http://i440.photobucket.com/albums/qq122/ricom_19/CR-Database-Expert.jpg|http://i440.photobucket.com/albums/qq122/ricom_19/CR-Database-Expert.jpg]
    3) I formatted the report the way i wanted it
    4) Added the Crystal report viewer on the Report.aspx page
    5) In the code-behind of the Report.aspx page i bound the viewer to a report document that is loaded with CrystalReport1.rpt file
    see screenshot: [http://i440.photobucket.com/albums/qq122/ricom_19/Report-Page-Code-behind.jpg]
    That's it.  As mentioned, it tested fine in VS2010 but the viewer doesn't show when i publish to the webserver. I wrote a crystal report in .net about 8 years ago. Things have changed soooo much since then.
    I am wondering if its a license issue? Was also wondering if it had anything to do the testing hiccup, even though research is suggestion the two are unrelated.
    I've described my actions as best as i could (without getting into ridiculous detail) and have included screen-shots of relevant stages of the process. Have a look and tell me your thoughts. Thanks.

    The "Sys.Application is null or not an object" issue is known, submitted for a resolution and documented in KB #1528503. Unfortunately the KB search has been down the last couple of days...
    However, the issue is limited to compile time and does not affect a completed application.
    Re. the viewer missing. Sounds like the viewer directory did not get created or configure correctly. Before I get to that. You mention:
    "I proceeded to try to browse to my app from another computer on my network."
    This bring up the question: If you run the app right on the app server. e.g.; not a client computer, does the viewer and report come up? Is this issue isolated to client computers on the network?
    I suspect that the issue exists irrespective of which computer you try to see the report from - but that is an assumption. If the assumption is correct, see [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a] article on configuring the viewer. The article does not have CR4VS2010 documented, but you should be able to guide your self using the article. I think the pattern will be obvious.
    Ludek

  • URGENT Trying to wipe and reinstall Leopard 10.5 on my 2008 imac8,1 from the disk but my hard drive doesn't show up

    So to give a little big of a background on my computer.  I got it January 2009 as a graduation gift, because I was going to get a degree in Graphic Design and Animation.  I only worked on it [mostly brousing the web, and itunes]  for about 6 months because I was taking all of my general courses for college.  I then met my boyfriend [late 2009] and moved in with him, my boyfriend has a macbook so I left my mac at my parents house.  I was only Using it every now and then and it would be idle/ or shut off the rest of the time. 
    Fast forward to fall 2011.  Me and my boyfriend live in a condo so I brought my computer over because I am now taking graphic design courses and need my computer.  I installed a free 30 day trial of adobe cs5.5.  It made my computer kind of slow and it froze alot even though I still have over 250gb's of memory in it.  After the trial ended I kind of stoped using my computer again,  rather installing the free trials of cs5.5 on my mom and my boyfriends macs until I had enought money saved up to buy it.
    Here's where it gets tricky.
    So now its March 2012 and I tried uninstalling the trial of cs5.5 on my computer since it was just taking up un needed space.  I had to uninstall all of the programs one at a time other wise it would freeze up.  I have had to hold the power button down to get it to turn off because i couldn't even move the mouse even after waiting a while.  Anyhow I get to the last program and it keeps freezing, I tried shutting down my computer via<apple< shut down. But when I start it up again I got a file with a question mark flashing on my screen.  So I looked up how to fix that and had to locate where to start up [I selected my hard drive] then I was able to get on to my computer.      
    So then I go to disk utilitys and do a repair on my internal hard drive to fix if there were any messed up files. After the files are repaired I figure I'll restart it and let everything get up to date.  When I do I get the gray screen with the apple and the spinning wheel.  This happens OVER and OVER.  I tried soft reseting it, manually turning off the computer, you name it.  But it still keeps happening.  So I figure I'll just wipe it clean and reinstall the whole thing. [I have it backed up on an external drive]
    I try to reinstall leopard 10.5 from the disk that came with my computer, all goes well until I gets to the 3rd screen where you select where to save it to, my hard drive doesn't show up.  But if I connect my external hard drive it shows up right away.  I try seeing if it pops up on disk utility, and it doesn't show up there either. 
    Is it possible that my hard drive is shot?  I haven't really used my computer that much.  Its pretty much sat at my parents house for 2 of the 3 years I've had it.  So its not like I used it a whole lot. 
    Help! I'm a college student who needs her mac now more than ever for my design classes!

    The battery alone is a $5 to $15 part.  Hard drives vary in cost, and depending on the iMac, they may or may not be able to install a third party hard drive, or one resold through Apple.    The resold through Apple drives tend to cost more.  This article discusses the varying successes of third party drives on iMacs:
    http://blog.macsales.com/10146-apple-further-restricts-upgrade-options-on-new-im acs 
    The labor costs depend on the store as well as the time to get the parts in stock.    Call around.

  • Dreamweaver design view doesn't show the bottom part of a long div

    Hi!
    I'm doing a very graphics oriented site, which basically requires me to use a large jpg as a background image and placing text areas against this background     using absolute positioning.
    My problem is that Dreamweaver doesn't show me the bottom part of my content div's background, but renders it as black instead. This obviously makes placing the text areas correctly difficult, since I can't see them against the background.
    If I turn on Live view, then Dreamweaver shows the bottom part correctly. But in live view I can't use rulers and guides (or can I?).
    Is there any setting that I can change so that Dreamweaver is showing me the whole div bg in all situations? One possible cause of this problem might be also that I'm using overflow:scroll on my content. Could that be why Dreamweaver hides the bottom part and can I change that behaviour?
    Any ideas are welcome!

    If we can see the page in question we could probably do this a lot easier.  But all you need to do in your CSS for the background is:
    background: url(pathto/image.jpg) fixed no-repeat;
    If you are trying to absolutely position something in the middle you will be unable to do this without the assistance of javascript to determine the useable pixels on the end-users computer.  Horiztonally is not the issue, but rather vertically because you can achieve horizontal centering by defining a width and setting the margin: 0 auto; in your CSS.
    As far as working with overflows, if there is too much content in them that you believe the overflow will be necessary (assuming min/max-widths are set) you could consider including the content from another document or store it in a database and query the information out.  Then it would make it easier for the client to update the content on their own in the future.

  • French characters in run time parameter values doesn't show up in emails

    We have a custom workflow with configurations to send email when a request is assigned to a person and also to send email on request rejections.
    We are encountering following issues with respect to French characters that are available in the message body and message subject.
    Issue 1:Notifications are configured in Human Task (ApprovalTask.task) when a task is assigned. Since the message body contains French characters we have used ISO-8859-1 encodings to render the message properly to the user. The message body also has some run time content from the task payload.
    For e.g. &#192; titre de responsable fonctionnel, une demande d''approbation pour un acc&#232;s informatique vous est assign&#233;e.
    Acc&#232;s informatique demand&#233; : <%/task:task/task:payload/ns1:ObjectDetails/ns1:name%>
    In this case all static text values are rendered properly to the end user in his email. However the French characters in run time parameter values doesn't show up properly and has some weird characters.
    Issue 2: Unable to change the default subject shown in the approval task emails i.e. Notifications are configured in Human Task (ApprovalTask.task) when a task is assigned. By default it shows Action Required: Approval. How can this default value be changed?
    Issue 3: We have an Email Activity in Bpel process that follows a task rejection. The emailpayload is ISO-8859-1 encoded and works for the message body. However the email subject shows up with ISO-8859-1 encodings itself and doesn't convert to proper string in the end user's email. Is there any specific setting required for french characters in subject?

    Hi Kulwinder,
    Thanks for your reply.
    In fact I do, I've follewed the "Using SAP HANA Variables with SAP BusinessObjects BI4.0" guide.
    Please note, when I use a fix value to parameter is working fine, for example:
    SELECT *
    FROM "_SYS_BIC"."prueba-concepto/CV_TEST_VAR_II" ('PLACEHOLDER' = ('$$FECHA$$','20130530'))
    But when I set prompt of the DataFoundation parameter I get and error, this is my sentence:
    SELECT *
    FROM "_SYS_BIC"."prueba-concepto/CV_TEST_VAR_II" ('PLACEHOLDER' = ('$$FECHA$$',@Prompt(FECHA)))
    To me is very curious that I can't enter a value in the DataPreview in Hana Studio, because is not requested, even when the input parameter have been set as mandatory
    Have you idea of what could be happening?

Maybe you are looking for

  • Allocate asset balance to other assets - what's the best way

    Hi there, I need to allocate the balance of an asset to multiple assets but this allocation should only impact a single depreciation area.  We have 3 depreciation areas, so the other 2 shouldn't get the allotment.  What is the better way to do this?

  • MRP Requirements due to sales order rejected

    Hi, I am using the strategy Assembly to order in an environment Make to Order. When the sales department fill out the field reason for rejection with any value the system deleted the production order even it has the status release or has notification

  • Change in purchase order

    Dear Sap gurus,                          I want make changes in a P.O. i.e the p.o. has been already processed. I want to add another material to the same p.o& I have to make changes in the quantity. kindly suggest me how to do these changes..Thankyo

  • Convert gallery to slideshow

    Hi I've got a user-controlled gallery on a webpage which is working fine at the moment: Aztec site The client now wants it to be a slideshow however. Rather than start from scratch, is there any way to keep it as it is, but make it act as if the user

  • W701 SSD won't start, intermittent problem

    I've had this problem since the computer was still on warranty, but it was so infrequent then that it wasn't likely to happen while tech was looking at the computer. It seemed pointless to complain or try to get it fixed. Lately it has been getting w