CSS divs running into each other 4x3 screens but not widescreen

I am trying to develop a site:
http://www.poweredupgamers.com.
Everything looks great on a widescreen monitor, but when I view it
on older 4x3 monitors the divs run into each other and the spacing
gets all messed up. This occurs regardless of the resolution the
monitors are using.
I thought by setting up margins with % (5% left margin for
left div, etc.) that the divs would change in size to fill the
pages regardless of the resolution the monitor is set at. The divs
do seem to adjust for the resolution, but the monitor format
appears to be a different issue. Do I need to set fixed div
positions or widths to fix this issue? If so, how do I set them to
ensure the page is filled properly (as little blank space as
possible) regardless of the monitor's resolution?
Does it have anything to do with fixed sizes for certain
images inside divs sizes based on % margins?
Thanks very much for any help!

Resolution is not the critical issue. Browser viewport width
is. To make
your decision you need to have some ideas about the following
issues -
1. What is the primary target demographic for this site?
2. What are the browsing habits of that demographic? Do they
normally have
their browser window maximized on the screen?
3. If they usually have their browser maximized, what is the
typical screen
width?
4. If they usually do NOT have their browser maximized, what
is the MINIMUM
screen width in that demographic.
5. How do I want to build the page?
a. Fixed width and left aligned?
b. Fixed width and centering?
c. Flexible to fill whatever width from left to right?
d. Flexible (within limits) and left aligned?
e. Flexible (within limits) and centering?
As you can see, this decision is probably much more complex
than you
thought, and will require that you know quite a bit about
your intended
target visitor and their browsing habits.
If you elect to go with 5a, or 5b, then your decision would
be - 'what is
the mimimum browser width I want to support without
horizontal scrolling?'.
Once you have determined that minimum supported width, all of
your decisions
are made. That's how wide you want your page to be.
If you elect to go with 5c, then you just build your page
within a flexible
container (the simplest example - although an obsolet one -
would be to use
a 100% width table to hold the entire page). Be aware that
pages with
limited text content can look VERY sparse and empty on wide
viewports when
built in this way.
If you elect to go with 5d, or 5e, then you would add this
sophistication to
your decision matrix -
'what is the greatest width I want to allow the page and its
contents to
become?'
In this case, you would use the CSS styles - 'min-width' and
'max-width' on
the primary page container. Just so you'll know, although
these styles are
well supported *now*, earlier versions of IE (and some other
browsers) will
not support them so reliably.
So - which is it? 8)
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
==================
"juxtafras" <[email protected]> wrote in
message
news:[email protected]...
>I am trying to develop a site:
http://www.poweredupgamers.com.
Everything
> looks great on a widescreen monitor, but when I view it
on older 4x3
> monitors
> the divs run into each other and the spacing gets all
messed up. This
> occurs
> regardless of the resolution the monitors are using.
>
> I thought by setting up margins with % (5% left margin
for left div, etc.)
> that the divs would change in size to fill the pages
regardless of the
> resolution the monitor is set at. The divs do seem to
adjust for the
> resolution, but the monitor format appears to be a
different issue. Do I
> need
> to set fixed div positions or widths to fix this issue?
If so, how do I
> set
> them to ensure the page is filled properly (as little
blank space as
> possible)
> regardless of the monitor's resolution?
>
> Does it have anything to do with fixed sizes for certain
images inside
> divs
> sizes based on % margins?
>
> Thanks very much for any help!
>

