HELP!: File in use problem-"GetModuleHandleA succeed LoadLibrary returns ba

Hi. I got a program that is pretty much a JFileChooser that prints to standard output the path of the file that I've chosen. If I invoke the DOS command:
java JFileChooserDemo, I will get the following as expected from the program:
"You chose a file named: C:\MyJava\Book.xls".
But if I invoke the following DOS command:
java JFileChooserDemo > output.txt, the file "output.txt" contains the following:
"GetModuleHandleA succeed
LoadLibrary returns baaa0000
You chose a file named: C:\MyJava\Book.xls"
So, if I try to open the file or try to modify "output.txt", I get an error message stating that the file is in use.
What's weird is that, I THINK if I have a program that DOES'NT use Swing or anything GUI-related and prints to standard output with the DOS "> outfile" command, I won't get this problem. So in other words, I can duplicate this problem with a sample Swing application that prints to standard output. Try it yourself.
In my original program, it does have an event handler that closes the JFileChooser and its container and exits the system via "System.exit(0);", but for some reason, something still has "locked" the output.txt file. I even did the ctr+alt+del and can't find anything that would lock the output.txt file. What's even weirder is that if I run the application again, but output to a different file like "output2.txt", this file is not locked, but the "output.txt" file still is. output2.txt also don't have contain the
"GetModuleHandleA succeed
LoadLibrary returns baaa0000" message.
The only way I know of that would "unlock" output.txt is to re-boot my computer.
So it seems I have to modify my program somehow because it appears the OS still thinks output.txt file is still in use.
Someone may think why would I invoke the java interpreter with the DOS "> outfile" command. Well, the reason being, I got a different version of the program that executes a query and I want it to create a delimited text file that contains the resultset of the query, so that I can then import it to Access, Excel, or whatever. But, because of this problem, I can't modify the query result without having to either run the application again and created another file name with the same result or re-boot. Of course, this would be silly.
Any help in how I can modify my program or any GUI-program so that if I invoke the DOS "> outfile" command, the outfile won't be "locked" would be greatly appreciated. Thanks. If you want my program, you can e-mail me or run any sample program from the Swing Tutorial that prints to standard output and just add the " > outfile" to the java interpreter command.
-Dan
[email protected]

