Editing (download/upload) of shared file ... ?

We have a customer using Filr for sharing files from NET folders to some external users for lecturing/corrections.
Therefore they must have a possibility to edit/modify files they have been shared to.
I have tested WebDAV in-place editing and it (a sort of) works. For me, at least. But it involves configuration of all that stuff with certificates on windows 7 ....
The problem is in external users's wide range of different hw/sw configurations which means a lot of support, writing of instructions...
Is there any way for external user to download a file he has been shared to, edit/modify it and upload it, instead of in-place editing ?
Internal user can do that with file inside NET folder.
External user can do it in the folder he has been shared to. But folders can be shared only from user's homes, not from NET folders.
Any idea? Or info when will it be possible to share folders from within NET folders to external users ?

BSajovic wrote:
>
> We have a customer using Filr for sharing files from NET folders to
> some external users for lecturing/corrections.
> Therefore they must have a possibility to edit/modify files they have
> been shared to.
>
> I have tested WebDAV in-place editing and it (a sort of) works. For
> me, at least. But it involves configuration of all that stuff with
> certificates on windows 7 ....
> The problem is in external users's wide range of different hw/sw
> configurations which means a lot of support, writing of
> instructions...
>
> Is there any way for *external user *to download a file he has been
> shared to, edit/modify it and upload it, instead of in-place editing ?
> Internal user can do that with file inside NET folder.
> External user can do it in the folder he has been shared to. But
> folders can be shared only from user's homes, not from NET folders.
>
> Any idea? Or info when will it be possible to share folders from
> within NET folders to external users ?
Adding the ability to share folders from within NF is definitely on the
roadmap, but right now is slated as a post-Filr 1.1 enhancement. For
now what you see are the options external users have: download the file
using the web/desktop/mobile clients, edit, and reupload; use WebDAV
edit-in-place; use WebDAV to map a drive to Filr and access the content.
Your world is on the move. http://www.novell.com/mobility/
We know what your world looks like. http://www.novell.com/yourworld/

