Output window size

in standard report the size of report is half of the winodw.
wheni sein foreground its giving in full pages but when i run on background its appearing on half of the window...
wot could be the error??

Hi Jyoti,
     This is no error. During background processing, the display of the output generally differs from that in the foreground. That is bcoz of the output display options related to the background processing. The no. of pages are displayed in output during background processing which are usually of smaller in size when compared to that of foregorund.
Hope this is helpful to you. If you need further information, revert
back.
Reward all the helpful answers.
Regards
Nagaraj T

Similar Messages

  • Best way to implement a basic text output window

    Hello,
    I want to monitor the activity of an hardware devices which sends text, in some case, a lot and fairly fast. So far I send this to the standard output and this is fine.
    Now I need to support several devices concurrently so I need to create a very basic window which just display some read only text with a scroll bar (I must have only one instance of my app running on a system). As there are hundreds of ways to do that in Java, I would like some advice to make something which minimize latencies and resources consumption (e.g. using a JTextPane with a StyledDocument might not be optimal for this...)
    Sebastien

    As recommended, I used a JTextArea. With that I use the default document and "Piped" streams.
    I tested it with the little loop below:
            String text = "";
            PipedOutputStream pos=new PipedOutputStream();
            final int PIPE_BUFFER_SIZE=0x100000;
            dialog.monitorStream(new PipedInputStream(pos,PIPE_BUFFER_SIZE));
            long start=System.nanoTime();
            for (int i = 0; i < 0x100000; i++) {
                String zeroes="";
                for(int j=0;j<Integer.numberOfLeadingZeros(i);j++)
                    zeroes+='0';
                text = zeroes+Integer.toBinaryString(i) + "\n";
                pos.write(text.getBytes());//use JTextArea/PipedOutputStream
                //System.out.print(text);//use console
            long end=System.nanoTime();
            System.out.println("exectime: "+Long.toString((end-start)/1000000));With the (win32) console it took around 195 seconds on my laptop
    I got a similar timing with NetBean's output window (but I must say that it is quite good result if we take into account that it keeps all the data while win32 console keeps only the 300 last lines!)
    Using the JTextArea/PipedOutputStream, times fall down to 22 seconds !! (I made it to accept up to 8MB of data and to keep at least the last 4MB chunk of data)
    Ok, I will never put JTextArea performance in question...
    Thanks for your answers.
    Note for those who do similar things: the PIPE_BUFFER_SIZE is a key parameter for the speed of operations, the bigger the better. For example, when I double its size, the times fall down to 15 seconds !
    Still for those interested in that kind of stuff, the core of the monitoring thread:
        protected class StreamMonitor implements Runnable {
            //This will display correctly ony ANSI characters
            //"&#50504;&#45397;" is displayed as "??"
            public StreamMonitor() {
            public void run() {
                int totalCount=0;
                try {
                    byte[] buf=new byte[0x8000];
                    StringBuffer sb=new StringBuffer();
                    sb.ensureCapacity(0x10000);
                    int emptyCnt=0;
                    while (true) {
                        if (toMonitor.available()>0) {
                            emptyCnt=0;
                            int n = toMonitor.read(buf);
                            totalCount+=n;
                            for (int i = 0; i < n; i++) {
                                sb.append((char)buf);
    if(sb.length()>0x8000)
    int MAX_SIZE=0x0800000;
    if(totalCount>MAX_SIZE)
    doc.remove(0,(MAX_SIZE / 2));
    totalCount-=MAX_SIZE / 2;
    doc.insertString(doc.getLength(), sb.toString(), null);
    outputTextArea.setCaretPosition(doc.getLength());
    sb.setLength(0);
    else
    doc.insertString(doc.getLength(), sb.toString(), null);
    outputTextArea.setCaretPosition(doc.getLength());
    sb.setLength(0);
    emptyCnt++;
    if(emptyCnt<1000){
    Thread.yield();
    else{
    //if we execute this thread repeatedly for nothing,
    //make it sleep a while to reduce CPU load
    Thread.sleep(20);
    } catch (Exception ex) {
    Logger.getLogger(ATextScreenOutput.class.getName()).log(Level.SEVERE, null, ex);

  • Making the font in the output window bigger

    You know when you run a console application and you're looking at the output in the output window at the bottom, the typeface is a little small. Is there a way to change that to a bigger font?

    I don't think there is a way to make just the font in the log window bigger - but you can increase the size of the font used in JDeveloper by editing the ide.properties file.

  • Main window size for HTML Help

    Hello again
    I have looked at the archives and despite thinking I had seen
    this particular issue covered before, I could not find anything. I
    generate a HTML Help File with RoboHelp for Word x5.0.1 and would
    like to set the default window size as at the moment my Help File
    opens in a rather small window. Also if a user maximises the
    window, closes the Help File and re-opens it, it still opens in the
    small windows, i.e. the size settings were not save upon closing
    the file.
    Can anybody help? I reckon there must be some place (I
    noticed the existence of the Edit > Windows menu but it only
    seems to apply to WinHelp) I can set this up.
    Thank you.
    Regards,

    In Project Manager, double click Windows and then the window
    you use. There should be fields for setting the size. If not, check
    that HTML is your primary output and then create a new window, then
    you should see the fields.

  • Customize window size  for HTML Help?

    My .CHM file opens up in a ridiculously tiny window, and I
    can't seem to change that from within Robohelp. I saw some
    information on Rick Steve's site about customizing window sizes for
    Webhelp and Flashhelp. I'm hoping there's a similar technique
    available for HTML help.
    Thanks!

    In Project Manager, double click Windows and then the window
    you use. There should be fields for setting the size. If not, check
    that HTML is your primary output and then create a new window, then
    you should see the fields.

  • Finding out about window size

    Hello
    I'm trying to find out the window size of the browser
    visiting my web site. There is several javascript codes but I'm
    wondering whether there is anything in CF? I checked CFlib and
    unfortunately didn't find anything....
    At the end I would like to have the width and height
    available for further use. My problem (because I'm a rookie) is to
    take this information out from javascript to a CF variable (or
    structure or whatever).... Thats why I prefer not to use javascript
    at all ;-)
    Is there an easy solution?
    Thank you very much

    >
    > Thanks for further inputs.
    >
    Play with this code a bit.
    <!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>Untitled Document</title>
    <script type="text/javascript">
    <!--
    function Box(){
    var viewportwidth;
    var viewportheight;
    // the more standards compliant browsers
    (mozilla/netscape/opera/IE7)
    use window.innerWidth and window.innerHeight
    if (typeof window.innerWidth != 'undefined')
    viewportwidth = window.innerWidth,
    viewportheight = window.innerHeight
    // IE6 in standards compliant mode (i.e. with a valid
    doctype as the
    first line in the document)
    else if (typeof document.documentElement != 'undefined'
    && typeof document.documentElement.clientWidth !=
    'undefined' && document.documentElement.clientWidth
    != 0)
    viewportwidth = document.documentElement.clientWidth,
    viewportheight = document.documentElement.clientHeight
    // older versions of IE
    else
    viewportwidth =
    document.getElementsByTagName('body')[0].clientWidth,
    viewportheight =
    document.getElementsByTagName('body')[0].clientHeight
    alert('Your viewport dimension is '+viewportwidth+' x
    '+viewportheight+' pixels');
    document.cookie =
    'windim='+viewportwidth+'|'+viewportheight+';
    expires=Fri, 24 Oct 2008 00:00:00 UTC; path=/';
    //-->
    window.onload = Box();
    </script>
    </head>
    <body>
    <cfoutput>
    <h1>Fun with window sizes</h1>
    Diminsion Cookie
    <cfif structKeyExists(cookie,"windim")>
    <p>Your viewport dimension is
    #listFirst(cookie.windim,'|')# x
    #listLast(cookie.windim,'|')# pixels</p>
    </cfif>
    <p><a href="#cgi.SCRIPT_NAME#">Click here to
    update windows
    diminsion.</a></p>
    </cfoutput>
    </body>
    It is important to note the order of things. When this page
    is first
    ran the JavaScript gets the dimensions and writes the
    cookies.
    When it is run again ColdFusion reads the cookies that from
    the previous
    request and then the client gets it and runs the JavaScript
    again
    updating the cookie.
    I.E. JavaScript is always outputting the current dimensions,
    ColdFusion
    is output the *last* dimensions. Play with this page by
    changing the
    browser size and then clicking on the link.
    If you wanted more immediate feed back replace the
    document.cookie line
    in the javascript with a call to a ajax function that sends a
    request
    immediately to the server.
    It'll have to wait for different day for me to have time to
    whip up an
    example like that.

  • How can I save the window size so that when I restart Firefox the size of the window is appropriate for my portrait mode monitor?

    I have a 2 monitor setup with my second monitor in portrait mode. Whenever I start Firefox (on my 2nd screen where I always open it) I always have to resize the window so it goes down to show more info. I cannot figure out how to reset any type of default window size for the height and width parameters.

    Hi,
    From your post, I assume you are creating WebHelp output.
    You  need to create a window for the help in the Project Set-up pod. Then,  you need to make sure you call the output so that the window is used.  See http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm.  This article on Peter's site give you an overview over the  possibilities of calling context sensitivive webhelp and also tells you  how to specify the needed window. Also, the installation directory of  RoboHelp 8 contains a directory called CSH API. In there are example  API's your developer can use to call the help.
    Greet,
    Willam

  • Inconsistent Replay Window Size

    1. We have published a Captivate movie (powerpoints + audio)
    using a window size of 800x600.
    2. To load it on our LMS, I've been told I have to use the
    FLASH (SWF) output file along with the AICC option turned on.
    3. Most are able to watch it fine but we've got about 12
    people complaining that the window that comes up to play it is too
    small. Over 500 are NOT having the problem so it's a VERY small
    number but enough that it's an issue that needs to be addressed.
    4. I have looked at a screenshot of this problem and it
    appears that the flash file window is cropping 10% of the screen
    off the right and cropping 10% of the screen off the bottom.
    5. We all use the same operating system (Windows XP) and
    Internet Explorer version.
    Any thoughts on what could be causing this and how to fix
    it??

    Hi Dew_South2002,
    Have you confirmed that each user has the same monitor
    resolution settings? Also, if the user's monitor setting is 800 x
    600 a small portion of the screen might be cut off due to the size
    of the "window" created by the LMS. Because a browser window also
    includes the Top of the page, about 20 pixels gets clipped from the
    overall browser window size so that the page title can display.
    Toolbars can also take away about 20 pixels.
    I guess I would approach it by going to a good monitor and
    writing down the resolution and noting if any toolbars are present.
    Then go to an offending machine and do the same and compare the
    notes. Just a thought.
    TPK

  • DBMS OUTPUT WINDOW

    Using sql developer 3.2.20.09
    Don't know what I clicked accidentally, my dbms output window is screwed up. I can not see its top end . So I can not close it or see /change the db connection. Only thing I can do with this window is to change its size from bottom edge or from sideways.
    Please help!
    Thanks and Regards,
    RN

    You could try minimising or moving some other panes to make the top of the dbms_output pane visible.
    Failing that, you could delete windowinglayout.xml which will reset the windows to the defaults.
    The file should be in SQL Developer\system3.2.20.09.87\o.ide.11.1.1.4.37.59.48 in your home directory (.sqldeveloper if not on windows

  • Output file size doubled

    I have created a movie in Premiere Elements that uses hi-def video, still images, narration and a soundtrack. The movie is about 1 hour long. Once the movie reached its final length of about 1 hour, the output file size of the movie to be burned to Blu-ray was consistently around 11 GB. For reasons I don't understand, the output file size has abruptly grown to 26 GB. I have not added any significant footage or effects since I reached the 1 hour mark. I've only made very small tweaks to the audio balance and transitions.
    The only thing that I can think of that might have caused this growth is that I went into the project settings and turned off "optimize stills." I may also have turned on "maximum bit depth." When I clicked ok, Premiere Elements told me that it had to re-render the project, which i did so. Since then, though, i have re-enabled "optimize stills" and turned off "maximize bit depth." I have also re-rendered the project again. My file size is still 26 GB.
    I am running PE on a 3.06 GHZ laptop with 6 GB of ram. Running Windows 7, 64-bit.
    Has anyone else run into this issue?

    The only thing that I can think of that might have caused this growth is that I went into the project settings and turned off "optimize stills." I may also have turned on "maximum bit depth."
    File size is dependent on Bit-Rate and on Duration. If you have upped the Bit-Rate, you will see an increase in file size. Will the Project still fit on your BD? If so, and you want highest quality, the Bit-Rate and Bit-Depth can just stay higher. If space is an issue, then you can drop these down a bit.
    Something else to think about and look for is has your Duration changed. This can be caused by "Orphans," out beyond where you intend your Timeline to end. This ARTICLE will give you some tips. This is easy to check.
    Good luck,
    Hunt

  • Window sizes settings have somehow changed and my windows do not open in the correct size anymore. How do I get my original window sizes to come back PERMANENTLY?

    After upgrading to FF 10.0, my window sizes are not correct. I use a web-based invoicing system and my invoice windows used to open to the size of the invoice. Now, it opens invoices in full screen. I need the invoice windows to open the way the site tells them to open. How do I make that happen again and never change after that?

    Safe mode disables the installed '''Extensions''', themes ('''Appearance''') and '''Plugins''' in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. So it could be that an extension is causing it. You can try to isolate it starting with script blockers and similar extensions and '''Disable''' or '''Remove''' it.
    Please also note that safe mode also disables hardware acceleration: '''Tools''' > '''Options''' > '''Advanced''' > '''General''': '''Use hardware acceleration when possible'''.
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • AP Divs (layers) move when I open my website on different window size.

    First of all, this is my first time trying to make a website.
    I'm doing an assignment for my class and i found it difficult for me to fix. I have spend 4-5 hours researching online but nothing work for me.
    Well,the problem is the AP Divs (layers) move when I open my website on different window size(iphone,ipad).
    The website only look right on 1366 x 786 resolution. Please take a look at my 2 pics below:
    And I don't know how to make the website to fit on the iphone and ipad so that I don't have to scroll down or sroll to the right to view the whole thing.
    Please someone help me!
    The 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" />
        <meta name="viewport" content="width=device-width" />
    <title>Boston Green Community College</title>
    <style type="text/css">
    <!--
    body {
        background-color: #3f7244;
        padding: 0;
        color: #8d0101;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 100%;
        line-height: 1.4;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #003702;
        text-decoration: NONE; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #028b66;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 960px;
        background-color: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        background-color: #ADB96E;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        padding: 0px 0;
    /* ~~ The footer ~~ */
    .footer {
        padding: 10px 0;
        background-color: #CCC49F;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    #apDiv1 {
        position: absolute;
        width: 251px;
        height: 101px;
        z-index: 1;
        left: 871px;
        top: 10px;
    #apDiv2 {
        position: absolute;
        width: 228px;
        height: 60px;
        z-index: 2;
        left: 9px;
        top: 1397px;
    #apDiv3 {
        position: absolute;
        width: 273px;
        height: 198px;
        z-index: 2;
        left: 851px;
        top: 383px;
    #apDiv4 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 3;
        left: 242px;
        top: 120px;
    #apDiv5 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 902px;
        top: 178px;
    #apDiv6 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 857px;
        top: 171px;
    #apDiv7 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 455px;
        top: 547px;
    #apDiv8 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 4;
        left: 853px;
        top: 113px;
    #apDiv9 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 5;
        left: 853px;
        top: 246px;
    #apDiv10 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 6;
        left: 513px;
        top: 121px;
    #apDiv11 {
        position: absolute;
        width: 200px;
        height: 115px;
        z-index: 6;
        left: 511px;
        top: 123px;
    -->
    </style></head>
    <body>
    <div class="container">
      <div class="header"><a href="#"><img src="Pictures/34d-1.png" alt="Insert Logo Here" name="Insert_logo" width="619" height="90" id="Insert_logo" style="background-color: #C6D580; display:block;" />
        <div id="apDiv11"><font color="#f4f1f1">
    <script type="text/javascript">
    var d=new Date()
    var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
    document.write(weekday[d.getDay()] + " ")
    document.write(d.getDate() + ". ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getFullYear())
    </script></font>
    </div>
        <div id="apDiv1">
      <!-- Use of this code assumes agreement with the Google Custom Search Terms of Service. -->
      <!-- The terms of service are available at http://www.google.com/cse/docs/tos.html -->
      <form name="cse" id="searchbox_demo" action="http://www.google.com/cse">
      <input type="hidden" name="cref" value="" />
      <input type="hidden" name="ie" value="utf-8" />
      <input type="hidden" name="hl" value="" />
      <input name="q" type="text" size="40" />
      <input type="submit" name="sa" value="Search" />
    </form>
    <script type="text/javascript" src="http://www.google.com/cse/tools/onthefly?form=searchbox_demo&lang="></script>
                                  </div>
                                    </div>
      <div class="content">
        <center><img src="Pictures/DFDF11.png" width="959" height="556" longdesc="Pictures/junior-2-960x.jpg" /></h1></center>
      <!-- end .content --></div>
      <div class="footer">
         <img src="Pictures/RRR1.png" width="202" height="70" />
         <div id="apDiv3">
           <p> </p>
           <p><a href="Job.html">Jobs</a>         </p>
           <p><a href="Art Gallery.html">Art Gallery</a>         </p>
           <p><a href="Contact us.html">Contact Us </a></p>
        </div>
        <div id="apDiv4"><center>
    <P>About</P>
    <a href="visiting.html">visiting</a> | <a href="Map.html">maps </a>| <P><a href="About.html">about BGCC</a></P>
    <P>Academic</P>
    <P><a href="Courses.html">schools+courses</a></P>
    <P>Admissions  </P>
    <P><a href="cost & aid basics.html">cost & aid basics </a>| <a href="Apply now.html">join BGCC</a>
    <P>Studen Life</P>
    <P><a href="Athletics.html">Athletics</a></P>
    <P>Greenforce Education</P>
    <P><a href="Career.html">career center</a></P>
    </center> </div>
         <p><font size="2" color="black">BGCC | 99 GreenField | Boston, MA 02199 |617-0101-1000| TTY 617-0202-9944|</font></p>
        <div id="apDiv9"><a href="Donate.html" target="_blank"><a href="Donate.html"><img src="Pictures/three-green-logo.jpg" width="218" height="99" longdesc="Pictures/three-green-logo.jpg" /></div>
        <div id="apDiv8"><a href="Apply now.html" target="_blank"><a href="Apply now.html">
    <img border="0" src="Pictures/cxgvxdvxgd.jpg" alt="Apply Now" width="218" height="99"></a></div>
      <!-- end .footer --></div>
      <!-- end .container --></div>
    </body>
    </html>

    That's what APDivs do.  This is the single most common problem new people have with web page layouts.  DO NOT use positioning.  You don't need it.  Start over.  Learn to use CSS floats, margins and padding to align elements. 
    Below is a basic HTML5 Layout.  View source in browser to see the code.
    http://www.alt-web.com/sandbox/HTML5-BasicLayout.html
    Nancy O.

  • How to change the default window size display font size on Lync 2013 main window?

    Hi champs,
    Just a simple non-technical question: How to change the default window size display font size on Lync 2013 main window on Windows 7 desktop?
    Thanks,

    Hi,
    Did you mean change the Lync: Change the Default Font and Color of Instant Messages just as Edwin said above?
    If not, as I know, there is no natural way to change it.
    If yes, on the latest version of Lync 2013 client, there is a new option “IM” on Lync client “Options” list. And you need to change the default Font and Color of IM in the interface of “IM”.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How  to change default window size?

    I'm using MX 6.0 on Mac... For some reason I can't figure out
    how to change the default window size in the work windows. Every
    time I open a new file to work on it opens to a smaller size than
    the actual page is. When opening pages dozens of times a day, it
    gets annoying to have to resize each time. I'm sure it wasn't
    always like this, but I can't figure out how to change it so the
    default size that it opens to each time is larger.
    Thanks for any help,
    DD

    Window | Workspace | Save Current
    This gives you the opportunity to save a current layout look
    that you like
    You might also look under
    Edit |Preferences | Status bar - but I don't see that this
    does anything
    in DWCS3

  • How to change Default Finder Windows Size?

    Hi all:
    New Finder windows show Macintosh HD and there is no problem in keeping the size or view options every time I open a new window (command + N).
    I can change "New Finder windows show" to another folder and works just as well.
    But when I open a folder in a new window (double click on an icon folder) the size of the window is very small and different from the window displayed by using command + N.
    Finder saves and applies default view options to all windows without a problem, but not the default size or in other words: 
    default windows size is different from new finder windows size.
    In Snow Leopard I could change default size of all windows holding down the Shift key while dragging and changing the size but in Mountain Lion it does not work.
    I have also deleted all files .DS_Store but neither works.
    I searched a lot but can not find a solution to this problem.
    Thanks.

    As far as New Finder Windows (command+N) are concerned, there's no problem.
    All other folder's Finder Windows I have not modified manually are displayed with the default size shown in the attached image. That is the window size that I want to modify.
    Thanks.

Maybe you are looking for

  • HELP with kernel panics1

    I am getting about 4-5 kernel panics on my late 08 macbook pro! I just got it off ebay this week and i have no idea how to fix it or why its happening! I did the instructions on apple.ca for kernel panics but it still does it! And i dont know any mac

  • DMS: ECC6 New tabs of Document browser & Authourizations ??????

    Hi all, there are new tabs of Document browser & Authourizations in ECC6 can anyone tell the significant use of it, where can i find the relevant info on it. Can i remove those tabs from the DIR screen, is there any configration to remove those tabs.

  • Using Struts, On submit button in child window, its opening new window.

    We are developing a project using Struts and BC4J. I am opening a child window(window.showmodaldialog) from main window using struts action. Actually Child window is a search kind of page. User will enter the search criteria and press the sumbit butt

  • Scripting execution is failing

    Hi experts, We are trying to run this script import java.util.HashMap; import com.frictionless.sap.integration.exporter.ExporterIfc; import com.frictionless.sap.integration.exporter.SmartExporter; HashMap map = new HashMap(); map.put("mode", "export"

  • Pass Image to .dll

    Hi, I found quite a lot of topics on passing images to a .dll, however I didn't quite find an answer to my problem. I want to pass a reference to an Image to a .dll. The reference is of Type void* myImage in the LabView configure-dll, and when I crea