Sure, here it is:
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.*;
public class FileChooserDemo2 extends JFrame {
static private String newline = "\n";
public FileChooserDemo2() {
super("FileChooserDemo2");
//Create the log first, because the action listener
//needs to refer to it.
final JTextArea log = new JTextArea(5,20);
log.setMargin(new Insets(5,5,5,5));
log.setEditable(false);
JScrollPane logScrollPane = new JScrollPane(log);
JButton sendButton = new JButton("Attach...");
sendButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JFileChooser fc = new JFileChooser();
fc.addChoosableFileFilter(new ImageFilter());
fc.setFileView(new ImageFileView());
fc.setAccessory(new ImagePreview(fc));
int returnVal = fc.showDialog(FileChooserDemo2.this,
"Attach");
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
/** The next 2 lines I added, the rest of the code is original taken from the Swing Tutorial **/
System.out.println("You chose a file named: " +
                         fc.getSelectedFile().getPath());
log.append("Attaching file: " + file.getName()
+ "." + newline);
} else {
log.append("Attachment cancelled by user." + newline);
Container contentPane = getContentPane();
contentPane.add(sendButton, BorderLayout.NORTH);
contentPane.add(logScrollPane, BorderLayout.CENTER);
public static void main(String[] args) {
JFrame frame = new FileChooserDemo2();
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
frame.pack();
frame.setVisible(true);

Similar Messages

  • Help! File in use problem when using Swing app

    Hi. I got a program that is pretty much a JFileChooser that prints to standard output the path of the file that I've chosen. If I invoke the DOS command:
    java JFileChooserDemo, I will get the following as expected from the program:
    "You chose a file named: C:\MyJava\Book.xls".
    But if I invoke the following DOS command:
    java JFileChooserDemo > output.txt, the file "output.txt" contains the following:
    "GetModuleHandleA succeed
    LoadLibrary returns baaa0000
    You chose a file named: C:\MyJava\Book.xls"
    So, if I try to open the file or try to modify "output.txt", I get an error message stating that the file is in use.
    What's weird is that, I THINK if I have a program that DOES'NT use Swing or anything GUI-related and prints to standard output with the DOS "> outfile" command, I won't get this problem. So in other words, I can duplicate this problem with a sample Swing application that prints to standard output. Try it yourself.
    In my original program, it does have an event handler that closes the JFileChooser and its container and exits the system via "System.exit(0);", but for some reason, something still has "locked" the output.txt file. I even did the ctr+alt+del and can't find anything that would lock the output.txt file. What's even weirder is that if I run the application again, but output to a different file like "output2.txt", this file is not locked, but the "output.txt" file still is. output2.txt also don't have contain the
    "GetModuleHandleA succeed
    LoadLibrary returns baaa0000" message.
    The only way I know of that would "unlock" output.txt is to re-boot my computer.
    So it seems I have to modify my program somehow because it appears the OS still thinks output.txt file is still in use.
    Someone may think why would I invoke the java interpreter with the DOS "> outfile" command. Well, the reason being, I got a different version of the program that executes a query and I want it to create a delimited text file that contains the resultset of the query, so that I can then import it to Access, Excel, or whatever. But, because of this problem, I can't modify the query result without having to either run the application again and created another file name with the same result or re-boot. Of course, this would be silly.
    Any help in how I can modify my program or any GUI-program so that if I invoke the DOS "> outfile" command, the outfile won't be "locked" would be greatly appreciated. Thanks. If you want my program, you can e-mail me or run any sample program from the Swing Tutorial that prints to standard output and just add the " > outfile" to the java interpreter command.
    -Dan
    [email protected]

    Oops sorry, forgot to add the code. Here it is:
    BTW, can I edit posts? Oh well...
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo2 extends JFrame {
    static private String newline = "\n";
    public FileChooserDemo2() {
    super("FileChooserDemo2");
    //Create the log first, because the action listener
    //needs to refer to it.
    final JTextArea log = new JTextArea(5,20);
    log.setMargin(new Insets(5,5,5,5));
    log.setEditable(false);
    JScrollPane logScrollPane = new JScrollPane(log);
    JButton sendButton = new JButton("Attach...");
    sendButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    JFileChooser fc = new JFileChooser();
    fc.addChoosableFileFilter(new ImageFilter());
    fc.setFileView(new ImageFileView());
    fc.setAccessory(new ImagePreview(fc));
    int returnVal = fc.showDialog(FileChooserDemo2.this,
    "Attach");
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    /** The next 2 lines I added, the rest of the code is original taken from the Swing Tutorial **/
    System.out.println("You chose a file named: " +
                             fc.getSelectedFile().getPath());
    log.append("Attaching file: " + file.getName()
    + "." + newline);
    } else {
    log.append("Attachment cancelled by user." + newline);
    Container contentPane = getContentPane();
    contentPane.add(sendButton, BorderLayout.NORTH);
    contentPane.add(logScrollPane, BorderLayout.CENTER);
    public static void main(String[] args) {
    JFrame frame = new FileChooserDemo2();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

  • 'file in use' problem

    Hello,
    I am trying to add all of my music to my iTunes library, but each time I do it, only about 5% of all of the music gets added (and it is the same 5% each time). After looking around a bit I thought that maybe the files that weren't being added were locked, so I unlocked them all and still iTunes won't add them to my library. After that, I tried manually opening each of the problematic files with iTunes by ctrl_clicking on them and selecting "open with iTunes". When I do this, I get an error stating "<file> is currently in use by another program ..."
    However, these files aren't being used by any other programs. I have tried restarting my computer, and even afterwards I get the same error. I've tried in a terminal running the cmd "lsof <file>" for several of the files and nothing is returned.
    Has anyone run into a similar problem? What should I try next?
    Thanks,

    Music is something I don't deal with, but if you download, for example, an mp3 file, will it start automatically in QuickTime?
    Several possibilities come to mind. If you're running 10.4.11, it's likely nothing done by you.
    Easy Fixes
    If you haven't shutdown your computer since placing music files on your hard disk, do so. QuickTime, iTunes, or another application that uses your files may still run part of the applications when the applications are turned off. You can see these in 'Activity Monitor' and shut them down manually, if you wish.
    If you have a laptop and your battery 'died' (at about 15% capacity), either a table in a temporary file needs erasing, or possibly a bit-sized attribute to those files 'in use' needs changing.
    If MacOSX uses tables to keep track of open files, install a good cleaning utility like 'Onyx' and erase all temporary files.
    If MacOSX uses attributes to keep track of open files, use 'list view' to open all the files in QuickTime, then shutdown your computer properly while they are open.
    One of the above should work.
    Slightly Deeper Fixes
    If not, use 'Activity Monitor' as described above: look for stray parts of audio processes still running (iTunes, I believe, had a 'quickstart' process at one time that was always running: placed by Apple in a StartUp folder.) Apple introduced with 10.4 a 'new' method for starting & stopping 'daemons', processes that always run (like that just described). A badly programmed one may not have stopped. You can stop it manually.
    If Apple uses attributes to label a file open, move your music files to a new volume (CDs, DVD+RW, iPod, &c), turn automatic running of files off, shutdown your computer, start it up, check 'Activity Monitor' for any unwanted audio files, then move your music back.
    Best of luck.
    Bruce

  • Does LR2 Include a "Real" help file?

    I am woriking with the trial versionof LR2, and one of the problems is that there seems to be no resident version of a help file.
    Two problems with this. First, getting bounced to a Q&A forum is a VERY inefficient way to answer my routine questions. Second, my main photoediting computer is not connected routinely to the internet--So in effect I have no help file at all.
    Am I missing something really simple? Is this an issue related only to the trial version, i.e. will I get a real help file when I complete a purchase? Or is this sorry state of affairs something I'll have to live with if I stay with LR2?

    > Well, I can understand you desire to keep you work computer off
    > the internet. However, the fact remains that help is going
    > online like it or not. I seriously doubt that most people
    > would not by a product just because of that. And, as I said
    > it does allow Adobe to keep it updated which to me is just
    > as important. I don't think a help fill that refers to Lightroom
    > 1.0 is very helpful for those using 1.4. Having update to help
    > even via online in my book is a good thing.
    Say what? A help file doesn't change (significantly) during the life of a product. When I download version 1.4.1 I expect a properly documented program to include a proper help file. When I download Version 2.0 it should come with a NEW help file that is good (with hopefully minor corrections) until version 2.1, etc.
    If software is being properly designed, specified, and documented, you should be able to write 99.8% of the help file even before the coding is complete. There is no excuse for shortcutting the help file other than not employing enough technical writers.
    I am used to Microsoft saying "If you don't like it, lump it", but it is a new experience from Adobe.
    Even the online help is pretty lame. No wonder it is "expected" that I have to go to a discussion forum to get real answers. This might be hard for the techno-geeks to understnad, but I don't want to join an online community, I JUST want a photoediting program!

  • Download local help files for PSE10

    I stumbled upon a section of Photoshop Elements 10 that had the downloadable help files for use offline.  They were gray and not clickable, but I lost how to find them again and Adobe help online is useless.
    How do I download the help files so they can be accessed when there is no internet connection?

    I searched that entire document and it does not give those instructions!
    I'm so frustrated!
    To be clear about what I need...
    I want to download the help files associated with the program, so that when I hit F1 or the help button, the program should provide help search and NOT attempt to connect to the internet.
    I found this section by accident already, so I know it is here. 
    I just cannot reproduce what I clicked to make it appear.
    It was gray and not clickable but it said something like PENDING DOWNLOAD. 
    I assumed it was gray because I had not yet registered the program.

  • Can anyone help me?Time Machine couldn't complete the backup to...  An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk.  What is the problem?  I've made no changes.

    I recently starting receiving the error message "Time Machine couldn't complete the backup to... An erro occurred while copying files.  The problem may be temporary.  If the problem persists, use Disk Utility to repair your backup disk.  I have had no problems backing up my MacBook Pro 2011 to my Western Digital My Book Live through a Linksys EA4500 router until recently.  I've made no major changes.  I've ran a diagnosis on my back up drive with no problems.  The Time Machine back up starts, but about after about 5 to 10 minutes I get the error message.  I can see the shared drive in Finder.  The light on the drive blinks while it starts the back up.  I can see the shared folders on the networked drive.  The backup process starts but for some reason it just stops.  Can anyone help?

    You can't repair a network volume in Disk Utility.
    Backing up to a third-party NAS with Time Machine is risky, and unacceptably risky if it's your only backup. I know this isn't the answer you want, and I also know that the manufacturer says the device will work with Time Machine, and that it usually seems to work. Except when you try to restore, and find that you can't.
    If you want network backup with Time Machine, use as the destination either an Apple Time Capsule or an external hard drive connected to another Mac or to an 802.11ac AirPort base station. Only the 802.11ac base stations support Time Machine, not any older model.
    If you're determined to keep using the NAS for backup, your only recourse for any problems that result is to the manufacturer (which will blame Apple.)

  • I have formatting problems when deploying Help files using RoboHelp 8

    When i deploy the Help files. The formatting of the Numbering/bullets are affected and it is parts of the help files that i have not changed. Is there something else that i need to do to fix it?

    More information needed to help you.
    What sort of help are you generating?
    Are you saying it is OK in Design Editor and not in a brower, if you are generating WebHelp? If yes, what browser and is it the same in all browsers?
    There are some pages on Lists on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Is there a solution for my "files in use" installation problem with Adobe Reader XI?

    I have tried repeatedly to download Adobe Reader XI (11.0.07), but I keep getting a "files in use" message that indicates my current version, Adobe Reader 8.1, is using files that need to be updated by the download's set up. The message directs me to close my Adobe Reader 8.1 and then continue, but when I receive it my Adobe Reader 8.1 is always closed. I am tempted to uninstall my Reader 8.1 and then try downloading Reader XI, but I am afraid I could be inviting even more trouble. I should mention the reason I am trying to download Reader XI is a notification I received in my computer's status box that indicates my Reader 8.1 is not working properly and suggests I download the latest version. I discovered the notification after I was unable to open a GIF file attachment. Does anyone have a solution for this problem?

    Thanks for your reply.
    I tried to uninstall my Adobe Reader 8.1 in safe mode, as suggested above, but received a message which indicated that Windows installer could not be accessed. That was a strange message, because I have not had problems uninstalling programs in the past, and, after receiving the message, I tried uninstalling a different program in safe mode and had no problem doing so. I am now going to try your suggestion.
    Honestly, these types of technical issues always leave me so frustrated. I do not have a high technology acumen, and because my laptop is six years old, I cannot get professional help without paying a hefty fee. Thank goodness for this forum. If the solutions suggested here do not work, I guess I will keep my laptop until my Adobe 8.1 gives out completely.
    Thanks again for your assistance. I will let you know if it works.

  • HT1751 After "Restoring iTunes Library Backup" it wont link to the files in the iTunes folder. I've followed the correct procedure, and iTunes lists all my music correctly (but with no artwork), but can't locate any of the files. Using Windows 7. Help ple

    After "Restoring iTunes Library backup" it wont link to the files in the iTunes folder. I've followed the procedure as described, and the iTunes folder is in the correct location. iTunes lists all my music correctly (albeit with no artwork), but can't locate any of the files.
    I've been restoring my iTunes folder from a backup hard drive to a new computer on which I've downloaded the latest iTunes (10.7). If this is a newer version than the one I backed up with could this be the problem? (I had the latest (to my knowledge) iTunes when I backed up the folder about 3 weeks ago, was this version 10.7?)
    Or is the version of iTunes (within recent updates) not an issue when restoring a library?
    Using Windows 7.
    Any help please?

    From the top of the page where the scripts live...
    The general method of use is to download the script to a folder of your choice, e.g. your Desktop, Downloads folder or create a folder at ...\iTunes\Scripts. Select a playlist or highlight some tracks in iTunes and then double-click on the script to execute it. If no specific tracks are selected the script will try to work with all tracks in the current playlist. Some scripts offer a choice of track by track confirmation of changes or fully automatic processing of the selection. Many of the scripts can optionally display a progress bar while running.
    You are strongly advised to backup your entire library, or at the very least the iTunes Library.itl file, before use. Test the behaviour of your chosen script on a small group of files first to make sure it does what you want before applying it to large numbers of files.
    Most builds of Windows will execute *.vbs scripts when you double-click them. If that doesn't happen then you might need to visit the Add/Remove Programs or Programs & Features control panel to enable the Windows Scripting Host. I can track down details if you have issues.
    Backing up and restoring data is an area that is often glossed over. Most people don't try to learn much about it until they've lost something important. (Me too )
    If your iTunes library was in the usual layout then normally copying the whole iTunes folder from the User's Music folder in the old computer to the User's Music folder in the new one will usually work fine. Ideally this is done before iTunes is installed so that there is no empty library to replace, and all settings are picked up from the old library. This post contains more details.
    tt2

  • File to File scenario using Transport Protocol FTP  Problem

    Hi,
    my scenario is a file to file scenario using Transport Protocol FTP
    there are 3 systems involved
    a. computer 1 ( My system-source)
    b. computer 2 (XI server)
    c. computer 3 (Target system)
    I want XI to pick file from computer 1 and post it to computer 3
    I am logging on to XI server from computer 1(thro SAP GUI),
    <u><b>Sender communication  channel :</b></u>
    Transport protocol:FTP
    Messsage protocol: file
    <u><b>In FTP connection Parameters:</b></u>
    Server: computer 1 IP address
    port:21
    User name and PW---> I have given computer 1 Username and password.
    Connection mode: permanently
    Transfer mode: Binary
    Folder: C:\ftproot\output
    filename : given
    <u><b>In Receiver Communication Channel</b></u>
    Transport protocol:FTP
    Message protocol: file
    <u><b>In FTP connection Parameters:</b></u>
    Server: computer 3 IP address
    port:21
    User name and PW---> I have given computer 3 Username and password.
    Connection mode: permanently
    Transfer mode: Binary
    Put File: Use Temporary File
    Folder:
    eccserver\saploc\tmp
    filename scheme: given
    When I activate the scenario file is not getting picked from the source
    In Adapter Framework: Message says up and running No message processing now
    How to check FTP server is up and running on computer 1 (source system)and Computer 2 (XI server)?
    What could be the problem ?
    Thanks
    dushanth

    Hi
    Consider that I dont have FTP installed on my computer. According to this blog
    /people/shabarish.vijayakumar/blog/2006/08/01/along-came-a-file-adapter-mr-ftp-and-rest-of-the-gang
    I have configured.
    In sender comm channel I have given Ipaddress of computer 1 (which has a file to be picked)
    In Receiver Comm channel I have given IP address of computer 3 (in which file to be posted)
    and computer 2 is the XI server
    Computer 1 has FTP installed
    1. XI server should have FTP installed or not ? IF yes is it FTP client  or FTP server   or Guild FTP (according to the blog is enough)
    2. Computer 3 should have FTP installed or not ?
    Please help me I am really confused.
    Thanks
    dushanth

  • Help required in using same excel file as both Input and Output source

    Hello Programmers, Here I am trying to read, modify and write an excel file using JAVA, I have successfully employed Jakarta POI and read the file but the problem is that I can''t make changes in the same file and save it.
    I can't use the same file for "FileInputStream" and "FileOutputStream" I think this is causing major hurdle. Any kind of suggestion and help is truly appreciated and welcome. Thank you for your time. Here I am posting my code its a bit crude please pardon.
    * @(#)attempt4.java
    * attempt4
    * @author
    * @version 1.00 2008/3/26
    import java.io.*;
    import java.util.*;
    import org.apache.poi.poifs.filesystem.*;
    import org.apache.poi.hssf.usermodel.*;
    public class attempt4 {
    public static void main(String[] args) {
    try{
    File xlFile = new File("C:\\Drifter\\Study\\Krishnan\\Test.xls");
    FileInputStream readFile = new FileInputStream(xlFile);
    POIFSFileSystem fileSys = new POIFSFileSystem(readFile);
    HSSFWorkbook xlSheetBook = new HSSFWorkbook(fileSys);
    for(int i = 0; i < xlSheetBook.getNumberOfSheets(); i++) {
    HSSFSheet sheetNow = xlSheetBook.getSheetAt(i);
    System.out.println("\n Now Opening Sheet Number" + (i+1));
    if(sheetNow.getPhysicalNumberOfRows() > 0) {
    int numOfRows = sheetNow.getLastRowNum();
    int numOfColumns = 0;
    for(int cols = 0; cols < numOfRows; cols++) {
    HSSFRow rowNow = sheetNow.getRow(cols);
    if(rowNow != null) {
    if(numOfColumns < sheetNow.getRow(cols).getLastCellNum()) {
    numOfColumns = sheetNow.getRow(cols).getLastCellNum();
    System.out.println("\n There are " + (numOfRows+1) + " Number of Rows");
    System.out.println("\n There are " + numOfColumns + " Number of Columns");
    for(int j = 0; j < numOfColumns; j++) {
    float colTotal = 0;
    int numOfNumericCells = 0;
    for(int k = 0; k < numOfRows; k++) {
    HSSFRow rowReading = sheetNow.getRow(k);
    if(rowReading != null) {
    HSSFCell cellReading = rowReading.getCell((short)j);
    if(cellReading != null) {
    if(cellReading.getCellType() == 0) {
    colTotal += cellReading.getNumericCellValue();
    numOfNumericCells ++;
    else if(cellReading.getCellType() != 0) {
    cellReading.setCellValue((double) 0.00);
    System.out.println(" \nSum of Column " + (j+1) + " is " + colTotal);
    System.out.println(" \nAverage of Column " + (j+1) + " is " + (colTotal/numOfNumericCells));
    readFile.close();
    catch(FileNotFoundException ex1) {
    ex1.printStackTrace();
    catch(IOException ex2) {
    ex2.printStackTrace();
    catch(NullPointerException ex3) {
    ex3.printStackTrace();
    The above code can successfully read the excel document and caliculates the sum and averages of the columns, can any one please help me in writing the same into the same file in additional rows. Thank you very much for your time.

    May be you can try to create a temporary copy of the file, do your update on it and then overwrite the original.
    Edited by: jgagarin on Jun 3, 2008 6:55 PM

  • Time Machine Error: "An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

    I have a MacBook Pro 2.8 GHz Intel Core 2 Duo with 4GB, 500GB HDD, running 10.8.2 My computer as been running slow and fearing my HDD might die. I bought a brand new 1TB G-Drive from Apple yesterday and started my back up. It gets to just over 22GB backed up then I get this error message:
    "An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."
    Anyone out there who might be able to help me fix this?

    I have a MacBook Pro 2.8 GHz Intel Core 2 Duo with 4GB, 500GB HDD, running 10.8.2 My computer as been running slow and fearing my HDD might die. I bought a brand new 1TB G-Drive from Apple yesterday and started my back up. It gets to just over 22GB backed up then I get this error message:
    "An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."
    Anyone out there who might be able to help me fix this?

  • HELP!!! Problems in opening Pagemaker files in Indesign

    I am an editior for mathemtics books. I used to use the Pagemaker 7.0 to prepare my book. Before inputting the materials into the Pagemaker, I typed all of my contents in Microsoft Word. In the Microsoft Word environment, other than the text, I¡¦ve used WordArt, Equation Editor as well as some diagramsand effects. Then, I copied all the stuffs into Pagemaker directly (some as texts and some as objects). The process went smoothly and there were no problems in the past. But when I switched to use Indesign this week, I¡¦ve encountered serious problems.
    First of all, if I tried to open the old Pagemaker files, the following
    contents cannot be displayed normally:
    Some of the fonts with special effects
    Mathematical equations (I made them in equation editor in Microsoft Word. In fact, I found equation editor in Pagemaker also but I can¡¦t find that in Indesign.)
    Some of the diagrams.
    The error message says the following:
    ¡§Tracking values were modified. Please check text composition in converted
    document.
    No fill patterns are supported at this time.
    Lock/Unlock property of objects are set based on group¡¦s property.¡¨
    Then, I tried to copy the materials from Microsoft Word to Indesign (which I usually did for Pagemaker as before). But still, it didn¡¦t work. I¡¦ve looked into help and then used ¡§Paste without formatting¡¨ but the result was still no good.
    As Indesign is a placement for Pagemaker, I think there should be solutions to the problems above. Is there any procedure done wrong or do I need to adjust some settings?
    Hopefully you can understand my situation. I¡¦ve prepared all the materials under Microsoft Word and want to copy them into Indesign to publish a book. It¡¦s painful for me to re-type all the materials into Indesign again. There were no problems for me to copy into Pagemaker. So would you please kindly help me to figure out how I can fix it? As the deadline for me to submit the materials to the publisher is approaching, I¡¦m really in a hurry.
    Thanks very much for your attention and looking forward to receiving your
    reply!
    Regards,
    Alex

    If you have a subscription to the Creative Cloud, you can download InDesign CS6 as well as CC.
    Go to creative.adobe.com. If necessary, log in with your Adobe ID. Click on the Download Center tab. Click on the InDesign link (don't click Download yet). On the InDesign page, under the heading "In This Version" is a menu. Select InDesign CS6. Then select Download InDesign CS6.

  • Mystery of using CHM help files in LV

    Guys,
    If I have compiled help file (CHM) what can I do with it and how can I do it within a LV exe??
    (a) If I place dedicated HELP buttons on the different UI's can I get LV to open the CHM at different (relevant) pages of the help file?
    (b) I read something about modifying the Context Help of control (and enabling the context help to be shown in exe is another problem) and using the question mark in context help window to open again relevant page of the help file.
    I cannot find a good place to start.  Where are the tutorials and examples and documentation on what the options are and what's needed to be done??
    Thanks. 

    I think you are searching for "Control Online Help", a function you find in the Programming >> Dialog&User Interface palette.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Help file problem

    I am using Dreamweaver MX2004 and Dreamweaver 8 on windows XP
    with Internet Explorer IE7. I cannot bring up the help files from
    within Dreamweaver without the program crashing. I can however view
    the help files by opening them externally. I recently phoned Adobe
    to ask for help during the upgrading to V.8 and they were useless,
    I finally resolved the problem myself, so I am hoping that you may
    be able to help, as Adobe do not seem to be able to.

    See if this TechNote helps:
    Dreamweaver crashes when accessing help system when Internet
    Explorer 7 is
    installed
    http://www.adobe.com/go/6d7a2c59
    Hope this helps,
    David Alcala
    Adobe Product Support

Maybe you are looking for

  • How do I download a SD movie to my iPad that I have purchased in HD?

    Change version of  a move I have purchased from HD to SD on my I pad to save space when travelling.

  • Proxy to file using dynamic configuration

    Hi Frnds, I  have a scenario ABAP_Proxy-XI-File, here in the proxy I am getting a pdf file with xml as attachment now I need to save the pdf file to the target folder with the name availble in one of the fields of attached xml file. I have used Adapt

  • IT0014 wage type not processed

    Hi, When  IT0014 wage type created in middle of the month say 17.07.2009 till 31.12.9999, the wage type is taken into payroll process only during next payroll period, i.e in this case it is processed only during Aug09  it is not taken into process fo

  • Retrieve general description/ contents in business event dates

    Hi all, May I know what function can I use to get general description, business event contents, notes, web link and etc in business event and business event dates? I would like to show this in my report. Thanks & regards, LOI

  • Id-column not editable in BCC

    Hi We recently did a migration to 10.2 from 9.2 and we had our custom item-descriptors mapped in merchandising view. In 9.2, whenever we tried creating a new asset of this item descriptor we used to get the id field as editable. But after the upgrade