RHCL for RoboHTML 9 seems flaky

Maybe it's me, but I'm seeing some peculiar behavior when attempting to use RHCL with RH HTML 9.01 (TCS) to build a CHM file.  The sample project, sales builder, builds the CHM as expected when compiling from the RH interface.  The RHCL command (run w/ RH closed) sometimes fails and, when it works, always gives a wrong result.  I am copying the command from a text file, so it's the same for each trial.  When RHCL fails, it gives warning: "no baggage file description."  When it produces a CHM, there's no TOC and a wrong default topic.  The first topic is "AIR Help Commenting and Rating" and not "What is Salesbuilder?"  In project settings, TOC is set to default.  The result gives search and glossary tabs (no terms as are in the project), but an index tab is missing.  Also, the result omits browse sequences.  The forums are reporting various other strange results using RHCL.  Does someone have some answers? 

Command Line generation is not something I use but my site hosts an article written by Bill Albing. Maybe that has something that will help you.
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • HT1390 Hi, I rented 4 movies last night which I have been charged for however seem to have disappeared from my iTunes. I have not watched any of them or opened them. Can you please tell me whats happened?

    Hi, I rented 4 movies last night which I have been charged for however seem to have disappeared from my iTunes. I have not watched any of them or opened them. Can you please tell me whats happened?

    While we all have MacBooks in this forum most of us don’t have Lion. There's a Lion Support Community where everybody has Lion.You should also post this question there.  https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion

  • Error message:  Cannot sync songs purchased in iTunes to iTouch because computer is not authorized.  I go in and authorize computer (only computer I have ever used for iTunes), seems to be successful.  Then I try to sync again and it gives same error mesg

    It just goes in a circle.  This computer not authorized to sync purchased songs to iTouch.  Follow directions to authorize computer, seems successful.  Sync again and it comes up with the same error message....this computer not authorized to sync iTune purchases to iTouch.  I have deauthorized the computer and reauthorized and it didn't make a difference.  I updated and restored to factory settings.  Still same error message.  I have had this problem the last 2 times I have synced.  Worked previously.  Any ideas??

    additional info:  I looked into similar complaints.  1 suggested that something is wrong with the files.  Delete them off of computer and divice (but they are not on my divice anymore) and then download them again from iTunes purchase history.  Went in to check iTunes purchases to make sure the songs would be there if I did follow these steps.  Well, NONE of them are in my purchase history.....probably the real problem here.  I had an original iPod Nano and then upgraded to my current iTouch.....same computer for both.  Could there have been a problem at the point of switching over to the iTouch?  That doesn't make sence to me because it is through iTunes and it was the same account for both.  I thought I'd be smart and put all the songs in a playlist and burn to a CD and them load them back in that way.....but I was not authorized to burn to a CD....go figure.  Any idease would be great!!

  • For loop- seems to be just going to last value

    Hi guys, carrying on from the thread I created yesterday I have managed to get the socket working between my server and my client, but I am having an issue when re-constructing a string that is being sent from the client to the server. I am talking about the for loop in line 151, which seems to just going straight to the last value of the for loop and thus the board isn't being reconstructed properly.
    I'm including both the server and client code which just needs to compiled (host is set to localhost on port 4500) and you will see what I mean after inputting a move from the client. Can anyone spot the problem?
    Server code
    import java.io.*;
    import java.net.*;
    import javax.swing.JOptionPane;
    class Server
         public static void main (String []args) throws IOException
              try
                   Server();     
              catch (IOException ex)
         public static void Server () throws IOException
              ServerSocket serverSocket=null;
              int portNo=4500;
              System.out.println("Starting");
              try
                   serverSocket=new ServerSocket(portNo);     
              catch (IOException ex)
                   System.err.println("Could not create socket on port" +portNo);
                   System.exit(1);
              System.out.println("Socket listening");
              Socket clientSocket=null;
              try
                   clientSocket=serverSocket.accept();
              catch (IOException ex)
                   System.out.println("Accept failed");
                   System.exit(1);
              PrintWriter out= new PrintWriter(clientSocket.getOutputStream(), true);
              BufferedReader in=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              //coordinates
              String coordinates[] [] = new String [8] [8];
              for (int i=0;i<8;i++)
                   for (int j=0;j<8;j++)
                        if ((i%2!=0)&&(j%2!=0))
                             coordinates[i] [j]="#";
                        else if ((i%2!=0)&&(j%2==0))
                             coordinates[i] [j]=" ";
                        else if ((i%2==0)&&(j%2!=0))
                             coordinates[i] [j]=" ";
                        else
                             coordinates[i] [j]="#";
              coordinates[0][0]="R";
              coordinates[0][1]="N";
              coordinates[0][2]="B";
              coordinates[0][3]="Q";
              coordinates[0][4]="K";
              coordinates[0][5]="B";
              coordinates[0][6]="N";
              coordinates[0][7]="R";
              for (int i=0;i<8;i++)
                   coordinates[1]="P";
              coordinates[7][0]="r";
              coordinates[7][1]="n";
              coordinates[7][2]="b";
              coordinates[7][3]="q";
              coordinates[7][4]="k";
              coordinates[7][5]="b";
              coordinates[7][6]="n";
              coordinates[7][7]="r";
              for (int i=0;i<8;i++)
                   coordinates[6][i]="p";
              Board board1=new Board(coordinates);
              boolean gameStart=true;
              String coord="";
              String originX="";
              String originY="";
              String destinationX="";
              String destinationY;
              while (gameStart)
                   System.out.println("trying to read from client");
                   String input="";
                   try
                        input=in.readLine();     
                        System.out.println(input);
                   catch (IOException ex)
                        System.out.println("Read failed");
                        System.exit(1);
                   originX=input.substring(65);
                   originY=input.substring(66);     
                   destinationX=input.substring(67);
                   destinationY=input.substring(68);
                   coord=input.substring(0,64);
                   System.out.println(coord);
                   for (int p=0;p<64;p++)
                        System.out.println(p);
                        for (int i=0;i<8;i++)
                             for (int j=0;j<8;j++)
                                  coordinates [i] [j]=coord.substring(p);
                                  if (i==(Integer.parseInt(originX))&&(j==(Integer.parseInt(originY))))
                                       String piece="";
                                       piece=coordinates [i] [j];
                                       if ((i%2!=0)&&(j%2!=0))
                                            coordinates[i] [j]="#";
                                       else if ((i%2!=0)&&(j%2==0))
                                            coordinates[i] [j]=" ";
                                       else if ((i%2==0)&&(j%2!=0))
                                            coordinates[i] [j]=" ";
                                       else
                                            coordinates[i] [j]="#";
                                       for (int s=0;s<8;s++)
                                            for (int t=0;t<8;t++)
                                                 if (s==(Integer.parseInt(destinationX))&&(t==(Integer.parseInt(destinationY))))
                                                      coordinates [s] [t]=piece;
                   board1.printBoard(coordinates);
              out.close();
              in.close();     
              clientSocket.close();
              serverSocket.close();          
    class Board
         boolean gameStart=true;
         public Board()
         public Board(String [] [] coordinates)
              printBoard(coordinates);
         String [] [] getCoOrdinates(String [] [] coordinates)
              return coordinates;
         public static void update (String coordinates [] [])
              printBoard(coordinates);
         public static void printBoard(String coordinates[] [])
              for (int i=0;i<8;i++)
                   for (int j=0;j<8;j++)
                        System.out.print(coordinates[i][j]);
                   System.out.println();
    }Client code:import java.io.*;
    import java.net.*;
    import javax.swing.JOptionPane;
    class Client
         public static void main (String [] args) throws IOException
              Socket socket=null;
              PrintWriter out=null;
              BufferedReader in=null;
              String serverLocation="localhost";
              int portNo=4500;
              System.out.println("Starting");
              try
                   socket= new Socket (serverLocation,portNo);
                   out= new PrintWriter(socket.getOutputStream(),true);
                   in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
              catch (UnknownHostException ex)
                   System.out.println("Cannot find" + serverLocation);
                   System.exit(1);     
              catch (IOException ex1)
                   System.out.println("IO problem");
                   System.exit(1);
              System.out.println("Connected");
              //coordinates
              String coordinates[] [] = new String [8] [8];
              for (int i=0;i<8;i++)
                   for (int j=0;j<8;j++)
                        if ((i%2!=0)&&(j%2!=0))
                             coordinates[i] [j]="#";
                        else if ((i%2!=0)&&(j%2==0))
                             coordinates[i] [j]=" ";
                        else if ((i%2==0)&&(j%2!=0))
                             coordinates[i] [j]=" ";
                        else
                             coordinates[i] [j]="#";
              coordinates[0][0]="R";
              coordinates[0][1]="N";
              coordinates[0][2]="B";
              coordinates[0][3]="Q";
              coordinates[0][4]="K";
              coordinates[0][5]="B";
              coordinates[0][6]="N";
              coordinates[0][7]="R";
              for (int i=0;i<8;i++)
                   coordinates[1][i]="P";
              coordinates[7][0]="r";
              coordinates[7][1]="n";
              coordinates[7][2]="b";
              coordinates[7][3]="q";
              coordinates[7][4]="k";
              coordinates[7][5]="b";
              coordinates[7][6]="n";
              coordinates[7][7]="r";
              for (int i=0;i<8;i++)
                   coordinates[6][i]="p";
              Board board1=new Board(coordinates);
              boolean gameStart=true;
              String coord="";
              while (gameStart)
                   String originMove=JOptionPane.showInputDialog(null,"Client Origin Move","Enter in origin of piece",JOptionPane.QUESTION_MESSAGE);
                   String destinationMove=JOptionPane.showInputDialog(null,"Client Destination Move","Enter in destination of piece",JOptionPane.QUESTION_MESSAGE);
                   for (int i=0;i<8;i++)
                        for (int j=0;j<8;j++)
                             coord=coord+coordinates[i][j];
                   System.out.println(coord);
                   out.println(coord+originMove+destinationMove);
                   System.out.println("passed");
              out.close();
              in.close();
              socket.close();
    class Board
         boolean gameStart=true;
         public Board()
         public Board(String [] [] coordinates)
              printBoard(coordinates);
         String [] [] getCoOrdinates(String [] [] coordinates)
              return coordinates;
         public static void update (String coordinates [] [])
              printBoard(coordinates);
         public static void printBoard(String coordinates[] [])
              for (int i=0;i<8;i++)
                   for (int j=0;j<8;j++)
                        System.out.print(coordinates[i][j]);
                   System.out.println();
    }Cheers,
    Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    jverd wrote:
    p595659 wrote:
    1) I don't think that even compiles. Since you're catching IOException, your throws clause is bogus--that method can never throw IOE.I have removed the try and catch statements in the main method. I cannot, however get rid of the throws IOException in the main method other my program won't compile.Right. Don't catch it, since you're not handling it. Just declare that it throws it.
    Indeed, this is what I have done :)
    >
    3) Don't name methods the same as your class name.See answer to 4.
    4) Start method names with lowercase letters.
    try
    serverSocket=new ServerSocket(portNo);     
    catch (IOException ex)
    System.err.println("Could not create socket on port" +portNo);
    System.exit(1);
    ServerSocket is a part of the java.net package. I am just creating an instance of it. http://java.sun.com/j2se/1.4.2/docs/api/java/net/ServerSocket.html
    I don't know what you're talking about. You had a class named Server and a method named Server. That's confusing.Changed- I didn't spot it, so I have named it startServer now.
    >
    5) There's almost no point to ever calling System.exit. Here, again, since you're not
    actually handling the exception, don't bother catcing it.Sorry, but this was how I was taught when I started java. My understanding is that System.exit properly terminated applications so this freed up memory so it's abit of a habit of mine, is this wrong to do in this instance?Calling it in response to an exception is wrong. It's not that method's job to decide to shut down the VM. Just let the exception bubble up (or else handle it properly). You do not need to call System.exit to free up memory. It's freed up automatically when the VM exits. The OS takes care of that, without any help from you.Removed- thanks for clearing that up for me :)
    JacobsB wrote:
    line 151 of the server code or client code?Line 151 of my server code. My client is working fine up to this step of the programming I have done- it's just the server part I'm having issues with. You can compile and run the client fine- you can compile the server but as explained in the original post, I'm having a logical error when redrawing the board when it gets the 68 charecter string from the client (first 64 charecters are for the board, then the original position (x and y respectively), followed up the new position (x and y respectively again).
    I'm including an updated version of the code, after all the comments above so we have an updated version for trying to solve the problem I'm having. The client code does not need to be updated as it has not changed yet, so you can use the code in the original post.
    import java.io.*;
    import java.net.*;
    import javax.swing.JOptionPane;
    class Server
         public static void main (String []args) throws IOException
              startServer();     
         public static void startServer () throws IOException
              ServerSocket serverSocket=null;
              int portNo=4500;
              System.out.println("Starting");
              try
                   serverSocket=new ServerSocket(portNo);     
              catch (IOException ex)
                   System.err.println("Could not create socket on port" +portNo);
                   ex.printStackTrace();
              System.out.println("Socket listening");
              Socket clientSocket=null;
              try
                   clientSocket=serverSocket.accept();
              catch (IOException ex)
                   System.out.println("Accept failed");
                   ex.printStackTrace();
              PrintWriter out= new PrintWriter(clientSocket.getOutputStream(), true);
              BufferedReader in=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              //coordinates
              String coordinates[] [] = new String [8] [8];
              for (int i=0;i<8;i++)
                   for (int j=0;j<8;j++)
                        if ((i%2!=0)&&(j%2!=0))
                             coordinates[i] [j]="#";
                        else if ((i%2!=0)&&(j%2==0))
                             coordinates[i] [j]=" ";
                        else if ((i%2==0)&&(j%2!=0))
                             coordinates[i] [j]=" ";
                        else
                             coordinates[i] [j]="#";
              coordinates[0][0]="R";
              coordinates[0][1]="N";
              coordinates[0][2]="B";
              coordinates[0][3]="Q";
              coordinates[0][4]="K";
              coordinates[0][5]="B";
              coordinates[0][6]="N";
              coordinates[0][7]="R";
              for (int i=0;i<8;i++)
                   coordinates[1]="P";
              coordinates[7][0]="r";
              coordinates[7][1]="n";
              coordinates[7][2]="b";
              coordinates[7][3]="q";
              coordinates[7][4]="k";
              coordinates[7][5]="b";
              coordinates[7][6]="n";
              coordinates[7][7]="r";
              for (int i=0;i<8;i++)
                   coordinates[6][i]="p";
              Board board1=new Board(coordinates);
              boolean gameStart=true;
              String coord="";
              String originX="";
              String originY="";
              String destinationX="";
              String destinationY;
              while (gameStart)
                   System.out.println("trying to read from client");
                   String input="";
                   try
                        input=in.readLine();     
                        System.out.println(input);
                   catch (IOException ex)
                        System.out.println("Read failed");
                        ex.printStackTrace();
                   coord=input.substring(0,64);                    
                   originX=input.substring(64,65);
                   originY=input.substring(65,66);     
                   destinationX=input.substring(66,67);
                   destinationY=input.substring(67,68);
                   System.out.println(coord);
                   for (int p=0;p<64;p++)
                        System.out.println(p);
                        for (int i=0;i<8;i++)
                             for (int j=0;j<8;j++)
                                  coordinates [i] [j]=coord.substring(p);
                                  if (i==Integer.parseInt(originX)&&(j==(Integer.parseInt(originY))))
                                       String piece="";
                                       piece=coordinates [i] [j];
                                       if ((i%2!=0)&&(j%2!=0))
                                            coordinates[i] [j]="#";
                                       else if ((i%2!=0)&&(j%2==0))
                                            coordinates[i] [j]=" ";
                                       else if ((i%2==0)&&(j%2!=0))
                                            coordinates[i] [j]=" ";
                                       else
                                            coordinates[i] [j]="#";
                                       for (int s=0;s<8;s++)
                                            for (int t=0;t<8;t++)
                                                 if (s==(Integer.parseInt(destinationX))&&(t==(Integer.parseInt(destinationY))))
                                                      coordinates [s] [t]=piece;
                   board1.printBoard(coordinates);
              out.close();
              in.close();     
              clientSocket.close();
              serverSocket.close();          
    class Board
         boolean gameStart=true;
         public Board()
         public Board(String [] [] coordinates)
              printBoard(coordinates);
         String [] [] getCoOrdinates(String [] [] coordinates)
              return coordinates;
         public static void update (String coordinates [] [])
              printBoard(coordinates);
         public static void printBoard(String coordinates[] [])
              for (int i=0;i<8;i++)
                   for (int j=0;j<8;j++)
                        System.out.print(coordinates[i][j]);          
                   System.out.println();
    }Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I bought creative suite cs6 design standard student and teacher edition and the download did not work properly - files appear incomplete/ or damaged - none of the program items work at all. File size for installation seems very small for a product of this

    I bought creative suite cs6 standard student and teacher edition and the download did not work properly - files appear incomplete/ or damaged. File size seems very small for a product of this size. Can you assist with download issue or provision of software ?

    Lalalaladog where did you download CS6 from?  I would recommend downloading the installation files for Creative Suite 6 Design Standard at Download CS6 products

  • Final trigger for lightbox seems to load in active state

    i am a total noob
    i designed a site with a lightbox and 5 triggers.
    i made the triggers blank boxes and overlayed them on a grid of 5 photos.
    i also added txt to each trigger to define its rollover state- normal is no fill/ rollover and pushed is filled/ active is no fill.
    for some reason, the final trigger does not do the roll over action for the text box. i think it is because it loads into the active state but i can not be sure.
    i noticed that once the corresponding triggers are activated, the text boxes do not resume they're roll over behavior- they remain in the active state.
    this is the site www.joepennella.com
    the trigger i'm taling about is on the bottom right- for "commencement"
    any guidance would be greatly appreciated
    max

    how do i change it so that when the page loads that text frame loads normal state? i can't seem to get this particular txt frame to do that. all the others do it. i've deleted it, copied another, made it from scratch- this last one always seems to load in active state
    also, after coming out of the lightbox- is it possible to make the txt frame return to normal state?

  • Who are these discussions for?  Seems like a good place for Verizon to figure out who is mad.

    I need/want answers to how to STOP being treated (for the most part, there ARE exceptions).  If needed how to end my contract without going through the ringer and see what other "actions" others are doing.
    Thank you.

    AZSALUKI,
    But, they continue to tell me that i need to pay the fee, because I signed a "contract".  Over the past couple of years, they have replaced phone after phone, etc. and only said sorry.  In fact, I just got off the phone with them, and their offer was to ship me out another phone.  That is the problem.  So, THEY in fact have NOT fulfilled THEIR end of the contract.  Thus, I should be able to leave WITHOUT paying them.....  Correct?
    Onceagain, I am looking to "the group" as to how "we" are going to handle the problem.
    Oh, by the way, I did offer up another solution for them this morning.  Have a person from the store come to my location (all of 2 miles), and they said "no".  So, they are NOT working with me.
    So, please enlighten me.

  • New VisualHub updater for Lion seems to work great

    I downloaded and ran the Visualhub updater for Lion, and converted a .mpg to flash, mpeg-2, h264, and wmv.
    Unless I am missing something, we have been given quite a gift.
    Hugh

    But iMovie 06 works fine in Lion.
    Apple knows that millions of people are still using iMovie 06, (with iDVD11) so continued compatibility is logical.
    Thanks for the report.  This is good news!

  • Lightroom CC for Windows seems VERY glitchy.

    For example, when clicking on the command to crop, the picture goes blank for about a second before reappearing. Moving from photo to photo takes a very long time.   And my trial message says "30 days left in Lightroom Mobile trial" even though this is a Windows 7 computer.   What could cause these?  Has anyone else experienced the same? 

    Hi, Northern603
    There's a lot of discussion about the new Lightroom CC glitches and possible solutions in the main Lightroom forum here. Perhaps one of those discussions has a solution for your issues.

  • "Modified date" changing on messages for what seems to be no reason. Very strange.

    I have been working on an autoarchive issue with Outlook 2010 for a few days.  I found out that by selecting a message and pressing ALT+Enter you can see the modified date, sent and received dates, etc for the message.  I know if you move a message
    or reply to a message it will change the "modified date" for that message. 
    However, what is happening to me is when I look at a message it updates the "modified date".  This is crazy!  I didn't know that looking at a message changed the modified date.  If this is the case how are you supposed to check the modified
    date because when you check it it changes it to the current date and time.  Again, crazy.  Can someone shed some light on this for me?   thanks

    Hi,
    You mean that when you view the message, the modified date change to the
    current date and time? Based on my research, Editing, replying, or copying an Outlook item can change the last modified date.
    So as this issue, start Outlook in safe mode to check the issue:
    http://office.microsoft.com/en-us/excel-help/work-with-office-safe-modes-HP010354300.aspx
    If the issue still occur in safe mode, then run Windows in clean boot mode - this will exclude 3rd-party services when starting Windows - for a period of time, and check if this behavior will
    still occur.
    http://support.microsoft.com/kb/929135
    Jaynet Zhang
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.

  • RAW Processing for 5D - Seems very good.

    Hi,
    I'm finding that that my RAW images in Aperture 1.5 require very little tweaking - sometimes none at all. Anyone else finding that they are doing less to their RAW files than what they have in the past ?
    Paul

    I don't know how much you may have been using Boost, but I find myself using more Boost with 1.5 than with previous verisons. Maybe they made it a nicer looking/subtler effect? With my Canon XT, I used to use 0-50% boost, depending. Now I use 50%-80%.
    Following that train of thought, if Boost is nicer looking and you're using Apple's RAW settings for the 5D, maybe you're benefiting from the potentially better boost. Not sure...
    Anyone else notice a change in boost?
    Will
    Dual Core 2.3GHz PowerMac G5, 2GB RAM, GeForce 6600   Mac OS X (10.4.6)   Canon Digital Rebel XT, Edirol UA-5

  • Anchor point for cursor seems off

    It's like the anchor point for the cursor is way off. I can click paint brush, and the paint will show up halfway across the page. If I keep clicking, the painted spot will finally show up under the cursor and I draw. If I move the cursor, and start again, same problem. If I enter text, the text willl appear so far below the picture, I have to zoom out so far, the the picture is a very small square. I grab the text box and move it back up to the picture, zoom back in and finish. If there is more text, I just duplcate the layer, so I don't have to go through the drill again. Example:
    IMG]http://imageshack.us/a/img801/4439/photoshopbrushprob.jpg[/IMG]
    [IMG]http://imageshack.us/a/img825/7656/texterror1.jpg[/IMG]
    Same problem with drawing a line. I click on the start point, and the line draws itself, off page to the left
    [IMG]http://imageshack.us/a/img820/1223/photoshoplineprob.jpg[/IMG]
    My video drivers are up to date, I'm working in Win 7 and CS5

    As for the text: You have a baseline shift of -1000 set and all your otehr values are whacky as well. Reset the type panel. The rest is impossible to make sense of. You need to provide exact system info. could be an issue with your mouse/ tablet driver, could be something else.
    Mylenium

  • IPhone not quite ready for Enterprise seems to me

    Howdy,
    Long time Apple fan here, long time enterprise/engineer as well who in a very non-Apple world. But when I go home I just like things to work, with a good work flow - so my household is Apple-centric. That being said, I finally made the move from Blackberry to Apple iPhone and was severely disappointed (more so in myself for not doing my homework, really) and finding out that the Exchange/mail client had no search capability). I typically run 20-30k emails in my Outlook inbox at any one time (with occasional archiving to offline PST files for long term storage) and sync a good chunk of of these to my PDA). Basically, it's my knowledgeable/database. Search is critical.
    I also like to search my contacts, of which I have hundreds of these - no way to do this either?
    I found an app at the AppStore called SmartDial - but other than this, am I out in the cold for searching both email and contacts and calendar items? Oh wait - I see if I scroll to the absolute top of my contacts list there is a search field. The little guy was hiding up there.
    Anyway - the search thing needs to be highly refined by Apple. Other than that, it's a great tool.
    Thanks,

    O.K.
    You can leave feedback for Apple at:
    http://www.apple.com/feedback/iphone.html
    You can search contacts now as you found out:
    Page 97 of the manual ( the manual can be helpful):
    "You can search the first, last, and company names in your contacts on iPhone. If you
    have a Microsoft Exchange account set up on iPhone, you may also be able to search
    your enterprise Global Address List (GAL) for contacts in the organization.
    When you enter search information, contacts with matching information appear
    immediately as you start to type.
    Search contacts: In Contacts, tap the search field at the top of any list of contacts and
    enter a first, last, or company name.
    Search a GAL: Tap Groups, tap Directories at the bottom of the list, then enter a first,
    last, or company name.
    You can’t edit GAL contacts or save them to iPhone. "
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • New download of Firefox v. 3.6 for Vista seems very slow. Can anyone think of why this would happen?

    April 5th, 2011:
    First, I didn't install Firefox 4 because it doesn't support Norton 360 and the related toolbar which is crucial to me. So I installed 3.6 which I have used before which was corrupted by a Trojan virus I was infected with. I had to uninstall everything and in the interim I used IE8. I re-installed Firefox 3.6 yesterday and the only add-on I installed was the Yahoo! Toolbar for Firefox.
    Added on April 6th, 2011:
    Also, I forgot to add that often times I am waiting while the top of the screen says "Mozilla Firefox" - (Not Responding) which is what I went through with IE8. I'm getting VERY frustrated.
    Any help anyone can give would be greatly appreciated.
    Thank you in advance for your prompt attention to this question as I am VERY behind in my work due to all of this "mess". :(
    Christine

    Norton has released a patch to address incompatibility issues with Firefox 4. See [http://community.norton.com/t5/Norton-Internet-Security-Norton/Firefox-4-compatibility-hotfix-is-now-available/td-p/428894 Norton Compatibility patch Firefox 4.0]
    If you would like to update to Firefox 4.0, please do that ''before ''you install the Norton patch. Update via Help | Check For Updates preferably.
    If the problem persists, try running Firefox in [[Safe Mode]]. If it functions properly in that configuration, then one of your add-ons is the culprit.
    The '''Browserplus '''plugin you have installed will almost certainly cause Firefox to hang occasionally and it would be wise to disable it via Tools | Add-ons | Plugins.
    You also need to update Flash to v10.2.159.1 which also patches a recently discovered Zero Day exploit. See [http://www.h-online.com/security/news/item/Adobe-releases-security-update-for-Flash-Player-1228930.html Adobe releases security update for Flash Player]
    You can update Flash via http://get.adobe.com/flashplayer/
    Similarly, your Shockwave For Director plugin is also out of date which may cause Firefox to hang if the video requires a newer version. Update that via http://get.adobe.com/shockwave/
    Last but not least, consider disabling the Yahoo ActiveX plugin via Tools | Add-ons | Plugins. ActiveX is a Microsoft technology which is frequently targeted by hackers. By installing it in Firefox, you're comprising the browser's security and potentially exposing your system to attack. Firefox can open any Yahoo page without requiring ActiveX to be installed.

  • Do these results for memory seem right?

    I just added 2 - 1 gig modules to my 4 -512 modules for a Total 4gb and ran a memory test in Tech Tool 4 and these were the results:
    Physical Memory 4.00gb
    Kernel Memory 3.00gb
    Available memory 1.61gb
    This is with No Applications running. Does this look right
    It shows 4 gb in System profiler.
    Also, can someone explain what Kernel Memory is?
    Thanks in advance............JIM

    Yes, they are same.
    The difference only in better heat spreader (bigger & cover all) & additional LED activity (monitoring RAM activity) for PRO edition.
    If you love case modding and have transparent side case, maybe PRO would make it's fancier. Otherwise, take the non-PRO edition.

Maybe you are looking for

  • Open gl texture error

    hi can any one help. I recently upgraded to cs4 still running my old nvidia gt8600. the open gl was working perfect for awhile, only probl. was my boris opengl plugins worn't supported. i did researched and found it was my nvidia driver so I updated

  • Checkbox appears with text behind box in FORM

    Hello, i created a master detail page where i can also edit the master through a form (all on the same page). The check boxes in the reports are fine but in the form (to edit the master) the box appears with a text behind the box: Eigen Fust ?      "

  • Trial Balance : monthwise

    Hi expers, My users wants to get F.01 monthwise.In F.01,if run period 2,i will get gl balances from Apr10 to May10.User wants only trial balance for Apr10,May10 like.Is there any standard functionality report. Please advise. Regards, Samaar

  • Transform newbie

    Hi, I'm using eclipse + WTP to create my first JSP. I'm trying to use XSLT, so I have the JSTL (nightly build) in. For some reason my (seemingly simple) JSP produces error when invoked. It looks like this: <%@taglib uri="http://java.sun.com/jsp/jstl/

  • What do I do if Apple does not approve the DUNS Company Enrollment?

    I'm a sole proprietor but I want it to show the Company name instead of My personal name. Is there any way to get this done since when I enroll of the DUNS number, they denied it as well.