Similar Messages

  • UNICODE Problem when Download/Upload from ASC file.

    Due to the Unicode system takes each Chinese character as a byte, the field(10) can take 10 Chinese Characters, not like before only 5 characters allowed.
    The problem is when the data is downloaded to a txt file, the field ,length 10, contained Characters, is displayed 10 Chinese characters(that's 20 bytes in txt file). It causes the displayed field length are changed.
    ex.
    text = '12@@@@@00012345'.
    text = text+0(12) --> display '12@@@@@' the output I actually want.
    text = text+0(12) --> display '12@@@@@00012' Unicode makes this in txt file,
    the Chinese characters cannot display properly, so just assume each '@' as a Chinese character.
    How to make system take the Chinese characters as 2 bytes when download....or any other better idea for this?
    anyone who can solve this, thanks in advance.

    Hi Prashant and Uwe,
    Thanks for your help. I used 'GUI_UPLOAD', but it still doesn't work.
    'Text1' still equal to '12@@@@@00012' , not '12@@@@@'
    My test problem as below:
    data: l_file type string.
            text1(20) type c.
    DATA: BEGIN OF T_FICH OCCURS 0,
             LIGNE(5000),
          END OF T_FICH.
      l_file = P_SOURCE.
      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                FILENAME            = l_file
               FILETYPE            = 'ASC'
               HAS_FIELD_SEPARATOR = 'X'
               Read_By_Line        = 'X'
                CODEPAGE            = '8400'
           TABLES
                DATA_TAB            = T_FICH
           EXCEPTIONS
                OTHERS              = 99.
    LOOP AT T_FICH.
       text1 = T_FICH-LIGNE+0(12).
    ENDLOOP.
    Could you give me some advise about this?

  • Peformance Turning for File Download / Upload with Enabled SharePoint Audit

    Greetings all, may I ask your help for Peformance Issues?
    Background:
    I tried to create a ASP.NET Web Page to download/upload/list SharePoint file and deployed to IIS website in same application server (will NOT use web part as some users are NOT allowed to direct access confidential workspace)
    Besides, for Audit Log record purpose, the page will impersonate (without password) the logged in user:
    SPUserToken userToken = web.AllUsers[user].UserToken;
    SPSite s = new SPSite(siteStr, userToken);
    For File Listing, the web service can provide fast response, and we are using service A/C for connection (as no auting for listing, but require audit for file download upload)
    Several implemeation options tested for File Downloiad / Upload, but issues occured and finding listed below:
    Issues
    1) SharePoint Object Model
    When I open Site (using new SPSite), it's too slow to respond. (under 1s for all operations, but require 10~50s for open SPSIte. e.g.
    using(SPSite s = new SPSite(siteStr) //50s
    How can I download/upload file without open SPSite object (using SharePoint object model, but user token should be kept to allow SHarePoint identifiy user actions. e.g. Updated by Tom, NOT system administrator)?
    2) SharePoint default web service
    For file download, I tried to use SharePoint Web Service for download file, it's quick but how can SharePoint record the audit log to downloaded user, and not service A/C? ( e.g. View by Tom, NOT system administrator)
    With Windows SSO solution, please note system should NOT prompt to ask user password for use impersonation
    3) HTTP Request API (for file download)
    As mentioned in point 2, if the system cannot get password from user, SharePoint also recorded service A/C in audit log... ><
    Thank you for your kine attention.
    .NET Beginner 3.5

    Thank you for prompt response, please find my reply with Underline:
    Hi,
    Maybe I'm not quite clear about the architecture you have now.
    Is your asp.net application deployed in separate IIS site but in the same physical server as SharePoint?
    Yes
    "we are using service A/C for connection", can you please explain the 'A/C'?
    Domain User, Local Admin and also SharePoint Service Admin A/C
    Opening SPSite is relatively slower but shouldn't take 50 sec. However it depends on your server hardware configuration. You should meet the minimum hardware requirements for SharePoint.
    Assigned double resources based on minimum hardware requirements.
    For details, 50s is the load test result. But for other SharePoint operation, it takes around/under 3s reponse time.
    Are you using SharePoint Audit log? Exactly If so then why don't you just put the hyperlink to the documents in your asp.net page. User maybe have to login once in SharePoint site but
    it depends on your security architecture. For example if both of your sites in local intranet and you are using windows integrated authentication, SSO will work automatically  User is NOT allowed
    to access SharePoint site/server (not implemented for sepreate server yet, as performance issues occured for
    separate site in same server)  directly from Internet, the
    middle server with web interface created for user request.
    Whatever I understands gives me the feeling that you download the file using HTTPWebRequest C# class. However regarding security it depends on how authentication is setup in asp.net web site and in sharepoint. If both site uses windows integrated security
    and they are in the same server, you can use the following code snippet:
    using (WebClient webClient = new WebClient())
    webClient.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
    webClient.DownloadFile("file ur in sharepoint", "download directory");
    Thanks, will try and reply later
    But still, as I've mentioned, not quite clear about the whole architecture.
    A) Request Handling
    1) User use browser to request file listing and/or download file (hereafter called: File Download Request) from custom ASP.NET page (Let's say In Server 1, IIS 1)
    2) ASP.NET page  or File Handler ashx (Server 1, IIS 1) call custom web service, SharePoint deault/OOTB web service or using SharePoint Object Model to access SharePoint Document Library (in Server 1,
    IIS 2)
    3) Both SharePoint and IIS Web Site
    (Server 1, IIS 1 & IIS2) using the same service A/C
    4) The web service , File Handler return file obeject to IIS1
    5) IIS 1 reply File Download Request to user
    B) Application Architecture (In testing environment)
    1) no load balancing
    2) 1 DB server (Server 2)
    3) 1 Application Server (with IIS 1 - ASP.NET, IIS 2, SharePoint Web Site with default SharePoint Web Service, IIS 3 SharePoint Admin Site & IIS 4 Custom SharePoint Web Service)
    4) Sepreate AD Server (Server 3)
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com
    .NET Beginner 3.5

  • How to edit a shared file on my Mac?

    Hi,
    Is it possible to edit a shared file on my Mac?
    I know it is possible on the web, using Numbers/Pages/Keynote for iCloud Beta. But I was wondering if it is also possible to download and edit the file.
    I think it is also important that the file automatically updates himself when edited on the Mac, so the other user could see my changes.
    So I don't have to download the file --> edit it --> upload the file.
    Hopefully there is a solution for this problem, otherwise I'm hoping this will come in the near-future!
    Kind regards,
    Berend

    challenged2012 wrote:
    How do I use a flash drive on my mac
    Since most flash drives are formatted for PC's rather than Macs, if you plan to use it only with a Mac, when it's plugged in, you can click on it in Disk Utility and partition it GUID and Mac OS Extended (Journaled). Note that if you've already got files stored on it, partitioning it will erase them.

  • FAQ: File Basics: How do I Upload, Download, Share, and Delete files in Revel?

    FILE BASICS
         Libraries:
    The top level of organization is Libraries
    Libraries can contain several albums.
    Libraries can have collaborative users that are invited to share. (requires Revel Premium) Invited users have access to add, delete and edit files. They must have a Revel account to do this.
         Albums:             
                     Albums contain photos
                     Albums cannot contain other albums
                     Albums can be shared with other users. They can be viewed, but not added or deleted by these users. People who view albums via shared links to not need to have a Revel account.
            *See SHARING topic below.
    CREATING LIBRARIES IN REVEL
    If you are a premium user, you can create additional libraries in Revel.
    CREATING ALBUMS  IN REVEL
    You can create new albums in your  revel library easily to help organize your photos. You can not have albums within albums. (nested albums)
    REVEL UPLOAD/IMPORT PHOTOS- copying files to Revel (cloud)
    From IPad, Iphone, Mac:  Upload to Revel is possible
    From a Browser: Upload to Revel is possible
    FROM Elements: Upload to Revel is possible
                How Do I upload files to Revel?
    REVEL DOWNLOAD/EXPORT PHOTOS FROM REVEL
    To Mac, IPhone, IPad:  export from Revel is possible (single or group export)
    To Android devices: export from Revel is possible (one file at at time)
    To computer using a web Browser: export from Revel is possible (one file at at time)
                 How Do I Download files from Revel?
    DELETING PHOTOS IN REVEL
    Deleting a file in Revel removes it from Revel (no devices will see it now) and removed it from the Elements Organizer. It should remain on the device in the original location.
    FAQ: How do I delete a file from Revel?
    DELETING FILES AND ALBUMS IN REVEL
                 FAQ: How do I delete a file or  an album from Revel?
    EDITING FILES IN REVEL
    You can open from and Save to Revel in the editors on mac/iphone/ipad. When you edit, your device will download the full image rather than having just the thumbnail.
    FAQ: How do I edit photos in Revel?
    SHARING FILES IN REVEL
    Collaborative sharing- can be done at the library level only. Other users are invited by email and must be logged into a Revel account to see the shared libraries.
    Read/download only sharing- can be done at the album level- a link is sent and the user does not need Revel to view them.
    Sharing of individual photos not currently available, creating your own personalized link name is not available
    FAQ: How do I share my photos in Revel?

    Hello All,
    As all you said I have used apache third party jars to upload a file into server.
    Thanks for help me out regarding this issue.
    But Now what the problem is When I run this locally it is running fine.
    When I deploy it on server It is giving the following exception.
    SRVE0026E: [Servlet Error]-[UploadLetter]: java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileUpload
    these files are in classpath.and successfully compiled but in runtime this is happening
    can anyone have any idea on this..??
    Please help me out.
    Thanks in advance.

  • How to upload a text file from a shared folder and provide an o/p

    how to upload a text file from a shared folder and provide an o/p  containing the details in each order in the text file

    Hi,
    Use <b>GUI_UPLOAD</b> to upload a text file from a shared folder.
    Use <b>GUI_DOWNLOAD</b> to download data in a file on the presentation server or use <b>OPEN DATASET, TRANSFER</b> and <b>CLOSE DATASET</b> statements to download data to the application server.
    Now, I hope the code for data fetching, if required, is already present in the report.
    Reward points if the answer is helpful.
    Regards,
    Mukul

  • In dreamweaver mx 2004 and dreamweaver cs4, how I configure, when download/upload do not ask me to include DEPENDED FILES but act without including ?

    in dreamweaver mx 2004 and dreamweaver cs4, how I configure, when download/upload do not ask me to include DEPENDED FILES but act without including ?

    Open the Preferences panel (Edit menu on Windows, Dreamweaver menu on a Mac), and select the Site category. There are two checkboxes there for dependent files. Make sure both are selected. The Dreamweaver default is NOT to upload/download dependent files. You need to click Yes, if you want the dependent files to be included.

  • Problem Uploading and Sharing Video Files

    I just uploaded a 3.3GB h.264 Quicktime movie to Creative Cloud. It took many hours. Now that it's finished uploading, I can't figure out how to play the video while logged into Creative Cloud, despite that fact that under information it's recognized as a mov and 3.3GB. And when I try to share using the link-in-email option, my friend can't play the movie or download it. When he tries to download it, nothing connects. Creative Cloud seems to be treating this movie as a single still image or something. Suggestions as to how to solve these upload and share video problems? I have a 2011 MacBook Pro with all possible upgrades, Mac OS X Version 10.6.8. Any help here much appreciated. One of the reasons I signed on for a year with Creative Cloud was to utilize this 20GB to share video in the way I've done through Dropbox.

    Thanks for the reply, Dave, but I don't think this is the problem. I've uploaded this h.264 Quicktime (which plays fine before uploading) a few times now and cannot download or share due to a very long period of "Connecting...", then the message "Problem loading page. The connection was reset. The conection to the server was reset while the page was loading. - The site could be temporarily unavailable or too busy. Try again in a few moments. - If you are unable to load any pages, check your computer's network connection. - If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web." Then I'm given the option to "try again". This or a similar message is what others get when trying to download when I try to share the file with them using the link-in-email method, and neither I nor any of those I try to share this with are having problems with internet connectiions or downloading other large video files from the internet. The reason I suspect that Creative Cloud can't deal with downloading larger files such as this 3.3GB Quicktime is that I have no problem uploading, downloading or sharing small Quicktime movies through CC, and they are identified the same way and look the same when uploaded to CC. I also have no problem downloading much larger video files from other sites on the internet, such as feature length films that are a lot larger than 3.3GB. It seems like only things that download quickly don't time-out, regardless of what browser I'm using. Does Creative Cloud's download system rely on files being able to be downloaded quickly in full before a browser's time-out? As I've mentioned before, I have no problem uploading, downloading, sharing, etc. using Dropbox. Long explanation here, I know, but I thought all this info might help in figuring things out. Any ideas as to what's going on?

  • Download & upload of an excel file

    Hi,
          I have a requirement where the data needs to be downloaded into an excel file and user will upload the same excel file after making required changes in the data.
    I have used 'GUI_DOWNLOAD' to download the data to excel file. I have tried to upload the same excel file using 'ALSM_EXCEL_TO_INTERNAL_TABLE' and 'TEXT_CONVERT_XLS_TO_SAP' function modules. But it is giving exceptions if I upload the same downloaded file directly. If I copy the data in the downloaded file to another excel file and upload this file, it is working.
    I have tried using 'GUI_UPLOAD' with field separator which was also specified in 'GUI_DOWNLOAD' but in this case the data is uploaded into the internal table like,.
    ###&jkj, 0000 .......
    Please suggest any other alternative.
    Thanks & Regards,
    Vishnu Priya

    Hi,
    You may like to give a try to this FM
    RH_START_EXCEL_WITH_DATA.it will take care of your formatting problem.
    go thru this program..
    *& Report  RHVERI_EXCEL_DOWNLOAD                                       *
    REPORT  rhveri_excel_download.
    DATA: g_excelpath    TYPE string,
          g_excelversion TYPE string,
          g_codepage     TYPE abap_encod,                       "XMK#754232
          g_return_code  TYPE i,                                "XMK#754232
          BEGIN OF gt_data OCCURS 0,
            f1 TYPE char20,
            f2 TYPE char20,
            f3 TYPE char20,
            f4 TYPE char20,
          END   OF gt_data.
    END-OF-SELECTION.
      gt_data-f1 = 'C1'.
      gt_data-f2 = 'C2'.
      gt_data-f3 = 'C3'.
      gt_data-f4 = 'C4'.
      APPEND gt_data.
      gt_data-f1 = '10'.
      gt_data-f2 = '11'.
      gt_data-f3 = '12'.
      gt_data-f4 = '13'.
      APPEND gt_data.
      gt_data-f1 = '20'.
      gt_data-f2 = '21'.
      gt_data-f3 = '22'.
      gt_data-f4 = '23'.
      APPEND gt_data.
      "XMK#754232
      gt_data-f1 = 'AEIOU'.                                     "#EC NOTEXT
      gt_data-f2 = 'aeiou'.                                     "#EC NOTEXT
      gt_data-f3 = '*?#/&§$#'.                                 "#EC *
      gt_data-f4 = 'äöüÄÖÜßaé'.                                 "#EC *
      APPEND gt_data.
      "XMK#754232
      CALL FUNCTION 'RH_CHECK_EXCEL_SUPPORT'
        IMPORTING
          excel_exe_path      = g_excelpath
          excel_version       = g_excelversion
        EXCEPTIONS
          no_batch            = 1
          internal_error      = 2
          excel_not_installed = 3
          wrong_frontend_os   = 4
          OTHERS              = 5.
      IF sy-subrc <> 0.
        WRITE / 'Testaufruf von Excel endete mit Fehlercode:'(002).
        WRITE: sy-subrc, / sy-msgv1, sy-msgv2, sy-msgv3, sy-msgv4.
        MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        EXIT.
      ELSE.
        WRITE: / 'Pfad von Excel'(005), g_excelpath.
        WRITE: / 'Version von Excel'(006), g_excelversion.
      ENDIF.
      "XMK#754232
      IF cl_abap_char_utilities=>charsize <> 1.
        WRITE / 'Unicode system'(007).
        CALL METHOD cl_gui_frontend_services=>get_saplogon_encoding
          CHANGING
            file_encoding = g_codepage
            rc            = g_return_code
          EXCEPTIONS
            OTHERS        = 1.
        IF sy-subrc <> 0.
          g_codepage = '4110'.
        ENDIF.
        WRITE: / 'Codepage is'(009), g_codepage.
      ELSE.
        WRITE / 'Non-Unicode system'(008).
      ENDIF.
      "XMK#754232
      CALL FUNCTION 'RH_START_EXCEL_WITH_DATA'
       EXPORTING
         data_filename             = 'TEST.DAT'
         data_path_flag            = 'W'
       DATA_ENVIRONMENT          =
         wait                      = 'X'
         data_table                = gt_data[]
       EXCEPTIONS
         no_batch                  = 1
         excel_not_installed       = 2
         internal_error            = 3
         cancelled                 = 4
         download_error            = 5
         no_authority              = 6
         file_not_deleted          = 7
         OTHERS                    = 8.
      IF sy-subrc <> 0.
        WRITE / 'Aufruf von Excel endete mit Fehlercode:'(003).
        WRITE: sy-subrc, / sy-msgv1, sy-msgv2, sy-msgv3, sy-msgv4.
        MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        EXIT.
      ELSE.
        WRITE / 'Aufruf von Excel lieferte keinen Fehler.'(004).
      ENDIF.
    Regards,
    Amit

  • Downloading/uploading external (non-jar) files to/from client

    We are searching for a solution to upload and download non-jar files to or from the JWS-client. We've only found information to upload jar-files to a JWS-client, but we couldn't find anything about uploading non-jar files. Is there a standard solution or tool to do this with webstart?

    Hi there,
    We found a solution to upload the non-jar files, in our requirement we are trying to load the resources in the zip files. I have written the extension installer to extract the zip file from the URL to the JNLP client.
    But for this user has to click on the install pop up to allow the JWS to install the non jar files.
    Thanks,
    TSR

  • How to upload a PDF file, zip it and download the zipped file?

    Hi Experts,
    I have a requirement to upload a PDF file, convert that to a ZIP file and download it. If anyone has worked on this requirement, can you please guide me on this? Thanks.
    Avi

    Here you go.  Hope it helps.
    REPORT  zrich_0004.
    DATA: lt_data TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_zip_content TYPE xstring.
    DATA: lv_size  TYPE i.
    DATA: lv_filename TYPE string.
    DATA: lv_path TYPE string.
    DATA: lv_fullpath TYPE string.
    DATA: lt_filetab TYPE TABLE OF file_table.
    DATA: ls_filetab LIKE LINE OF lt_filetab.
    DATA: lv_rc TYPE sy-subrc.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_up TYPE string DEFAULT 'C:\upload.pdf' .
    PARAMETERS: p_down TYPE string DEFAULT 'C:\download.zip' .
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_up.
      REFRESH lt_filetab. CLEAR ls_filetab.
      cl_gui_frontend_services=>file_open_dialog(
          CHANGING
            file_table              = lt_filetab
            rc                      = lv_rc
        EXCEPTIONS
          OTHERS                  = 5 ).
      READ TABLE lt_filetab INTO ls_filetab INDEX 1.
      IF sy-subrc = 0.
        p_up = ls_filetab-filename.
      ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_down.
      CLEAR: lv_filename, lv_path, lv_fullpath.
      cl_gui_frontend_services=>file_save_dialog(
         CHANGING
           filename             = lv_filename
           path                 = lv_path
           fullpath             = lv_fullpath
         EXCEPTIONS
           OTHERS               = 4 ).
      p_down = lv_fullpath.
    START-OF-SELECTION.
      CREATE OBJECT lo_zip.
    * Read the data as a string
      cl_gui_frontend_services=>gui_upload(
        EXPORTING
          filename                = p_up
          filetype                = 'BIN'
        IMPORTING
          filelength = lv_size
        CHANGING
          data_tab                = lt_data
        EXCEPTIONS
          OTHERS                  = 19 ).
    * convert binary to xstring
      CLEAR lv_content .
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = lv_size
        IMPORTING
          buffer       = lv_content
        TABLES
          binary_tab   = lt_data
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
    * Get the file name of the uploaded file
      DATA: lv_upfilename TYPE string.
      DATA: lv_tmp TYPE char1024.
      DATA: lv_tmp_file TYPE char1024.
      lv_tmp = p_up.
      CALL FUNCTION 'STRING_REVERSE'
        EXPORTING
          string  = lv_tmp
          lang    = sy-langu
        IMPORTING
          rstring = lv_tmp.
      SPLIT lv_tmp AT '\' INTO lv_tmp_file lv_tmp.
      CALL FUNCTION 'STRING_REVERSE'
        EXPORTING
          string  = lv_tmp_file
          lang    = sy-langu
        IMPORTING
          rstring = lv_tmp_file.
      lv_upfilename = lv_tmp_file.
    * add to zip file.
      lo_zip->add( name = lv_upfilename content = lv_content ).
      lv_zip_content   = lo_zip->save( ).
    * Conver the xstring content to binary
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = lv_zip_content
        IMPORTING
          output_length = lv_size
        TABLES
          binary_tab    = lt_data.
    * download
      cl_gui_frontend_services=>gui_download(
          EXPORTING
            bin_filesize = lv_size
            filename     = p_down
            filetype     = 'BIN'
          CHANGING
            data_tab     = lt_data
          EXCEPTIONS
            OTHERS       = 24 ).
    Regards,
    Rich Heilman

  • I have office 2004. what do i have to buy, download, install to open and edit pptx, docx and xlsx files?

    i have office 2004. what do i have to buy, download, install to open and edit pptx, docx and xlsx files?

    Visit  Microsoft  at this site download converter.Install drag XML file and it creates a standard .doc, .xls or .ppt copy on your desktop.
    Its free and works a charm.
    NO need to spend a penny/cent
    http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6B9238E1-CF69-48C4-B F2D-C4A8ACEEE520

  • In my shared file, I have no upload option. Why?

    Why is there no upload tab in my shared file?

    It would be helpful if you could draw a more complete picture of what you have done to try to connect to the Internet. Also what kind of modem and router you're using too might be helpful.

  • TS1424 There was a problem downloading "Dancing on the Ceiling (feast. Rascal Flatts) / Tuskegee (Deluxe Edition) / Lionel Richie".  The file seems to be corrupted. To redownload the file,...  (It does the same thing!)

    Geting the following error message when trying to download the Lionel Richie album.  All songs were downloaded but this one:
    There was a problem downloading "Dancing On the Deiling (feat. Rascal Flatts) / Tuskee (Deluxe Edition) / Lionel Richie".
    The files seems to be corrupted.  To redownload the file, choose "Check for Available Downloads" from the Store menu.

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • Downloading into shared file to update mutlple user account libraries

    Following the directions in Article 93195, I successfully created a shared file between multiple user accounts on my IMAC. The problem is updating the Libraries on each account when I download new music into one account. I understand I can update each account manually using the "Add to Library" command, is there an automatic way to download ITunes into the shared library so that the Libraries on each user account are automatically updated with the new music?

    is there an automatic way to download ITunes into the shared library so that the Libraries on each user account are automatically updated with the new music?
    Sorry, but iTunes has no "folder watching" feature. It might be possible to write an AppleScript as a folder action that would do this, but otherwise, you have to use the Add to Library funtion to get the new tracks into iTunes, or drag them manually into the iTunes window.

Maybe you are looking for

  • How to find Tables behind a Custom Query in SAP

    Hi Gurus, Can anyone please help me find tables behind a custom query in SAP. Regards As

  • Thinest Battery case for iPhone 4

    Been thinking about actualy getting one...There has been a lot of high quality RPG Games that came out for the iPhone lately and i find my self killing my iPhone 4 in just half the day... Ive seen Morphi and MiLi...their Ok but a bit to bulky.. I rem

  • Tns-12555

    Hi, we got the error. Db:9.2.0.7.0 os:red hat 4.2 TNS-12555: TNS:permission denied TNS-12560: TNS:protocol adapter error TNS-00525: Insufficient privilege for operation Linux Error: 1: Operation not Listener.ora FTEN = (ADDRESS_LIST = (ADDRESS= (PROT

  • DG question

    Hi guys, I have a quick question, want to understand the Data Guard 11gR2. Imagine I have two data centers ( 1 and 2). - In the Data Center 1, I place the Primary database + The observer for FSFO. - In the Data Center 2, I place the Standby database.

  • I have compaq CQ61 309TUI have wrongly changed the DVD Region....​Its not working CAn Some one this

    I have compaq CQ61 309TUI have wrongly changed the DVD Region....Its not working CAn Some one this