Similar Messages

  • Tables running into each other on FF but ok in IE.  help please

    Need some help fixing my tables.  the top table is running into the bottom one in Firefox.  here is site - http://greenpwwhh.com/bi_weekly_mortgage.html
    code is
    <!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"><!-- InstanceBegin template="/Templates/financial_calculators.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>GreenP - Wealth, Wisdom, Health &amp; Happiness</title>
    <script language='Javascript'>
    //DO NOT REMOVE THIS COPYWRITE INFO!
    //Bi-Weekly Mortgage Calculator
    //By Daniel C. Peterson
    //Web Winder Website Services, 1997-2009  All Rights Reserved.
    //Distribution, editing or reselling of this script is strictyly prohibited
    //without expressed written permission from Daniel C. Peterson.
    //For commercial grade (professional) versions of this and many other
    //calculators, visit http://www.webwinder.com.
    function computeForm(form) {
        var pmt1 = form.payment.value;
        var pmt2 = form.payment.value / 2;
        var prin1 = form.principal.value;
        var prin2 = form.principal.value;
        var intPort1 = 0;
        var intPort2 = 0;
        var prinPort1 = 0;
        var prinPort2 = 0;
        var accumInt1 = 0;
        var accumPrin1 = 0;
        var accumInt2 = 0;
        var accumPrin2 = 0;
        var i = form.intRate.value;
        if (i > 1.0) {
            i = i / 100.0;
            form.intRate.value = i;
        var i1  = i  / 12;
        var i2 = i / 26;
        var count1 = 0;
        var count2 = 0;
        while(prin1 > 0) {
            intPort1 = prin1 * i1;
            prinPort1 = pmt1 - intPort1;
            prin1 = prin1 - prinPort1;
            accumPrin1 = accumPrin1 + prinPort1;
            accumInt1 = accumInt1 + intPort1;
            count1 = count1 + 1;
         if(count1 > 600) {
            break;
            } else {
            continue;
    if(count1 > 600) {
    alert("Using your entered terms you will never pay off this amount.  Please either lower the principal amount, lower the interest rate, or increase the payment amount.;")
            form.origInt.value = "";
            form.biwkInt.value = "";
            form.intSave.value = "";
            form.time.value = "";
            } else {
        form.origInt.value = "$" + parseInt(accumInt1,10);
        while(prin2 > 0) {
            intPort2 = prin2 * i2;
            prinPort2 = pmt2 - intPort2;
            prin2 = prin2 - prinPort2;
            accumPrin2 = accumPrin2 + prinPort2;
            accumInt2 = accumInt2 + intPort2;
            count2 = count2 + 1;
            if(count1 > 600) {break; } else {continue; }
        form.biwkInt.value = "$" + parseInt(accumInt2,10);
        form.intSave.value = "$" + parseInt(accumInt1 - accumInt2,10);
        form.time.value = "In essence, what you are really doing is adding a 13th payment to your annual number of payments, and splitting it up between 26 bi-weekly payments. Which in your case means that by coughing up and extra $" + parseInt(pmt1 / 26,10) + " every two weeks you will pay off your mortgage in " + parseInt(count2 /26*12,10) + " months instead of the current " + count1 + " months, and save $" + parseInt(accumInt1 - accumInt2) + " in mortgage interest in the process.  Now I ask you, is there anything else you would rather spend your $" + parseInt(accumInt1 - accumInt2) + " on besides interest?";
    function clearForm(form)
        form.principal.value = "";
        form.payment.value = "";
        form.intRate.value = "";
        form.intSave.value = "";
        form.origInt.value = "";
        form.biwkInt.value = "";
        form.time.value = "";
    </script>
    <!-- InstanceEndEditable -->
    <link href="main_page.css" rel="stylesheet" type="text/css" />
    <!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .thrColFixHdr #sidebar1 { width: 180px; }
    .thrColFixHdr #sidebar2 { width: 190px; }
    </style>
    <![endif]-->
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
    .thrColFixHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body class="thrColFixHdr">
    <div id="container">
      <div id="header">
        <div id="headerLogo"><img src="greenP_logo.gif" width="298" height="114" alt="logo" /></div>
        <div id="headerAd">Oh my gosh!! 100 customers just passed your register? Click here to get them</div>
        <h1> </h1>
        <!-- end #header -->
      </div>
      <div id="nav">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html" class="thrColFixHdr">Home</a></li>
          <li><a href="#" class="thrColFixHdr">Wisdom</a></li>
          <li><a href="wealth.html" class="thrColFixHdr">Wealth</a></li>
          <li><a href="health.html" class="thrColFixHdr">Health</a></li>
          <li><a href="#" class="thrColFixHdr">Happiness</a></li>
          <li><a href="#" class="thrColFixHdr">Opportunities</a></li>
          <li><a href="#" class="thrColFixHdr MenuBarItemSubmenu">Stress Release</a>
            <ul>
              <li><a href="crossword_main_page.html">Crossword</a></li>
              <li><a href="jigsaw_things.html">Jigsaw</a></li>
            </ul>
          </li>
    <li><a href="#" class="thrColFixHdr">Achieved!</a></li>
          <li><a href="#" class="thrColFixHdr">Videos</a></li>
    <li><a href="membership.html" class="thrColFixHdr">Members</a></li>
          <li><a href="about_us.html" class="thrColFixHdr">About us</a></li>
        </ul>
      </div>
      <div id="search">
    <form name="fbsearch" method="get" action="http://ss662.fusionbot.com/b/q" style="margin:0;">
      <div align="left"><font size="2" face="arial"><a href="http://www.fusionbot.com" target="_blank">Site Search</a>:</font>
        <input type="text" name="keys" size="15">
        <input type="submit" value="GO">
        </div>
        <input type="hidden" name="sn" value="160516902">
    </form>
      </div>
      <div id="nav2"><a href="http://pub27.bravenet.com/chat/show.php?usernum=2253679465&cpv=2"><img src="_image/Chat-with-friends-&amp;-network.gif" width="173" height="25" alt="chat" /></a><a href="http://pub27.bravenet.com/calendar/show.php?usernum=2253679465"><img src="_image/calendar_button.gif" width="173" height="25" alt="calendar" /></a><a href="http://pub27.bravenet.com/postcard/post.php?usernum=2253679465"><img src="_image/Send-Some-Love-Today.gif" width="173" height="25" alt="send some love" /></a><a href="comments.html"><img src="_image/Your-comments-please.gif" width="173" height="25" alt="your comments" /></a></div>
      <div id="chat">
        <!-- Start Bravenet.com Service Code -->
        <div align="center"></div>
        <!-- End Bravenet.com Service Code -->
      </div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      <p> </p>
      <div id="financialCalculatorTitles">
    <table width="670" border="1">
          <tr>
            <th scope="col"><a href="bi_weekly_mortgage.html">Cut your mortgage</a></th>
            <th scope="col"><a href="mortgage_refinance.html">Mortgage Refinance</a></th>
            <th scope="col"><a href="life_savings.html">Life Savings</a></th>
            <th scope="col"><a href="credit_cardmin_payment.html">Pay off your Credit Card </a></th>
            <th scope="col"><a href="car_cost_comparison.html">Compare Car Cost</a></th>
            <th scope="col"><a href="debt investment.html">Invest in your debt</a></th>
          </tr>
        </table>
      </div>
      <div id="financial_caqlculatorLeft">
        <p>Content for  id "financial_caqlculatorLeft" Goes Here</p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
      </div>
      <!-- InstanceBeginEditable name="calculators" -->
      <form method="post">
    <table BORDER="1" CELLSPACING="0" CELLPADDING="4">
    <tr>
    <td align="center" COLSPAN="2">
    <font face='arial'><big><strong>Bi-Weekly Mortgage Calculator</strong></big></font>
    </td>
    </tr>
    <tr>
    <td COLSPAN="2">
    <font face='arial'><small>This calculator will show you how much you will
    save if you make 1/2 of your mortgage payment every two weeks instead of making a full
    mortgage payment once a month. In effect, you will be making one extra mortgage payment
    per year--without hardly noticing the additional cash outflow. But, as your about to
    discover, you will certainly notice the increased cash flow that will occur when you pay
    your mortgage off way ahead of schedule!</small></font>
    </td>
    </tr>
    <tr>
    <td><font face='arial'><small>Enter the principal balance of your mortgage </small></font><br>
    <font face='tahoma,arial'><small><small>(call your mortgage lender and ask
    for the current payoff amount)</small></small></font>:</td>
    <td><input TYPE="text" NAME="principal" SIZE="15"></td>
    </tr>
    <tr>
    <td><font face='arial'><small>Enter the amount of your monthly mortgage payment:</small></font><br>
    <font face='tahoma,arial'><small><small>(principal and interest portion only)</small></small></font>:</td>
    <td><input TYPE="text" NAME="payment" SIZE="15"></td>
    </tr>
    <tr>
    <td><font face='arial'><small>Enter the your mortgage's current interest rate:</small></font></td>
    <td><input TYPE="text" NAME="intRate" SIZE="15"></td>
    </tr>
    <tr>
    <td align="center" colspan="2"><input TYPE="button" VALUE="Compute" onClick="computeForm(this.form)"> <input TYPE="reset" VALUE="Reset" onClick="clearForm(this.form)"></td>
    </tr>
    <tr>
    <td><font face='arial'><small>This is how much interest you will pay under your current monthly payment plan:</small></font></td>
    <td><input TYPE="text" NAME="origInt" SIZE="15"></td>
    </tr>
    <tr>
    <td><font face='arial'><small>This is how much interest you will pay if you switch to a bi-weekly mortgage
    payment plan:</small></font></td>
    <td><input TYPE="text" NAME="biwkInt" SIZE="15"></td>
    </tr>
    <tr>
    <td><font face='arial'><small>Bi-weekly Mortgage Interest Savings:</small></font></td>
    <td><input TYPE="text" NAME="intSave" SIZE="15"></td>
    </tr>
    <tr>
    <td align="center" COLSPAN="2"><textarea COLS="60" ROWS="6" name="time" wrap="virtual"></textarea></td>
    </tr>
    <tr>
    <td align="center" COLSPAN="2"><font face='tahoma,arial'><small><small>Copyright © 1997-2009<i> <a href='http://www.webwinder.com'>Web Winder Site Traffic Magnets</a></i>. All rights reserved.</small></small></font></td>
    </tr>
    </table>
    </form>
      <div id="financialCalculatorMain">
        <p> </p>
      </div>
      <!-- InstanceEndEditable -->
      <div id="financialCalculatorFooterAd">ADVERTISEMENT</div>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
      <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script><br class="clearfloat" />
      <div id="footer">
        <p>Copyright &copy; GreenP. All rights reserved. No reproduction of any kind without written permission</p>
        <!-- end #footer -->
      </div>
      <!-- end #container -->
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    <!-- InstanceEnd --></html>
    Thanks

    In that case, you'll need to fix those code errors on your DWT (Template) file.
    Now would be a good time to learn basic X/HTML code.  If you don't learn to recognize errors in Code View, matching doc type with code, proper syntax, etc... your problems will only escalate.
    Start here:
    http://www.w3schools.com/XHTML/xhtml_html.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Chapters run into each other

    The chapters in the books I listen to 'talk' into each other.
    The chapters don't stop and then start Chapter 2.
    The first ends while the second already playing.
    Must be something in the setting, but what?
    I play my book as a playlist.

    Click just before the Chapter Head in the text:
    Menu > Insert > Section Break
    There is a rising hierarchy of breaks:
    Word Break - Hyphenates a word [only off or automatic in Pages]
    Tabs - Breaks up a line by adding points of alignment [left/right/centre/decimal/leading]
    Line Break - Starts a new line without breaking the paragraph [shift return]
    Paragraph Break - New paragraph [return]
    Column Break - Forces text over to the next column or page if there is only one column
    Layout Break - Changes columns/indents within a page
    Page Break - Forces text over to the next page
    Section Break - Divides a document up into sections of different indents/headers/footers/numbering/master layouts. This is what you think of as Chapter Breaks but it can be much more than this.
    Peter

  • My Ical is all screwed up now that I've upgraded my Mac Desktop.  There are no borders with the days of the week and it's all running into each other.  Help Pleeease!!  I have a busy schedule and this is so confusing. How do I get my old Ical back?

    I'm trying to figure out how to change my ICal back to the way it was before I upgrated my Desktop Mac computer.  I used to have a perfect calendar and since I upgraded, there are no side borders to the days when I'm on the "month" view.  It all looks like it is one big day running into eachother.  I hope it's an easy fix. If anyone knows what I'm trying to explain, please help me!!

    Configure the Extreme connected to the Hughes Net modem as your router. In other words in AirPort Utility, Network tab > Router Mode should be set to "DHCP and NAT". It will provide IP addresses to all the devices on your network.
    All other AirPort devices on your network should be configured as bridges: Router Mode "Off".
    You may want to configure static IP addresses for any equipment that is likely to be permanently installed. For them, there is no reason to have the Extreme issue an IP address, and they can keep the same one forever.
    The Microcell may be able to connect to the Express's LAN port such devices that have to handle voice or other real time audio or video streaming are generally best installed using a strictly wired connection. The same applies to the Sony TV and AppleTV. Keep them on a wired LAN served by the Extreme, avoiding any reliance on a wireless link if at all possible.
    The way to implement a complex network like yours is to add one device at a time. Ensure it connects reliably, then add another. You have a lot of work to do.
    WDS can be implemented even with new Extremes but its performance is likely to be so unacceptable that it would be nothing more than an exercise in frustration for you.

  • XIR2 DHTML Viewer - Fields run into each other

    Post Author: gouldjw
    CA Forum: General
    I the DHTML viewer, fields that run past their designated width seem to appear in full-length, which causes them to run into the next field over.  Is there some formatting setting on these fields or some other way to prevent this?  I'd like to use the DHTML viewer, but most of our reports do feature some amount of field clipping, and this renders the reports unreadable.
    Thanks.

    Hi,
    Have changed anything recently?
    Could you please change the mode to unicast? If it works, please check the multicast settings of the network devices.
    Besides, here is an article about how to troubleshoot NLB, it may be helpful:
    http://social.technet.microsoft.com/wiki/contents/articles/7329.network-load-balancing-nlb-survival-guide.aspx#VMWare
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Headings and other print run into each other and I cnnot see all the print in some boxes on vrious web sites. I have removed and re-installed more than once.

    copy on the web pages overlap.....headlines appear over other print.....link tabs are on top of each other. I have removed and re-installed Firefox many times. This does not happen with other browsers. Also, some web sites show sections that are off center.

    Hi,
    Please see [https://support.mozilla.org/en-US/kb/Firefox%20prints%20pages%20in%20a%20different%20layout this]. If the site has a Print button/icon you can try to use that. On some sites you can also try to right-click the content > '''This Frame''' > '''Print frame'''.
    [http://kb.mozillazine.org/Problems_printing_web_pages Problems printing web pages]
    [https://support.mozilla.org/en-US/kb/fix-printing-problems-firefox?e=sph&redirectlocale=en-US&as=s&s=printing&r=0&redirectslug=Firefox+prints+incorrectly Firefox prints incorrectly]

  • How to keep pages from running into each other's space?

    OK, my aim is to plow through this and get this one book done and worry about controlling the unsightly TOC thumbnails in other versions when I learn Pages.
    My problem now is that I am doing this picture book and the registry of the pages gets out of whack with one picture partially going into another page. In Preview it shows up even moreso than in IBA. Is there a way to get them to snap and stay in place? I am inserting a widget gallery and a full page photo on each page. If one goes out and I correct it, it seems the others get slightly off as well. Can you lock placement of each page to prevent this? Thanks.

    Any time I read 'lock placement' (w/these kinds of tools), I think styles.
    And while the design/structure of the style itself is 'locked', applying it may be a manual effot, unless of course you're working strictly with a template, etc.

  • Songs seem to end early or run into each other.

    First off, sorry if this, or anything similar has been asked or brought up before...
    Anyhow, I purchased a 20GB iPod Color about two and a half weeks ago, and after loading song file which were already on my computer, and from CD's to my iTunes Library, and therefore also to my iPod, I've noticed that then I play some tracks they seem to end abruptly, as in a few seconds early.
    I've checked the track times according to my iPod to the track times according to the albums themselves and both times match up, hence I don't understand why some songs seem to end early, even though the iPod display tells me the track length is the same.
    I've also noticed that with some songs the end of one song seems to blend in with the beginning of the next. I also don't understand why this occurs.
    When I play songs directly from my iTunes Library, in most instances this doesn't occur to the affected tracks in question [and when such tracks are played through Windows Media Player or from the CD itself it never occurs]. I've also deleted and reinstalled the tracks in hopes this would solve the problem but it hasn't.
    Any insight as to why either of these issues happen or how to solve them, would be greatly appreciated, for honestly it's unnerving me. Thanks.

    Dan, I see what you are trying to demonstrate but are you sure you have the example as you intended? In dbo.Test1, you're not making it to exec dbo.Test2. I think you're trying to have the error come from dbo.Test2, correct?
    My intention was to demonstrate that an error will occur, not necessarily where the error will happen.  I meant to select column b in dbo.Test1, in which case the same error occurs but in dbo.Test2.  Of course, the reason for the error is that
    the object name is resolved against the dbo.Test1 table instead of the intened dbo.Test1 table.
    The Books Online also states that when 2 temp tables exist with the same name,
    it is undefined which table the query is resolved against.  So the only way to protect yourself is with table variables or different temp table names.
    I ran the following under SQL 2008 R2 to illustrate the sort of strange behavior you might see if you don't follow this practice.
    CREATE PROCEDURE dbo.Test2
    AS
    CREATE TABLE #t(x INT);
    INSERT INTO #t VALUES (2);
    SELECT Test2Col = x FROM #t;
    GO
    CREATE PROCEDURE dbo.Test1
    AS
    CREATE TABLE #t(b INT);
    INSERT INTO #t VALUES (1);
    SELECT Test1Col = b FROM #t;
    EXEC dbo.Test2;
    GO
    --fails in dbo.Test2
    EXEC dbo.Test1;
    GO
    --dbo.Temp2 succeeds when run standalone
    EXEC dbo.Test2;
    GO
    --dbo.Temp1 now succeeds because the temp table created by last dbo.Test2 run hasn't yet been cleaned up
    EXEC dbo.Test1;
    GO
    --force recompilation on next execution
    DBCC FREEPROCCACHE;
    GO
    --fails in dbo.Test2 because the temp table created by last dbo.Test2 run has been dropped
    EXEC dbo.Test1;
    GO
    Dan Guzman, SQL Server MVP, http://weblogs.sqlteam.com/dang/

  • Related emails not folding into each other in one folder / but do in all others

    It really bizarre for me, as my other folders also have mail routed to them via various rules, and related messages fold neatly into each other, with a little triangle next to them, indicating that there is a whole chain in there.
    But in this one particular mail folder, each message shows up one by one, I am not sure why?
    The rules route messages into it by subject line (i.e. if it contains "zee" move it to that folder).
    Can anyone explain?
    Thank you!
    Zebbler

    Hello eporon,
    the only possibility to create a DVD with several movies and have the option to either play the parts separatly or "play all" as in commercial DVDs is to duplicate your movie(s).
    This means you have to import the individual movies (as you already did), then create a new movie where you join the parts into one. Now import that movie as well and name the menu button "play all".
    Important: this can only work if the combined parts are less than 60 min long (DVD-R is max 120 min).
    Alternatively you could create a single movie out of the four parts and place chapter markers for each individual title (ceremony, reception...) the let iDVD create a chapter submenu. Now the separate titles can be accessed from there.
    hope this helps
    mish

  • I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solveby myself? (Mountain Lion, Mavericks, Yosemite?)

    I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solve by myself- a person with limited problem solving abilities. (Mountain Lion, Mavericks, Yosemite?)

    It will make it easier to help you w/ your problem to know the  size and RAM installed.
    "Yesterday I couldn't update the maps on my Garmin because it said the OS I had wouldn't work"
    What OS will your Garmin work with? Funny there was someone else that did that and upgraded to Yosemite and regretted it.
    I'd say Lion if your Garmin is compatible.
    Both Lion and Mountain Lion are downloadable from the Apple Store:
    http://store.apple.com/us/product/D6106Z/A/os-x-lion
    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    The OSs will get more resource hungry the higher you go.

  • A way to have notifications appear on lock screen but not activate the screen each time I receive one?

    Using an iPhone 4 with iOS 5.0.1 I like how I can have my notifications appear on my lock screen (usually for a new email) but dislike how every time I receive a notification, my iPhone screen lights up with the notification. Is there a way to continue receiving notifications on my lock screen but not have the screen illuminate every time I receive one? It's a constant distraction when I am at work, and I like to keep my phone turned face-up on my desk in case I get a call.

    No

  • Virtual Screen but not Screen Sharing

    Hello all,
    I am wondering if there is a way that I can allow a user to log into my machine with a "virtual desktop" but NOT share my screen.  Consider the following scenario: Machine A and B both run OS X Lion.  Machine A is logged in as user A.  Machine B would like to log into their account remotely through screen sharing.  Once they are authenticated, they have the option to "Connect to a virtual display" or "Share the display"  The challenge is that I would like to allow them to connect to their virtual display but NOT allow them to share the display while I am using it.  Is this possible?
    To rephrase the question: is it possible to make remote users request permission to share the screen but not to log into their virtual desktop?
    Thanks in advance for any help you can offer!!
    Bests,
    Phil

    Hmm, this is not my experience... is it possible that I have something incorrectly configured then? My setup is as follows:
    Machine A:
         - Mac OS X Lion 10.7.4
         - User A: Administrator
         - User B: Regular User
    Machine B:
         - Mac OS X Lion 10.7.4
    Scenario:
         - User A is logged into Machine A
         - From Machine B, select Finder->Go->Connect to Server and enter vnc://address_of_Machine_A
         - Enter credentials of **User B**
    I am presented with two options:
         - "Share the Display - 'User A' is using the display"
         - "Connect to a Virtual Display - See your desktop and files"
    When I select the latter, everything goes smoothly with the virtual desktop and both users are able to work simultaneously.  However, when I select the first option, User B is able to share User A's screen without entering any additional credentials, which represents a serious privacy issue.  Any ideas?
    Thanks so much in advance for your help!
    Phil

  • I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    You need to use the right arrow on the remote to go all the way to the right. The submit button will be highlighted and you can then press select on the remote to proceed.

  • Can I use split screens on and extra monitor I have. I can get mirror image on both screens, but not a split screen. The monitor is 1600 x 900.

    Can I use split screens on an extra monitor I have? I can get a mirror image on both screens, but not a split screen. The monitor is 1600 x 900 AOC 20inch monitor. Hope I haven't wasted my money buying this £69 monitor. My 13" Macbook Pro is a little small for my ageing eyes. Thanks

    In the display settings on your computer uncheck "mirrored". This will put the displays in "extended" mode. In extended mode you can set the external display to its native resolution as well as drag windows from your computer to the external monitor. I assume that is what you mean when you say "split screen".

  • Hi. I tried using Pinterest tonight and got a message that I have a bot in my network..what is this, and how do I get rid of it? My phone has been running really slow too on Safari (but not on Google Chrome)

    Hi. I tried using Pinterest tonight and got a message that I have a bot in my network..what is this, and how do I get rid of it? My phone has been running really slow too on Safari (but not on Google Chrome)

    Google changed their menu bar. Firefox hasn't used Google for the default homepage since the Firefox 3.6 versions. Firefox 4+ versions use '''about:home'''.<br />
    http://www.theverge.com/2011/11/29/2598717/google-bar-redesign-rethinks-the-navigation-bar

Maybe you are looking for

  • Sy-tabix showing different value each time after ENDLOOP stmt

    Hi, when i am executing my program its having one loop statement . after finishing that loop below the Endloop statement. sy-tabix some time showing 1 and some time showing 2. why its chaging its value

  • Calling a WebService from servlet

    Hello, When i am trying to call my WS(generated from ABAP ) from a servlet, i have this error : [EXCEPTION] javax.xml.ws.WebServiceException: Invalid Response code (404). Server [http://adressWebService]  returned message [Not Found]. Http proxy info

  • Redirect on server

    How to do a server redirect from http://server1 to http://server2 using the admin console?

  • Constant reboot of Iphone 4 and NO restoring possible, tried everything

    Without being used at the time I discovered a couple of days ago that my new iphone 4 (running on iPhone 4.0.1 (already for a couple of days, 3 weeks old) was in a constant 30 sec reboot and was pretty warm. When connected to my Mac, iTunes didn't re

  • Solution Manager Building Block

    Hi. I wish to standarize my solution manager configuration by creating building blocks. I want to get Solution manager IMG Project into a template project, where i can customize it and create BCsets and Ecatts. Does anybody knows if it is possible?.