"File x is already in use by another application."

Very interesting, why won't InDesign let me import a Word file that is currently open in Word, a thing, I think, I never experienced with any other computer application?

Just the way it is. Same thing with Excel.
It's annoying but normal.
Bob

Similar Messages

  • Autocad error "...This file is already in use by another application.

    I get this error message when I try to publish and Autocad dwg file to a pdf.  The files are not in use.  I have changed the save as name.  I have closed everything, rebooted and tried publishing again, to no avail.

    Just the way it is. Same thing with Excel.
    It's annoying but normal.
    Bob

  • Error: "File is Open and in Use by Another Application...."

    I'm trying to print to tape using the 'Print to Video' option in the 'File' menu. The media being printed is in HDV format. During the 'conforming HDV Video...' process that runs prior to recording to tape, I'm getting the error message mentioned in the subject line of this post. There are no other apps. open except for FCP, so it is FCP that is locking up its own files during this process. Anyone know how to get around this bug?
    MBP 17in (2 GB RAM), PB G4 15in, PB G4 12in, iMac G3   Mac OS X (10.4.7)   Loyal to Apple since the Apple ][+

    open preferences, open spotlight preferences, click the privacy tab. Drag the folders or drives you want spotlight to leave alone into the window.
    Spotlight is an annoying application that is constantly cruising your system for no good reason that I can fathom, but it must have some use. When spotlight is looking at your media files, you are dead in the water for fcp.
    Same thing if you have anti virus software running.

  • Can i use the same datasource which is already been used for another appln?

    Hi All,
    There is a datasource from r/3 copa which is already been used in another application. Is it possible for me to use the same data source to my Appln?
    If so then pls guide me on that?
    Thanks
    pooja

    Yes you can use it..
    It depends actually on your requirement..
    If you are already pulling that data into a DSO, then directly use that DSO in your applicaiton by doing a look up or by getting data from it...This will avoid duplication of data...
    But if your requirement is not suffice with the DSO you already have then create your own custom and pull the data from the same datasource into it...

  • Prot number is already used by another application.

    I am trying to install Essbase admistration services on hyperion Shared services connected to oracle database10g. Every think works well untill the screen shows:
    Application Server: Apache Tomcat 5
    Deploy as a service (checked)
    Component server Name Port
    Share Services SharedServices9 58080
    ass ass 10080
    Then, when I click Next I have this pop up window saying. " The port number is already in used by another application. Specify a port number that is not being used. I am installing this software on windows XP media center. Need help.
    Thank.

    Hi,
    Firstly, are you doing a fresh installation or reinstallation.
    If its reinstallation , then goto services, and see if the hyp shared services service is stopped .
    Let me know if it does not work
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • There was an error opening this document. This file is already open or in use by another application

    I cannot open any PDF documents. I receive one of two error messages:
    "There was an error opening this document. This file is already open or in use by another application."
    "This file is in use. Enter a new name or close the file that's open in another program."
    I do not know how to open the document in another program, so I am perplexed how it could be open in another program.
    I tried Repair the Adobe Installation from within Adobe Reader and from the Control Panel (Control Panel\Programs\Programs and Features\Uninstall or change a program) using the Change option. I'm assuming they are the same process, although I'm not sure. Neither method worked. I rebooted after each.
    I'm at work at a huge federal agency, so we're of course on a network. It takes several days to receive agency IT help, which is why I'm asking here. I can open Word and text documents. Nothing else seems to be amiss on the 'ol pc.
    Adobe Reader 11.0.05
    Windows 7
    As you can tell, I have only limited knowledge of the possible issues.
    Thanks!

    Shared network drive.
    I was not able to open the PDF documents via Notepad.
    Interestingly, and perhaps supportive of your hypothesis, I subsequently had problems with Outlook wherein I could not save or close an email I was writing because "you do not have permission." I rebooted my computer and now Outlook works fine (and it save my email, thank goodness), and I can open PDF documents.
    Hopefully it will stay this way. If not, I'll be back!
    Thank you very much for offering to help.
    All the Best,
    Mark

  • "File is already open or in use by another application"

    I get "File is already open or in use by another application" when opening a PDF in Acrobat and Reader. Only happens intermittently.Files are on a network share.
    It doesn't seem to happen as often if Acrobat/Reader are already running. Sometimes it works on the 2nd try, other times it takes upwards of 7 or 8. Not entirely sure if this is an Adobe issue as I've completely reinstalled both programs.
    Any help would be appreciated. Thanks.
    Ben

    Jenifer,
    I've been dealing with this problem for a year, and it is a big time waster. Here is a solution someone gave me which resolves the problem. However, there is a tradeoff- one problem for another.
    There is a file named aiicon.dll in Program Files > Common Files > Adobe > Shell. If you rename this file to aiiconold.dll (don't delete it), the problem with saving and deleting files will be resolved. However, the tradeoff is that you will lose your Illustrator thumbnails for your AI files. See for yourself. I've been doing it this way for a month or two, and I can live without the thumbnails most of the time. The nice thing about renaming the aiicon.dll file is that you can go back to the original name anytime, and everything will be as it was in the beginning.
    I guess Illustrator has an incompatibility issue with the new operating systems. I don't think there are any perfect solutions. But I keep looking. I am as frustrated with AI as you are.

  • I cant figure out what is wrong i keep getting this an OIEception that says "{"The process cannot access the file because it is being used by another process."}

    I am trying to move a file from a folder to another folder.
    here is my code:
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Test Pictures");
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Test Test";
    File.Move(folderContentNames[1], destinationFile);
    updateListBoxFileName();
    updateImageBox();
    each time I hit the bolded underlined part I get that error message.
    if you need anything else just ask.
    Thanks in advance,
    Thor Orb

    Hi Thor,
    If you want to move a file from a folder to another folder, I think you could get the sourcePath and TargetPath. The code below shows a simple demo:
    string[] folders = Directory.GetFiles(@"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test");
    string desFile =Path.Combine( @"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test - Copy\"+Path.GetFileName(folders[1]));
    File.Move(folders[1], desFile);
    In addition, the link below might be useful to you:
    # How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)
    >> The process cannot access the file because it is being used by another process
    The message seemed that the file was opened in other process. Did you operate the file with other code?
    I think you could check if the files and the folders were opened, and review your codes if they were used in other places.
    If you have any further questions, please feel free to post in this forum.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.
    Ya, Thanks I figured about the path and destation. yes I am using the file in another area, the file is an image jpg and I am displaying it in a picture box. Now I have been doing a little research I see a command called Dispose() and this is suppose to
    release the handle on the image, but I can seem to figure out have to use it correctly.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Collections;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    namespace Scanned_Picture_Ogranizer
    public partial class Form1 : Form
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Scan Project Testing\Test Pictures", "*.jpg");
    //List<string> folderContentList = folderContentNames.ToList();
    private List<string> folderContentList = new List<string>();
    Bitmap currentImage;
    Bitmap placeHolder;
    public Form1()
    InitializeComponent();
    convertingArrayToList();
    startUpData();
    string sourceFile = @"C:\Users\Jonah\OneDrive\My Programming Projects\Scanned Picture Organizer Project\Test Pictures";
    string destinationFile = "";
    private void moveButton_Click(object sender, EventArgs e)
    private void startUpData()
    //placeHolder = new Bitmap(folderContentList[0]);
    //currentImage = (Bitmap)placeHolder.Clone();
    // Image loadImage = new Bitmap(pictureClones[0]);
    // currentFilePictureBox.Image = loadImage;
    int numberOfFilesLeft = folderContentNames.Length;
    foreach (string name in folderContentNames)
    fileNamesListBox.Items.Add(name);
    fileNameTextBox.Text = folderContentNames[0];
    numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    ///loadImage.Dispose();
    //FileStream currentImage = new FileStream(folderContentList[0], FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    private void convertingArrayToList()
    foreach (string listName in folderContentNames)
    folderContentList.Add(listName);
    private void selectingImageFromListBox()
    private void updateImageBox()
    Bitmap currentImage = new Bitmap(folderContentList[0]);
    currentFilePictureBox.Image = currentImage;
    currentImage.Dispose();
    private void updateListBoxFileName()
    fileNamesListBox.Items.RemoveAt(0);
    fileNameTextBox.Text = folderContentList[0];
    // numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Scan Project Testing\Test Test\";
    File.Move(folderContentList[0], destinationFile + System.IO.Path.GetFileName(folderContentList[0]));
    folderContentList.RemoveAt(0);
    updateImageBox();
    updateListBoxFileName();
    when I first start the program the first picture displays, but when I trigger historyPictureBox_Click(), it does that error again. Another things is that I already looked at that link and it didn't help.
    I just super confused, I would like your help on this.
    Thanks,
    Thor Orb

  • OUI patch install hangs, files being used by another application

    Hi when a patch install hangs, and the OUI error message is that files needing to be reinstalled are being used by another application, how can you identify which files or processes are responsible so that they can be shut down? All normal Oracle services and DTC are shut down already.
    This is patch 6810189 upgrade to 10.2.0.4 (from 10.2.0.3) which includes the April CPU on a Win32 server.

    Please check any oracle service is still on ..
    need to shutdown listener/oracle service .. and other db service belongs to Oracle.
    You can download windows process explorer and check for any oracle process and kill those and then apply CPU
    Link :
    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
    --Girish                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Audio Stream Recorder - Error: Audio device is already being used by another prog

    I realized that Audio Stream Recorder is does not "work" through server list feature. So I am simply trying to use the manual method of adding URL's to the interface. However regardless of the type of stream, shoutcast, windows media or real audio, I receive the error "audio device is already being used by another program". Does anyone know how to fix this? I have closed my audio application etc to no avail. <RANT WARNING> I was very excited about using this application when I read about it. However an application that provides none of the stated features is not an application, its false advertising, since it clearly states on the box, help files and website this products "features". Anyway, it'ss very disappointing. Also, does anyone know what the supported steaming formats are, the help file say the application requires RealONE and Windows Media Player but does not mention audio stream formats? Thanks you in advance for any help.

    I have the same issue. I updated to the latest software, to no avail. My first suspicion is that some Microsoft patch caused this, but I cannot verify this.
    Apparently no one at Creative is very interested in this issue.

  • How do I fix this error: DF024: Unable to preserve original file at ... Error 32 The process cannot access the file because it is being used by another process.(Seq 1352).  ?

    I am installing creative the cloud Illustrator desktop app on a machine with windows 7 64 bit running in a domain environment.  The download starts and takes about runs for a bout 10 minutes and then stops with the error: DF024: Unable to preserve original file at "C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 1352)
    I am logged in as a network administrator and there are no other apps except a web browser (Chrome) running.  There are no other users logged into the machine.
    How can I see what other process is using the needed file so that I can fix it?
    Thanks

    MelissaB34 it looks like you already are reviewing your installation log files but you can find more information at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  From the error you have posted it appears that your current User account is either unable to update C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll or does not have sufficient file permissions to do so.  Since you mentioned you are on a domain please ensure that you are working with your I.T. department and have correct access to this directory.
    You may want to also consider logging in under a local administrator account to see if you face the same difficulties.  This would help you determine if you are facing a file corruption issue or file permission issue.

  • The file is in use by another application.

    Post Author: mudEyes
    CA Forum: Exporting
    CRXI, VB6, SQLSever 2005
    I'm using the report.export method to save reports so that the data is saved with the report.  If I alter the report and then export I get no problem, if I then alter and save the report again without closing the report a get the 'The file is in use by another application.' error.
    can anyone tell me where I'm going wrong (apart from my choice of career)?

    Were you already running on Win 7 prior to this?
    I had this problem when upgrading to Win7. Solved by selecting my topmost level folder, changing the premissions, and making them inherent to teh files inside. Happened on my external drive, but not on my C: drive which was reformatted in the upgrade process.

  • How to fix cannot be restored because it contains files used by another application

    my shuffle says needs to be restored but when i try to restore it wiped it clean and then pop up says cannot be restored because it contains files used by another application.....????????????????

    If you have not already, disconnect the shuffle, and try restarting your computer.  Then, run iTunes.  Connect the shuffle and immediatey try doing the Restore again.

  • OneNote recordings "We're sorry, we can't open the file because it is in use by another program."

    Constantly, OneNote breaks and screws up my recordings that are synced with my lectures. It is such a fragile process and very frustrating. As soon as I'm done recording, I press stop. When I test the recording, it says, "We're sorry, we can't open
    the file because it is in use by another program." I just recorded and then stopped it. If i close and reopen OneNote, it says, "oneNote is cleaning up from the last time it was open." And the recording still says it's in use by another program.
    I've even restarted the laptop and it still won't open. The only way i could salvage the file is if I copy and paste it into another folder, and then it will open through windows media player, but all the live syncing with my notes are gone. Where are these
    files stored? If I could save the sound and find the file/format that holds the syncing data again, I could work around this. They are no where to be found on my computer. Other forums give locations, but my folders are empty. Some other recordings work and
    sync nicely, but I have still lost many recordings to this error. However, if I play a file and then close it without stopping playback, that file, too, will now be unusable. It will be stuck as "We're sorry, we can't open..." no matter what i do
    and again i have to copy/paste it into a new folder and then move it back. I had the same problem on my last laptop. I record in Windows Media Audio 10 Professional at 192 kbs, 48 kHz, and stereo CBR. I need the high quality because the lecturer is too quiet.
    It seems to happen when I record long lectures, 45 min+. Shorter recordings tend to work fine.
    Please help, this would make note taking so much easier.

    A bit of a confusion on my part;
    Now we have created these REPORTS using Basic Crystal Report 10.5, which comes bundled with Visual Studio 2008 and .Net Framework 3.0. Now on our machines, we have never experienced any issues.
    Going by the above, you should have references to CR assemblies of version 10.5.3700 only. No other references.
    Now, looking at this paragraph:
    BUT on the DEV server (web server) which has .net Framework 3.0 and in its GAC its has CRYSTAL DLLs version 11.5 (required to create an Object of ReportClass and its related functions) ; sometimes we get the following error while exporting crystal report to pdf:
    I wonder what runtime was deployed to the server. E.g.; if you are using CR 10.5, your assemblies will be 10.5.3700 and you should be deploying the following runtime (depending on 32 bit / 64 bit, etc.):
    CRRedist2008_ia64.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100006255262008E/CRRedist2008_ia64.zip
    CRRedist2008_x64.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100006255272008E/CRRedist2008_x64.zip
    CRRedist2008_x86.msi
    https://smpdl.sap-ag.de/~sapidp/012002523100009351342008E/CRBasicVS2008_redist_x86.zip
    One way to check on what is actually loading is to use the [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] utility.
    - Ludek

  • I can't eject ("files in use by another application") Windows/Vista Issue?

    OK... so in the grand scheme of things, this really is NOT the end of the world... but it sure is super-annoying!! This is my first every Apple product (took a while to get on the bandwagon) and I was hoping for more stability and ease of use... I've called AppleCare several times and they can't help me figure this out... according to them it's a Windows/Vista issue (which DOES seem likely). I'm running Windows Vista Home Premium on a Dell Dimension E521.
    Here's how it goes... I plug my iPod in, which opens up iTunes and it syncs fine. I wait until the top of iTunes says "sync complete" and the face of the iPod simply says "Connected". Then I click on the "eject" button next to the iPod listing in iTunes. It pauses for a moment, then I look down and the iPod suddenly has those syncing, circular arrows, moving again and it says "Synchronizing- do not disconnect". And then a few moments later, iTunes gives me a pop-up that says " XXXX ipod cannot be ejected because it contains files that are in use by another application"
    So obviously, something else is connecting to the iPod and preventing me from ejecting it using iTunes, but I have not been able to figure out what it is!
    Since it's something on my machine, I have tried the following:
    - shut down AntiVirus (TrendMicro Internet Security 2008)
    - turned off Windows Firewall
    - went through all the programs running in the task bar and turned them off
    - opened up Task Manager and turned EVERYTHING else I could see off
    None of the above have made any difference. The workaround that Apple gave me was to go into Computer and then right click on the listed drive and select "Safely Remove" which usually works (the times it doesn't work, it gives a similar message saying the device was being used by another application and can't be removed, try again later). But 90% of the time it works.
    I use that or the Eject option when I right click on that drive (not sure the difference, they seem to do the same thing). The workaround works, but I'd sure LOVE to get iTunes to be able to eject my iPod!!
    Here's what I've done regarding this iPod and iTunes:
    - reset the iPod
    - restored the iPod
    - uninstalled and re-installed iTunes
    - selected and unselected the various things I'm syncing (currently: Music, TV Shows, Podcasts, Photos) to see if it was one of them causing the issue
    NONE of the above has made any difference (and I've done each about 2-3 times, ZERO exaggeration).
    I've called into AppleCare about half a dozen times now, hoping to get that one brilliant tech that knows more than the others... but no luck yet... so I thought I'd try this forum to see if one of the brilliant posters here can help me sort this out.
    PLEASE- ANY help you can provide (or even just point me in the "right" direction of how to determine this) would be GREATLY appreciated!!
    Thanks so much in advance,
    SC

    I am using windows Vista and having this problem also (not exactly, but iTunes gives pop-up that "files are in use"). Acting a suggestion from another answer in this thread, I clicked on Computer and selected eject...windows did warn me that the device was in use, but also gave me a CONTINUE button, which I clicked and it was ejected...had to go back to iTunes and eject the iPod there also, but it did eject

Maybe you are looking for

  • Swap Space Usage Solaris 8

    Hello to all. I had an application (a C programme) running on Solaris 2.4. Recently i upgraded to Solaris 8. I recompiled this application (everything went smoothly). However i have a serious problem i cannot debug further. This application runs as a

  • Question on Time Characteristics across Applications

    Hi, I'm wondering how TIme Characteristics should be modeled across 2 different applications like Sales and Financials.  For example take Sales Reporting which is based on Calendar and a FI Reporting application based on Fiscal.  If I wanted to repor

  • PMON process and ORACLE Instance  - Cannot allocate log. Archival required

    Hello there, We are running Oracle RAC (9i) database with two nodes and Oracle Applications 11i.The operatiing system is solaris 5.8. 1.Recently while bouncing the db, i happen to see many PMON process get started up? is it a normal thing to see thos

  • Poor Customer Services

    It was deteremined my WRT1900AC router is defective and Linksys/Belkin will send me a replacement.  This was approved last Wednesday  (8/13/2014) at 7:20pm pst.  A shipping label was created yesterday when I was told it was shipped on Monday.  Its on

  • Problems selecting images in LR4

    I've been having problems selecting images in the library module when multiple images are in view (not down in the timeline, but in the main window). It seems sporadic with which ones it won't let me select, it somehow manages to be the ones that I n