Mbp: how to view excel in attached monitor?!

I've set up my 13" MBP with a second monitor. I will often type in the browser in the MBP's attached 13" screen, while referring to a browser tab in the attached (second) monitor.
New apps always open on my MBP's primary (attached) screen. Typically (Chrome, Evernote, iTunes, TextEdit, PowerPoint, Word) I can move an app window from my primary screen to the second monitor, but Excel windows always bump up against the top of my primary screen and refuse to move to the second screen. Yes, I have shutdown and restarted the MBP, and it's not file-specific.
How do I move Excel sheets to the second screen? Note that Word and PowerPoint behave normally, like every other apps. (This is Office 2008 for Mac.)
Thanks for helping to solve this mystery.

Odd. But can't test very well right now cause I'm on Lion and w/Office 2011.
Try quitting Excel, dragging the com.microsoft.Excel.plist file out of your ~/Library/Preferences folder and doing the test again. That resets Excel's preferences, in case that has something to do with this issue.

Similar Messages

  • How to view excel spreadsheet in java

    Hello
    Is there a way to open an excel spreadsheet in java? I don't mean reading and writing from an excel file, but instead embedding excel in java. For example instead of launching excel using the Desktop class and opening a new excel window, Java would open an instance of excel and add it to Jframe or Jpanel. Sort of like what Eclipse does when you Open a file with In_Place Editor. Google returns results on how to use some windows dll file and using active x control or whatnot.. Was wondering if there is a better and simpler way..
    Thank you.

    oplead wrote:
    Hello
    Is there a way to open an excel spreadsheet in java? I don't mean reading and writing from an excel file, but instead embedding excel in java.Ah yes, "embed" is the word you want as your google keyword, not "open". My first try with "embed excel in Java" returned as the first link a page from a company named JIntegra for which this seems to be their main business. Here's the link I found, just for information:
    [http://j-integra.intrinsyc.com/support/kb/Article.aspx?id=30421|http://j-integra.intrinsyc.com/support/kb/Article.aspx?id=30421]

  • To Send HTML Format and excel file attachment  in same mail

    Dear All,
            Have requerment ,to send a mail options HTML table format and same data in excel file attachement.have capable to do the html format using methods BCS .but how to send excel format attachment in same  mail.
    Please guide me how to do it.
    Regards ,
    Santhu
    Edited by: santosh jajur on Apr 9, 2010 1:54 PM

    Santhosh,
    please check the code:
    report bcs_example_7.
    This report provides an example for sending an Excel
    attachment in Unicode Systems
    constants:
      gc_tab  type c value cl_bcs_convert=>gc_tab,
      gc_crlf type c value cl_bcs_convert=>gc_crlf.
    parameters:
      mailto type ad_smtpadr
       default 'ur mail id'.                    "#EC *
    data send_request   type ref to cl_bcs.
    data document       type ref to cl_document_bcs.
    data recipient      type ref to if_recipient_bcs.
    data bcs_exception  type ref to cx_bcs.
    data main_text      type bcsy_text.
    data binary_content type solix_tab.
    data size           type so_obj_len.
    data sent_to_all    type os_boolean.
    start-of-selection.
      perform create_content.
      perform send.
    form send.
      try.
          send_request = cl_bcs=>create_persistent( ).
        create document object from internal table with text
          append 'Hello world!' to main_text.                   "#EC NOTEXT
          document = cl_document_bcs=>create_document(
            i_type    = 'RAW'
            i_text    = main_text
            i_subject = 'Test Created By BCS_EXAMPLE_7' ).      "#EC NOTEXT
        add the spread sheet as attachment to document object
          document->add_attachment(
            i_attachment_type    = 'xls'                        "#EC NOTEXT
            i_attachment_subject = 'ExampleSpreadSheet'         "#EC NOTEXT
            i_attachment_size    = size
            i_att_content_hex    = binary_content ).
        add document object to send request
          send_request->set_document( document ).
        --------- add recipient (e-mail address) -----------------------
        create recipient object
          recipient = cl_cam_address_bcs=>create_internet_address( mailto ).
        add recipient object to send request
          send_request->add_recipient( recipient ).
        ---------- send document ---------------------------------------
          sent_to_all = send_request->send( i_with_error_screen = 'X' ).
          commit work.
          if sent_to_all is initial.
            message i500(sbcoms) with mailto.
          else.
            message s022(so).
          endif.
      endtry.
    endform.                    "send
    form create_content.
      data lv_string type string.
      data ls_t100 type t100.
    columns are separated by TAB and each line ends with CRLF
      concatenate 'This Is Just Example Text!'                  "#EC NOTEXT
                  gc_crlf gc_crlf
                  into lv_string.
    header line
      concatenate lv_string
                  'MSGID'    gc_tab
                  'MSGNO'    gc_tab
                  'Language' gc_tab                             "#EC NOTEXT
                  'Text'     gc_crlf                            "#EC NOTEXT
                  into lv_string.
    data lines
      select * from t100 into ls_t100
        where arbgb = 'SO' and msgnr = '182'.
        concatenate lv_string
                    ls_t100-arbgb gc_tab
                    ls_t100-msgnr gc_tab
                    ls_t100-sprsl gc_tab
                    ls_t100-text  gc_crlf
                    into lv_string.
      endselect.
      select * from t100 into ls_t100
        where arbgb = 'SO' and msgnr = '316'.
        concatenate lv_string
                    ls_t100-arbgb gc_tab
                    ls_t100-msgnr gc_tab
                    ls_t100-sprsl gc_tab
                    ls_t100-text  gc_crlf
                    into lv_string.
      endselect.
      try.
          cl_bcs_convert=>string_to_solix(
            exporting
              iv_string   = lv_string
              iv_codepage = '4103'  "suitable for MS Excel, leave empty
              iv_add_bom  = 'X'     "for other doc types
            importing
              et_solix  = binary_content
              ev_size   = size ).
        catch cx_bcs.
          message e445(so).
      endtry.
    endform.                    "create_content
    Thanks.

  • How to access excel(macros defined) in Infoview?

    Hi All,
    Can anyone help me out to know how to view Excel with Macros in Infoview.
    Regards,
    Anisa

    Hi,
    So you mean to say, I just need to use the ConnectionManager.getConnection() method. It requires a pool connection name. Do I specify the same pool name as in the connectionmanager.xml config file ? And that will do it ? Please clarify. Following is a code snippet. Please verify if this is correct.
    Connection conn = null;
    try
    conn = ConnectionManager.getConnection(poolname);
    if(conn == null) {
    throw new IOException("No such connection found");
    thanks,
    Mainak

  • How to view data in Xcelsius from an external Excel file

    Hi Everyone,
    i wonder if you know How to view data in Xcelsius from external Excel file and not depend only on the emebded excel sheet.

    Hi,
    As per my understanding, excel has to be imported in Xcelsius to draw up the dashboard. Your aggregated data sits in the xlf file. Using an external excel file will not be possible (I guess).
    One of the ways to connect to an external excel, is the use XML Maps but then your data has to be in the form of XML which will be pulled into excel first and then needs to be brought in Xcelsius using Data Manager.
    You can explore XML Maps in xcelsius in SDN.
    Regards
    Nikhil

  • How to view an attachment (in a forum post)?

    http://forums.adobe.com/thread/419236 - the poster inserted a jpg attachment, but I cannot find how to view that attachment. Left-clicking, right-clicking, double-clicking... all does not do anything?
    Does anybody here know how to view an attachment in this new forum? I've seen this kind of unviewable attachments a couple of times, although some attachments pose no problem, as this

    Thank you very much; I can do that, but most forum posters (seeking help) won't know that...
    Anyway, just testing it:
    good - that works!
    P.S. of course that works for images only; not other documents.

  • How to view an attachment (in this forum)?

    http://forums.adobe.com/thread/419236 - the poster inserted a jpg attachment, but I cannot find how to view that attachment. Left-clicking, right-clicking, double-clicking... all does not do anything?
    Does anybody here know how to view an attachment in this new forum?
    P.S. just for fun I am also attaching a jpg file with this post.

    - this one works? I wonder why it doesn't work in the other post; it says QUEUED.

  • How to VIEW two tracks's materials SIMULTANEOUSLY and SYNCHRONIZED in MONITORS?

    How to VIEW two tracks's materials SIMULTANEOUSLY and SYNCHRONIZED in MONITORS?
    "Program-monitor" shows the final edited material, and "Source-monitor" shows only one track at a time, and NOT SYNCHRONIZED with the sequence. "MultiCam-monitor" shows the tracks as I need, BUT editing is very stiff:  I want to do edits+cross-fades by hand IN THE TIMELEINE rather than by clicking the monitors. (Some of the "MultiCam-monitor's" other problems: 1) the timeline's time-inspector doesn't move while clicking the monitors, 2) vice-versa: monitor-image doesn't roll when the space-key is pressed for playback the timeline, 3) monitor doesn't show the cross-fades.....)   I understand the "Reference-monitor" doesn't help either at this.
    I would SO much like to SEE all tracks' materials simultaneously in whatever monitor, to edit efficently in the timeline.
    Software: Premiere CS3 version 3.2.0
    Operating System: Mac OS X (v10.4)

    You can only do this in the multicamera monitor.  That's what it's there for.  Proper procedure is to cut there, then go to the timeline and add transitions.
    If you're multicamera monitor playback isn't working correctly (I admit having a hard time understanding your points here), then try solving those.

  • How to View Archived attachment in FI document

    Hello Gurus,
    We have a issue regarding to view attachment that was attached to Fi document.
    Document was posted on last year and some mail attachment attached to that document.
    We are able to view the attachment because it is archived.
    Could you please let us know  any one how to view attachment that is archived status.
    Thanks & Regards,
    Shanthi

    Hi,
    There is no standard procedure for change of BSEG table. You could develop your own using CHANGE_DOCUMENT function module.
    Regards,
    Eli

  • How to process Excel attachment contents?

    I'm looking to read excel attachments to an instance and use attachment contents in the process. Any help will be highly appreciated.
    Thnx,
    MK
    Edited by goelmk at 11/19/2007 10:19 AM

    I can think of two alternatives:
    1- Use COM (introspect Excel, and use it to open the files)
    2- Use a Java library that can read Excel (for example:
    http://poi.apache.org/ )
    You must first download the attachment to a temporary folder. The filename
    should be unique (i.e.: you can use the instance number as part of the
    name 'this.id.number')
    The following code should download all attachments:
    bytesWritten as Int
    fileName as String
    files as String[]
    //Download all attachments
    for each attachment in attachments
    do
         fileName = attachment.fileName + "_" + this.id.number
         writeFromBinaryTo BinaryFile
              using data = attachment.contents,
                   name = fileName,
                   append = false
              returning bytesWritten
         if bytesWritten != attachment.contentSize then
              //Something is wrong, handle de error...
         else
              files[] = fileName
         end
    end
    for each file in files
    do
         //Use the desired API to process each of the files
    end
    Which choice of API you use, depends on the environment, performance
    constraints, etc. If you choose COM, you must make sure that the
    downloaded files are available on the machine where the COMBridge is
    running (for example by using a network share), and that you're not
    overloading Excel (i.e. not too many concurrent instances, Excel is not
    intended for heavy concurrent use).
    POI should be easier to work with, but your mileage may vary depending on
    how 'standard' the Excel files are (macros that run on load, probably
    won't work).
    Hope this helps,
    Juan
    On Mon, 19 Nov 2007 15:19:36 -0300, Manoj Goel wrote:
    I'm looking to read excel attachments to an instance and use attachment
    contents in the process. Any help will be highly appreciated.
    Thnx,
    MK
    Edited by goelmk at 11/19/2007 10:19 AM--
    Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

  • How to view all secondary monitors on main display

    I have 2 secondary monitors plus my 27inch main ... and they all work ! However,What I would like to know is....Is there a way to see the secondary monitors on the main 27 ? ......example : one of the secondary monitors, is in another room .. how can I view whats on that monitor from the main 27in ? Thanks in advance for any/all help ! .. if you have any questions please feel free to ask......
    J

    Okay, the DDL method is not going to work. Let me go back to my original question:
    I use this command to view the source of a procedure, but I still cannot select source from a remote server across a dblink. How do I specify the remote schema with the user_source?
    select line, text
    from user_source
    where type='PROCEDURE'
    and name='MY_PROC1'
    order by line;
    or this:
    ...from sys.user_source...
    or this:
    ...from sys.user_source@dblink1...
    To APC: Regarding your comments about reading the docs, understanding privileges, decent source control and configuration management, etc., I would like to offer a few arguments which I think invalidates these (your entrenched) assumptions about proper Oracle development and the use of forums. Contact me offline if you are interested in learning more about the superior approach to development my work embodies.
    Edited by: user652257 on Jun 23, 2009 12:50 PM

  • As a baseball coach how can I view Ubersense on a monitor?

    How do I view Ubersense  on a monitor from my iPad?

    Hi, I'm not sure of what you mean by monitor - your computer monitor, a monitor at a facility, a projector screen, etc. There are different solutions for each of these. So see if this link below helps. Also note, that you'd want to have the ubersense videos in your camera rollon your ipad (Ubersense site might help you with that.) Also, if you decide on the Apple tv option, it's small, wireless and very portable.
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm
    Hope this helps.

  • How can i view excel on my iPhone 5s, with my ipad4 and the same ios7 viewing works without  3rd party App

    How can i view excel on my iPhone 5s ?
    with my ipad4 and the same ios7, viewing works without  3rd party App

    Dude or hot-spur,
    Not fishy at all!!!! You really think I would have taken any more of my time to post a bogus rant? We'll no, it is unfortunately all true. I want to hear from anyone who is experiencing such problems not anyone else that wants to put there two cents in. I really don't need anymore hate or negativity. Just people's experiences because I feel like I am the only one having so many problems. Thank you
    Yes, I have had some unfortunate bad luck to have so many problems at the same time, but some of them are just things you cannot do on the new OS.
    Thank you again

  • How to sync & view Excel file

    How to sync & view Excel file(s)?

    You have to purchase an application that supports them.  Either docs to go or quick office will work..

  • Viewing HD on SD monitor... something amiss

    Is this normal? I have a ProRes Compressor setting in Sequence settings and DVC Pro HD as my sequence setting. I am viewing on an SD monitor using a Firewire cable attached to a DSR-25. Far as I know this deck does not have any downconvert settings for HD to DV. How am I able to view this. It is keeping up with every frame, over a network even... Is that what ProRes does? It isn't premium quality or anything... that is... I wouldn't try to color correct with it... but I am just surprised I can see anything at all... Did I miss a memo or something...?

    I thought FCS2 allowed for HD formats to be monitored in SD. I found this in the manual under new features in FCP 6/External Video Monitoring. Not sure this helps. Perhaps the sequence compressor setting needs to be set to SD uncompressed.
    External Video Monitoring
    You can now output to external video interfaces whose settings don’t match those of
    your sequence. Here are some examples of some of the possibilities:
    A DV or HDV sequence output to an SDI signal on a third-party interface
    An uncompressed NTSC or PAL sequence output to a DV FireWire output
    An HDV sequence output to a DV FireWire output
    Sequence and output formats must have compatible frame rates. For example,
    sequences with a frame rate of 60, 30, or 24 fps can be output to a 30 fps device,
    but not to a 25 or 50 fps device. Also, when an output device does not match your
    sequence settings, additional real-time processing is required. This means that
    segments that already require a lot of real-time processing power may need to be
    rendered to play back.

Maybe you are looking for