Importing Office documents

why can�t Star Office open excel documents which are protected with a password. Is there an solution ???

This forum is for problems with "Sun Update Connection". We are unable to help with StarOffice questions. You may wish to try another forum.

Similar Messages

  • Trouble when embedding a Bean in an Office Document

    Hello all,
    I have to embed a Java Bean into an ActiveX Container like a MS Office document via the axbridge.
    Let me mention, what I have (successfully) done so far:
    - Create a Java Bean
    - Create a Jar file (incl. the manifest file)
    - Run the packager and register the Object
    - Test the control in the MS ActiveX Control Test Container
    System: Win2k, JSDK 1.4.2, JRE 1.4.2_03, Office 2000, Visual C++ 6.0 SP 3
    The ActiveX control works fine in the MS test container. When I try to embed it in another Container like a MS Office document or Macromedia Authoware, the Container Program hangs up without an error message. Also the Java Console contains no message.
    On the other side, the Control can successfully be created and used within VBA:
    Sub myTestApplet()
        Set myTest = CreateObject("TestApplet.Bean.1")
        �
        Set myTest = Nothing
    End Sub Doing so, the control works correctly, but isn�t displayed in the document.
    I tried to use different Superclasses for the Bean like Component, JComponent, Panel etc. and at last I used an empty Bean inherited from JComponent. Every try works well in the MS test container, but as soon as I try to embed it into an Office-Document the Application hangs up.
    The ActiveX Bridge from the 1.4.2 SDK/JRE Bundle doesn�t work at all, even not in the MS test container. Thus I installed the 1.4.2_03 JRE, which makes the controls work in the MS test container (but still not in other Containers).
    Can somebody help me? I have no idea for a workaround and I�m blocked now. Any advice is very welcome!
    Regards,
    Oliver

    Thank you very much for your interest at my problem.
    I try to describe exactly, what I do: I want to integrate a Java3D program into a Macromedia Authorware application. Therefore I want to convert the Java3D program into an ActiveX control (and use the ActiveX Bridge). Authorware must be able to access methods of the J3D program and the J3D program must be able to throw events to Authorware. I think this is nothing special for an ActiveX control.
    In order to avoid additional problems, I use a simple test application without Java3D (source code enclosed).
    I work on:
    WindowsXP,
    JSDK 1.4.2, JRE 1.4.2_3,
    Visual C++ 6.0 SP3 and I also tried Visual Studio .NET.
    Authorware 7
    MS Office 2000
    What have I done so far?
    - compiled the code and created a jar archive (manifest file enclosed)
    - packaged and registered the Bean as described in http://java.sun.com/j2se/1.4.2/docs/guide/beans/axbridge/developerguide/index.html
    - successfully tested the ActiveX control in the ActiveX Control Test Container. The exported methods appear (and work) correctly when I choose "invoke methods".
    Now to the problem(s): If I try to embed the control in Authorware or an office document via the ToolBox, the container program hangs up. But as already mentioned above, Visual Basic .NET embeds the control successfully. Therefore I try to create an ActiveX control in VB .NET, which integrates my Java Bean. Let's say a wrapper control. Here are the steps:
    - I opened Visual Studio .NET and created a new VB project based on template "Windows Application".
    - added the Bean to the ToolBox
    - added the Bean into the VB Form.
    - added a button into the form. The form designer created the Bean and button as:Friend WithEvents AxActiveXTest1 As AxActiveXTest.AxActiveXTest
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Me.AxActiveXTest1 = New AxActiveXTest.AxActiveXTest()
    Me.Button1 = New System.Windows.Forms.Button() - in the form designer double clicked the button and entered the following code: Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Me.AxActiveXTest1.appendText("Hello World")
    End Sub- test the form and click on the VB button.
    Now the error message listed above appears ("cannot invoke method 'appendText' at this time"). I have no idea, why VB crashes when I try to access a method of the Bean. Somewhere I must have made an error. Each assistance is very welcome.
    Thank you in advance and please excuse my less good English.
    Oliver
    Source code:
    1. Class ActiveXTest package de.acns.test;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.beans.*;
    import java.io.*;
    * class ActiveXTest
    public class ActiveXTest extends JPanel implements Serializable,
                                                       PropertyChangeListener
        // member variables
        private PropertyChangeSupport propertySupport;
        /** Creates new form ActiveXTest */
        public ActiveXTest() {
            propertySupport = new PropertyChangeSupport( this );
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        private void initComponents() {
            java.awt.GridBagConstraints gridBagConstraints;
            jButton1 = new javax.swing.JButton();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            setLayout(new java.awt.GridBagLayout());
            jButton1.setText("Click Here!");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 0;
            gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);
            add(jButton1, gridBagConstraints);
            jScrollPane1.setMinimumSize(new java.awt.Dimension(160, 100));
            jScrollPane1.setPreferredSize(new java.awt.Dimension(160, 100));
            jTextArea1.setPreferredSize(new java.awt.Dimension(50, 50));
            jScrollPane1.setViewportView(jTextArea1);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 1;
            gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);
            add(jScrollPane1, gridBagConstraints);
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            // Add your handling code here:
            appendText("You clicked the java button.\n");
         * Public methods to export
        public void appendText( String text)
            jTextArea1.append(text);
        public void setText( String text )
            String oldValue = jTextArea1.getText();
            jTextArea1.setText( text );
            propertySupport.firePropertyChange("TEXT", oldValue,
                                               jTextArea1.getText());
        public String getText()
            return jTextArea1.getText();
         * PropertyChangeListener Support
        public void addPropertyChangeListener(PropertyChangeListener listener) {
            propertySupport.addPropertyChangeListener(listener);
        public void removePropertyChangeListener(PropertyChangeListener listener) {
            propertySupport.removePropertyChangeListener(listener);
         * static main method, enables the bean to be testet "standalone"
        public static void main( String[] args)
            // Create a new instance and add it to a JFrame
            ActiveXTest activeXTest = new ActiveXTest();
            JFrame      frame       = new JFrame("Testapplication");
            activeXTest.addPropertyChangeListener(activeXTest);
            frame.setDefaultCloseOperation(frame.HIDE_ON_CLOSE);
            frame.addWindowListener(new WindowAdapter()
                public void windowClosing( WindowEvent e )
                    System.exit(0);
            frame.getContentPane().setLayout( new GridLayout ());
            frame.getContentPane().add( activeXTest );
            frame.validate();
            frame.pack();
            frame.setLocation( (Toolkit.getDefaultToolkit().getScreenSize().width 
                                 - frame.getWidth())  >> 1,
                               (Toolkit.getDefaultToolkit().getScreenSize().height
                                 - frame.getHeight()) >> 1 );
            frame.show();
         * For testing purposes only, when the bean is
         * created by the static main method
        public void propertyChange(PropertyChangeEvent evt)
            System.out.println("Property \"" + evt.getPropertyName()
                                + "\" wurde von \"" + evt.getOldValue()
                                + "\" in \"" + evt.getNewValue()
                                + "\" ge?ndert");
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTextArea jTextArea1;
        // End of variables declaration
    } 2. ActiveXTestBeanInfopackage de.acns.test;
    import java.beans.*;
    * class ActiveXTestBeanInfo
    public class ActiveXTestBeanInfo extends SimpleBeanInfo {
        // Bean descriptor information will be obtained from introspection.
        private static BeanDescriptor beanDescriptor = null;
        private static BeanDescriptor getBdescriptor(){
            // Here you can add code for customizing the BeanDescriptor.
            return beanDescriptor;     }
        // Properties information will be obtained from introspection.
        private static PropertyDescriptor[] properties = null;
        private static PropertyDescriptor[] getPdescriptor(){
            // Here you can add code for customizing the properties array.
            System.out.println("ActiveXTestBeanInfo: Properties werden exportiert:");
            try
                // create the property descritpors
                properties = new PropertyDescriptor[]
                    new PropertyDescriptor( "text", de.acns.test.ActiveXTest.class )
                // For debugging purposes only
                for( int i=0; i<properties.length; i++)
                    System.out.println(properties.getShortDescription() );
    System.out.println(" ");
    catch( Exception e )
    e.printStackTrace();
    return properties; }
    // Event set information will be obtained from introspection.
    private static EventSetDescriptor[] eventSets = null;
    private static EventSetDescriptor[] getEdescriptor(){
    // Here you can add code for customizing the event sets array.
    return eventSets; }
    // Method information will be obtained from introspection.
    private static MethodDescriptor[] methods = null;
    private static MethodDescriptor[] getMdescriptor(){
    // Here you can add code for customizing the methods array.
    System.out.println("ActiveXTestBeanInfo: exportiere Methoden:");
    try
    // create the method descriptors
    methods = new MethodDescriptor[]
    new MethodDescriptor( ActiveXTest.class.getMethod("appendText", new Class[]{String.class}))
    // For debugging purposes only
    for( int i=0; i<methods.length; i++)
    System.out.println(methods[i].getName());
    System.out.println(" ");
    catch( Exception e)
    e.printStackTrace();
    return methods; }
    private static int defaultPropertyIndex = -1;
    private static int defaultEventIndex = -1;
    // Here you can add code for customizing the Superclass BeanInfo.
    * Gets the bean's <code>BeanDescriptor</code>s.
    * @return BeanDescriptor describing the editable
    * properties of this bean. May return null if the
    * information should be obtained by automatic analysis.
    public BeanDescriptor getBeanDescriptor() {
    return getBdescriptor();
    * Gets the bean's <code>PropertyDescriptor</code>s.
    * @return An array of PropertyDescriptors describing the editable
    * properties supported by this bean. May return null if the
    * information should be obtained by automatic analysis.
    * <p>
    * If a property is indexed, then its entry in the result array will
    * belong to the IndexedPropertyDescriptor subclass of PropertyDescriptor.
    * A client of getPropertyDescriptors can use "instanceof" to check
    * if a given PropertyDescriptor is an IndexedPropertyDescriptor.
    public PropertyDescriptor[] getPropertyDescriptors() {
    return getPdescriptor();
    * Gets the bean's <code>EventSetDescriptor</code>s.
    * @return An array of EventSetDescriptors describing the kinds of
    * events fired by this bean. May return null if the information
    * should be obtained by automatic analysis.
    public EventSetDescriptor[] getEventSetDescriptors() {
    return getEdescriptor();
    * Gets the bean's <code>MethodDescriptor</code>s.
    * @return An array of MethodDescriptors describing the methods
    * implemented by this bean. May return null if the information
    * should be obtained by automatic analysis.
    public MethodDescriptor[] getMethodDescriptors() {
    return getMdescriptor();
    * A bean may have a "default" property that is the property that will
    * mostly commonly be initially chosen for update by human's who are
    * customizing the bean.
    * @return Index of default property in the PropertyDescriptor array
    *           returned by getPropertyDescriptors.
    * <P>     Returns -1 if there is no default property.
    public int getDefaultPropertyIndex() {
    return defaultPropertyIndex;
    * A bean may have a "default" event that is the event that will
    * mostly commonly be used by human's when using the bean.
    * @return Index of default event in the EventSetDescriptor array
    *          returned by getEventSetDescriptors.
    * <P>     Returns -1 if there is no default event.
    public int getDefaultEventIndex() {
    return defaultEventIndex;
    3. manifest file manifest.mf
    Manifest-Version: 1.0
    Name: de/acns/test/ActiveXTest.class
    Java-Bean: True

  • Why can't I see MS Office Documents in Facebook on the iPad?

    I tried to do a search and did not come across an answer.
    One Facebook group heavily shares documents by posting in the file section for our group.  However, if I'm on the iPad, I cannot see any Office documents whatsoever...it's as if they don't exist at all in the group (for example, on the iPad, the group only shows 45 files, when really there are over 100).  I have to go to a computer to see them.
    Does anyone know why this might occur, or if there are settings I can change in order to "see" the Office files?  I have Pages, Keyboard, and Numbers, so I know I'll be able to work with the files, but I'd like to be able to actually SEE the files.
    Any info would be great!
    Thanks so much!
    Truly,
    Michelle

    When you enable Photo Stream on your devices, only new photos you take or import to those devices will be automatically added to your Photo Stream. Existing photos won't.

  • Dreamweaver CS6 importing word document

    Running dreamweaver cs6 on OS x 10.8.1
    One of the new options in dreamweaver cs6 is importing word documents. (file, import, word document). In OS x I can't find this option. Other option is to drag the word document in dreamweaver page.
    Both I can't find/ not working.
    Dreamweaver working under operating system windows 7 can operate quite well!!
    Please help me out

    That doesn't matter at all. Of course it will have to be reformatted. The reality is web developers who move content will be asked to incorporate Office material in web pages. It would be nice to be able to handle this input internally rather than having to invoke Office apps to manually move it. It's especially irksome when you have to do it 20 times a day.
    BTW, I found out this is only a case on a Mac. Windows Dreamweaver CC has it.

  • Office documents in FR Books

    Hi,
    I have created a book in workspace. I have imported two FR reports into the Book and one Excel file.
    The FR reports are printed when previewing in PDF, but not the Excel file.
    I want to mix office documents and FR reports in my book. Is this possible and what am I doing wrong?
    Thanks
    Frans

    Do you have Microsoft Office installed on the Print Server?

  • How to get Office documents on iPhone

    Reading "What's new in Lion, OSX, it states that you can retrieve iWorks AND OFFICE documents through iCloud.  It says you go online through you iphone and click on what you want.  When I go online, all I get is the option for Keynote, Pages and Numbers.  How can I get my Office documents on my iPHone?

    AnzeZadravec wrote:
    I think you need keynote, pages and numbers. but i dont know exactly because im using quickoffice
    Without purchasing the three iOS apps there is no up / download of files to icloud.com possible. The iwork section in the web-portal will stay locked and only show advertises until you own these apps. Then it will transform into a Folder-manager with upload options.
    The iOS iwork apps themself  import MS Office 97 - 2011 formats plus Mac iwork09 formats. Downloading documents from www.icloud.com offers options to d/l as pdf, doc/xls/ppt , key/page/number file extensions.

  • DFS-R - Office Documents locked problem

    Dear Forum Members,
    Recently I faced a really "threatening" problem, which you may seen before so know the solution for it. We had an old File Server, used Disk2VHD to move it's complete D: drive to another Windows Server 2012 R2. After this, we enabled DFS replication
    for the whole drive to another Active Directory site WS2012R2 file server (just for backup). It is important that we use DFS-N for users to discover this share but they have folder targets JUST for the first one server, the second one is just for backup purposes.
    The problem is that DFS-R comes with default exclusions (~*, *.bak, *.tmp), but in order to keep full sync, we removed them. Now users complain that several times they can not save Office documents (typically excel) because the files are locked! Even for
    NEW files, when they try to save an .xls/.xlsx from Outlook, the file is imeediately locked!
    After this we put back the exclusions immediately, because we taught that the problem comes from the Office temporary files. The event log contained a lot of warnings that tmp files could not be synced because of locked. Now I can not see other tmp files
    warnings anymore, but there are still warnings in the DFS log, for example:
    Event ID 4302 - The DFS Replication service has been repeatedly prevented from replicating a file due to consistent sharing violations encountered on the file. The service failed to stage a file for replication due to a sharing violation.
    And this is for an .xlsm file.
    What else could be the problem? Has anyone ran in this situation already?
    Thank you a lot for any help,
    Best Regards,
    Christian

    Hi,
    Sorry for the delay reply.
    DFS Replication uses staging folders for each replicated folder to act as caches for new and changed files that are ready to be replicated from sending members to receiving members. These files are stored under the local path of the replicated folder in
    the DfsrPrivate\Staging folder. So if no new files and changed files, the folder is empty.
    For more detailed information, you could refer to the similar thread about
    DFS Staging Folder
    https://social.technet.microsoft.com/forums/windowsserver/en-US/239ecfc9-5cac-436f-b2a7-291d7535b26c/dfs-staging-folder
    Regards.
    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]

  • Error when importing Word documents

    Hallo
    I'm using RoboHelp 8 from the Technical Communication Suite.
    When I try to import a doc/docx file for my HTML help I get the message: 'The Import Word Document Wizard cannot locate a supported version of Microsoft Word. Please install Microsoft Word 2000 or newer.'
    Actually I have Microsoft Word 2010 installed in its default path.
    Do I have to set some particular options? Some days ago I had my PC replaced with a new one and I had to reinstall all of my programs. I think I've missed some settings.
    Thank you

    Strange
    I was working with Office 2010 and RH8 almost without problems with my old PC. Maybe the colleagues from our EDP department have installed a different version of MS Word (a newer service pack?).
    I'll try to modify the registry as suggested in http://forums.adobe.com/message/2991411
    thank you

  • Importing Scanned Documents - Default Filename

    Hi, recently had a problem with CS5 and importing documents which meant I had to stop a project part way through.
    Basically what I am doing is importing 25 documents to one folder and am happy to allow Photoshop to name them untitled-1, untitled-2 etc. Before the problem I had imported 12 documents in the same session and Photoshop had named them untitled-1 through to 12. Now I have resolved my initial problem and restarted Photoshop the naming of page 13 has reverted back to untitled-1.
    Is there any way when starting a new session of Photoshop to make the first imported document, in my case, untitled-13 by default with subsequent scans being 14, 15 etc.
    System - Windows XP SP3
    Thanks

    Some observations for your consideration:
    Adobe's release of Acrobat 9.2 provided the first Acrobat designed to support Windows 7.
    Adobe's release of Acrobat X provided the first PDFMaker that supported MS Office 2010 (32-bit) applications.
    With that said, Acrobat Pro (8 or 9) provides an out-of-the-box Sequence to OCR one or many PDFs.
    A Batch Sequence, run from Acrobat Pro would be used.
    Acrobat X uses Actions to provide additional actions in addition to running Batch Sequences.
    Post process "touchup" of OCR can certainly be done. A file by file, manual endeavor.
    Labor intensive. Very much a challenge if OCR output is from Searchable Image or Searchable Image (Exact).
    Edit: Acrobat, when used to perform PDF creation from a scanner does have a configuration setting to add OCR to the process.
    Be well...
    Message was edited by: CtDave

  • The Import Word Document Wizard cannot locate a supported version of Microsoft Word

    Hello guys,
    I'm currently evaluating RoboHelp HTML 8.0.2.208. I'd like to import an existing Word document to a fresh new RoboHelp project. Unfortunately, everytime I've got the message below:
    "The Import Word Document Wizard cannot locate a supported version of Microsoft Word"
    "Please install Microsoft Word 2000 or newer."
    I tried with several Word 2003 and Word 2010 documents but with no success.
    Could someone help me?
    Thans by advance

    Hi there
    I think it would probably be safe to assume that the next version will support Office 2010. I think logic alone can tell us that much.
    The larger question would be to ask when that next version is likely to appear. And my own purely unscientific speculation will be to hold the envelope to my head like the great Johnny Carson did. I proclaim we will see a new version appear some time in 2011. As to whether that will be early or late 2011, only Adobe can actually say for certain. Or even if a version will appear during that year!
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcererStone Blog
    RoboHelp eBooks

  • How to integrate and index SAP R/3 Office documents into  resp. through KM

    Hi,
    Is there a way to integrate an existing store of SAPOffice documents on R/3, stored by default in the SAP R/3 table SOFFCONT1 (KPro repository SOFFDB), into the KM on the portal, so that these documents can be indexed and searched through TREX from the portal ?
    I know there is the SAP DMS KM Connector available right now, but apparently this connector only allows access to documents stored in DMS on R/3.
    What the best approach to this problem.
    Could a migration of these documents to SAP Content Server be a solution ?
    Thanks in advance for your input.
    Message was edited by: Theo Paesen

    Vishal,
    Thanks for your suggestions.
    I think building a custom connector (RM) is indeed the best option.
    I am not an ABAP developer, more familiar with KMC
    Could you point me to some more detailed information on the BDS/KPro APIs. Are these also available as BAPIs, callable from an external Java application.
    Something else, the SAP Office documents I am referring to are actually attachments to Notifications in R/3s QM module. So, the documents I want to build a RM for are   these QM notifications (the parent business documents) and their related attachments (the SOFFCONT1 stored docs).
    Could you point out which RFC modules I will need to get at both (bizdoc + attachments).
    Thanks in advance for your input

  • Prompting the credentials while click MS office documents in document library in SharePoint Foundation 2010

    Hi,
    I have site with contains many document library each contains many MS Office and Pdf files. We have provided document library level access rights. While users click the file name, "Prompting the credentials while click MS office documents in document
    library in SharePoint Foundation 2010".
    Its annoying the user.
    How could i resolve this? Its for all users.
    Note: only for MS Office file. other files are opening correctly.
    Kind Regards
    Poomani Sankaran

    Hi,
    According to your post, my understanding is that you got the promote issue when clicked the documents in the library of the SharePoint foundation server.
    The issue may be caused that the Kerberos authentication is misconfigured, you can change to NTLM to check whether it works.
    http://www.techrepublic.com/blog/smb-technologist/prevent-unwanted-credentials-prompts-with-sharepoint-document-libraries/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Microsoft Office Documents in iCloud CAN Be Done...

    Hey everyone,
    I wanted to share my experience as I've seen threads saying it can't be done and a lot of people confused as to, why not? Here's my method of working so hopefully everyone can enjoy this feature like I am. The image below IS a Word document but it's for my solicitor so has personal info on it.
    Just list a few specs I'm using as the system layout might be different to yours;
    OS X Mavericks 10.9.3
    Microsoft Office 2008 for Mac
    MacBook Pro Mid 2009 model
    Step 1: Test Document
    Go to Applications and open up 'TextEdit' and click the bottom left hand corner which states 'New Document' and type whatever you want, maybe 'test text'. Go to save and choose a name to save the document under BUT in the field where it says 'Where' choose iCloud... There's a method to my working.
    Step 2: Finding the 'Hidden' Library folder in Finder and Mobile Documents
    Click 'Finder' and at the top menu bar find 'Go' and click that, with your finger on the options key simultaneously (my keyboard states 'alt' and has the squiggle for Options) then you should see Library pop up, click that. A whole new 'screen' should pop up and scroll down until you find 'Mobile Documents'. Open it up and this is where ALL the iCloud content is saved so don't try and delete or change too much in here if you can help it. Go to the 'com~apple~TextEdit' folder and you should see your STEP 1 test document in there... So, we know it works now? Keep this open for the time being so you don't have to route through again...
    Step 3: Putting Microsoft Office Documents in iCloud
    Choose what WORD (Pages), EXCEL (Numbers) or POWERPOINT (Keynote) document you want to save in iCloud and open that document up as normal (so in Microsoft Office). Click SAVE AS and here's a pictured example below, save the document as .docx and save. You'll now have TWO of the same documents I have one which is compatible with Mac & Windows but the second is JUST for Mac (I believe) and this .docx is the one you'll need for iCloud.
    Step 4: Putting the Word or Document into iCloud
    Go back to your Finder window which has the Mobile Documents but then go to File > New Finder Window (So you have them side by side like the picture) > Locate your .docx Saved document and all you need to do is drag that file to the area you want it to go. So, if it's a 'Word' document you'll want to go to Pages as its equivalent. Open up the com~apple~Pages folder and you'll get two other folders and open the one on the left and drag the file into there.
    Step 5: Check it's actually in iCloud...
    Go to, www.icloud.com
    Sign in with your ID etc. and it'll be in there... If you have Pages etc. on your iPhone or iPad... i believe it'll be in there but I haven't got these on my iPhone or iPad. let me know how you do?
    Dave
    Message was edited by: DJB23

    Welcome to the Apple Community.
    You can share some word documents with pages on your iOS devices.
    If you want to upload documents that aren't for use with iOS devices this User Tip might be of interest.

  • Different behaviour between IE6 and IE on opening Office documents via KM

    Hi all,
    we're in the process of rolling out Internet Explorer 7 (IE7) and noticed something unexpected when opening non-html documents from a KM navigation iview. When clicking on the links in the ivew the documents are all opened in a new window because the hyperlink / href contains "target=_blank". When the document itself is for instance an Excel document, the browser will ask wether you want to open the document or not. When you choose to open the document, Excel launches and the blank IE6 window is closed in the background. When the user is done with the document he or she will return to the portal screen.
    This nice behaviour does not occur with IE7. The blank window remains open so when the user closes the Office document they are looking at an empty IE7 screen.
    Is there any way to fix this by customization or even by code change? It seems to me that this is more a SAP issue because for all HTML pages and for all documents that have IE plugins such as PDF'syou want to open a new window but for the others you want only the application to be lauched, not an empty IE.
    Message [3141588|https://www.sdn.sap.com/irj/sdn/thread?threadID=147594&messageID=3141588#3141588] seems to deal with the same problem and got a somewhat disturbing answer.
    The resource rendering parameter rndOpenTargetType does not seem to help see [Help.sap.com|http://help.sap.com/saphelp_nw70/helpdata/EN/87/3d48475ee8bd448c4031aa98d90524/frameset.htm]
    Marcel

    I found the solution on another site, superuser.com, so I can't claim the solution as my own, but it worked for me. Kent Ng says: 
    I face the similar issue with Excel 2003. If you have installed Skype-Click-to-Call, just removed it to resolve this issue.

  • What di I need on a Mac Mini to import Pages documents from an iPad-mini

    What do I need on my MacMini to import Pages documents from an iPad-mini?

    Plug in your iPad mini to the Mac mini. Open iTunes on the Mac. Select your iPad from the sidebar on the left. At the top, where it says "Summary," etc. choose Apps. Scroll down until you see a section for File Sharing. Find Pages. Select the document on the right. In the bottom right corner, select "Save to..." and choose where on your computer you want to save it.

Maybe you are looking for

  • Syncing iPhone and Mac and the room needed on iPhone

    Evening Forum is it me or when syncing my iPhone do i notice that the room needed to swap stuff over is used in a strange way? for example [and its not exact i know so go with my sizes here], my 32GB iphone has say 30GB left after apps and other thin

  • Fit browser width

    I have a project that I'm looking to have the background (about 300px tall) span the whole width of the browser. The background color is changing for each different page otherwise I would do it in HTML. I have the background larger than the artboard

  • How to raise application error and preserve open cursor...

    Hello, I have to raise an application error under certain circumstances. In some cases there's an open cursor that has to be read by the calling application anyway because there are data that have to be read. In other cases the cursor does not have t

  • Go_item(:detail.item) after query(F7) in master, frm-40737

    Dear friends, I have a master block and a detail block. When the master block ist queried, I want to go to a disticnt item in detail block, if there are records. Therefore I tried to put code in the post_query of the detail_block, which caused error

  • Schema Group Vendor - Pricing procedure

    Hi Experts, My predecessors have defined a Schema for a vendor (say ZP). Now this vendor schema along with the std. pur org schema is assigned to a pricing procedure (say ZP0001). we have condition type, and access sequence. When I try to create a Po