Why is there an error message while opening my CHM under Windows XP?

Hey,
I´m using Windows 7, RoboHelp 8 and generate CHM files to be integrated into our software or to be downloaded from our website.
I upload the compiled file to our server, then other persons can downoad it to their local disk which runs under WIndows XP. This was done by one person - she double clicks on the CHM, the window opens, shows the TOC but on the content side appears the message "the navigation to the website (failed?)".
Maybe you have an idea how to solve that problem? We are having cutsomers using mainly XP, therefore it should be working....
Thx so far
Janna

Hi Janna.
This is caused by additional security that has been added to Windows OS. Chances are your users will have to unblock the contents of the CHM file after it has been downloaded. Right click on the CHM file and click Properties. In the General tab should be an Unblock button. Click on it and they'll be able to see the content.
  The RoboColum(n)
  @robocolumn
  Colum McAndrew

Similar Messages

  • I am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/rirefox/components/ref helper.JS:510 in English

    i am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/Firefox/components/ref helper.JS:510 in English

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • Getting error message while opening PDF file.

    Hello Experts....
    I'm getting error message while opening the attached PDF file in mail.
    I'm Sending the payslip to mail which is converted into .PDF format.
    Where exactly the problem i m not getting.
    Please help....

    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid                    = rqident
            no_dialog                      = ' '
           DST_DEVICE                     = out_parms-pdest
          PDF_DESTINATION                =
           get_size_from_format           = out_parms-pdest
          IMPORTING
            pdf_bytecount                  = bytecount
           pdf_spoolid                    = pdfspoolid
          LIST_PAGECOUNT                 =
           btc_jobname                    = jobname
           btc_jobcount                   = jobcount
          TABLES
            pdf                            = out_tab
          EXCEPTIONS
            err_no_abap_spooljob           = 1
            err_no_spooljob                = 2
            err_no_permission              = 3
            err_conv_not_possible          = 4
            err_bad_destdevice             = 5
            user_cancelled                 = 6
            err_spoolerror                 = 7
            err_temseerror                 = 8
            err_btcjob_open_failed         = 9
            err_btcjob_submit_failed       = 10
            err_btcjob_close_failed        = 11.
      IF sy-subrc NE 0.
      ENDIF.
    *CALL FUNCTION 'BAPI_GET_PAYSLIP_PDF'
    EXPORTING
       employeenumber       = PERNR-PERNR
       sequencenumber       = '00001'
       payslipvariant       = 'PAYSLIP-PM'
    IMPORTING
      RETURN               =
      PAYSLIP              = PAYSLIP
      PDF_FSIZE            =
    ******************CONVERTING PAYSLIP(XSTRING) TO BINARY FORMAT******
    call function 'SCMS_XSTRING_TO_BINARY'
       exporting
         buffer                = payslip
      APPEND_TO_TABLE       = ' '
    IMPORTING
      OUTPUT_LENGTH         =
       tables
         binary_tab            = OUT_TAB.
        check not ( out_tab[]  is initial ).
        refresh i_record.
        clear : i_record.
        call function 'QCE1_CONVERT'
          tables
            t_source_tab         = out_tab
            t_target_tab         = i_record
          exceptions
            convert_not_possible = 1
            others               = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
       do.
         i_record = it_attachment_long.
         append i_record.
         shift it_attachment_long left by 255 places.
         if it_attachment_long is initial.
           exit.
         endif.
       enddo.
        select single ltx into subject from t247
                   where mnr eq pn-begda+4(2)
                     and spras eq 'EN'.
        condense subject.
        concatenate 'Payslip for the month of' subject pn-begda+0(4)
                                  into subject separated by space.
        describe table lt_objbin lines l_att_lines.
        read table lt_objbin index l_att_lines.
        lv_document_data-doc_size = tab_lines * 255 .
        lv_document_data-obj_name = 'Payslip'.
        lv_document_data-obj_descr = subject.
    e-mail body
        clear lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = tab_lines.
        lt_objpack-doc_type = 'RAW'.
    LT_OBJPACK-doc_size = STRLEN( LT_OBJTXT ).
        append lt_objpack.
    For e-mail attachment
        lt_objhead = 'payslip.pdf'.
        append lt_objhead.
        lt_objbin[] = out_tab[]."i_record[].
        "describe table i_record lines l_att_lines.
        describe table out_tab lines l_att_lines.
    CLEAR LT_OBJPACK.
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_att_lines.
        lt_objpack-doc_type = 'PDF'.
        lt_objpack-obj_name = 'attachment'.
        lt_objpack-obj_descr = 'payslip'.
        lt_objpack-doc_size = ( l_att_lines - 1 ) * 255 + strlen( lt_objbin ).
        append lt_objpack.
    make recipient list
       " check user_mail_id is not initial.
        lt_reclist-receiver =  user_mail_id.
        lt_reclist-rec_type = 'U'.
        append lt_reclist.
        call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          exporting
            document_data              = lv_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          tables
            packing_list               = lt_objpack
            object_header              = lt_objhead
            contents_bin               = lt_objbin
          contents_txt               = lt_objtxt
            receivers                  = lt_reclist
          exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
        if sy-subrc = 0.
          write:/ 'Mail sent to', 30 user_mail_id.
          write : sy-uline.
        else.
          write:/ 'Error encountered'.
        endif.
        clear : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
        refresh : lt_objpack, lt_objhead, lt_objbin, lt_reclist.
       clear : filepath+3(17), pdffile, encryptpdf, batch_file.
        clear : out_tab, i_record, filetable.
        clear : user_mail_id, password.
      else.
        write : 'payslip not generated'.
      endif.
    end-of-selection.
    Please Check....

  • Bypass the error messages while opening the Web Analysis 9.3.1 Report

    I am using WA 9.3.1 to create a few reports. The login users will have some essbase meta-read security filters to restrict the access into certain regions and entities.
    For example:
    user a has the meta-read and read access of @idescendants (east);
    user b has the meta-read and read access of @idescendants (west);
    user c has all the accesses
    However, in the first start-up page (Web Analysis 9.3.1 dashboard), I have a dashboard which contains all the regions access. When user a login, he shall only see his own dashboard (speedometers, etc.).
    Currently the user login will get some error messages (such as "loading document produce error", etc). I wonder whether we can set the message level in Web Analysis so that there is no such error message while the user is opening the reports.
    Thanks

    Karen,
    Thanks for the reply.
    I have checked my Web Analysis report, and I still have the error message of "Error Occur while opening document. Document ID = {0}" while using the some user id to login.
    In my Web Analysis database connection preference, my setting is "user the user id and password". I have verified this (when I use "user a" to login, and in essbase connection, i can see the session with "user a").
    In the WA report, however, I use the multiple-level combo box, so that it can give me different levels of entities, for example, the top level is all regions, the 2nd level is east/west/south/ ec, and the next level is cities, and so on. And if "user a" login, he will be able to see the all regions and east, and then east cities (of course, if he select all regions, there will be no data available).
    Do you think this multiple level combo boxes can be the cause of this error message?
    Thanks a lot

  • Getting Error message while open a SWF file from desktop and any other location

    dear all.,
    I am using Flash CS4, when I publish SWF movie and open it directly from directories I get an error message. (The image of error message attached,
    Plz, help me to short out this problem. ASAP.
    Thanks in advance.

    hi.
    When I double click on the any SWF file (from any location of my system), this error message pop up, which say that “ Windows cannot find “<< file path>>” ……………… but file is playing.
    I don’t know why this error message is coming.
    plz, help me to solve this problem .
    Thanks.

  • Error message while opening a project: "an error was encountered while loading the image"

    We've run into a new error message here today:
    an error was encountered while loading the image
    It appears when we try to load a recorded project. It occurs on both the cp-file and the backup file.
    It's on a windows 7-machine.
    Anyone encountered it and knows what it means?
    is the project lost forever?

    Hi there
    Hmmm, it may be related to Windows 7, but let's check the obvious stuff first.
    Where exactly is th project if you locate it using Windows Explorer? Is it found on your local C drive or is it found on a network drive?
    If it's on a network drive, please note that Captivate has never worked well with projects being edited while they are on network resources. So the first step in this case (assuming that's where the project is) would be to move the project file off the network and onto the local C drive. Then try opening again.
    Assuming the project isn't on a network, all still may not be lost. The next thing to try would be to create a new blank project sized identically to the one that seems to have gone south. Then click File > Import > Slides/Objects and see if you can import the content from the errant project into the new.
    And if those steps fail, it's likely time to restart from scratch. But depending on what you have done so far and how you have done it, you might be able to salvage some of it by playing back the content (assuming you have published it during testing) and record what you are playing back with Captivate.
    Best of luck to you in sorting things. You should also consider filing a Bug Report.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Error Message while opening workbook or Query in BEx Analyzer

    Hi all,
    Whenever I try to open any workbook or query using Bex Analyzer I get an error message saying "Serious error occured while reading history folder" Message class RSOBJS, number 170. But this doesnt stop me from opening the workbook or the query.
    Kindly help me to suppress or eliminate this message. I am not able to find this message in the list of messages available in RSRT either.
    Thanks and Regards
    Mui Kanva

    Hi Mui Kanva,
    Does your problem occur in a copied system?
    I have same problem in our Quality-BW (copied from productive system). WE are in our QBW not able to activate personalization correct and get the same error messages. I suggest the reason in the fact, that the source-system Myself (QBW) does not work correct. This reason causes that export data sources could not be activated via RFC-Connection.
    Please check to activate your source system?
    We accept the error messages in our QBW and did not activate the RFC connection.
    Regards
    Andreas

  • Why is there an error message when I try to update to ios 5.1 on my iPod touch?

    When I click "Install Now" it says "Verifying" then an error message pops up saying that there was an error updating and it dosent give me much more information.

    This indicates an issue with the network.
    Power cycle the ATV, router, and computer.

  • Error message while opening cs3

    I cannot get my photoshop cs3 extended to fully open on my desktop. error message pops up saying photoshop has stopped working. the credits run though. and it looks as though it is going to open. then stops:) Any advice would be greatly appreciated!

    Did it work previously? If so, what changed?
    Try these steps to fix most issues: http://bit.ly/Troubleshoot_PS

  • Error message while opening any program of Adobe.

    When i try to open ANY program of Adobe (Photoshop, Dreamweaver, Reader, etc). An error message appears:
    Please, help me, i've tried everything: Uninstalling, running as administrator, etc.
    I have the route asociated correctly to files, i 've checked them.

    Open a browser and enter the following into the address bar
    C:/Program Files (x86)/Adobe/Adobe Dreamweaver CS6/Dreamweaver.exe
    The result (if using FF) should be similar to the following window to appear
    If it appears click on Cancel. Dreamweaver is in the correct location.
    If you receive a different message like File not found, then Dreamweaver is not in the correct location.

  • Error message when opening iTunes after updating Windows 8.1

    I recently updated my windows software to 8.1.  Now I am getting a message that iTunes stopped responding and must close.  I tried to uninstall and reinstall iTunes but that has not fixed the problem.  I cannot get iTunes to open.  There is no error number when this dialogue box opens. 
    Any help would be greatly appreciated!

    Hello Socestlavie,
    It sounds like iTunes is not opening correctly and is quitting on launch. I would troubleshoot the iTunes launch issues with the following article to help resolve the issue:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    First attempt starting iTunes in Safe Mode to see if the issue persists, and proceed accordingly.
    Start iTunes in Safe Mode
    Open iTunes in Safe Mode to isolate any interference from plug-ins or scripts not manufactured by Apple.
    Hold down Shift–Control while opening iTunes. You should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    Click Continue.
    See if the issue you're experiencing persists in Safe Mode.
    If you have the same issue while iTunes is in Safe Mode, proceed to the "Create a new user account" section. If you don't experience the same issue, follow these steps to remove third-party plug-ins.
    If it comes down to reinstalling iTunes, there is an article provided that will uninstall iTunes AND its associated softwares for a complete wipe, and reinstall, so I would try that one more time, if needed.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Geting Error message while in Lenovo Solution Center window

    Getting a error message when clicked on Device Manager Icon
    "LSC is unable to run because a required file is missing"
    Please help resolve ASAP
    Shanks

    Hi Shanks,
    Welcome to Lenovo Community!
    I’m sorry to hear that you are having the issue with Lenovo Solution Center.
    I would like to request you to reinstall the Lenovo Solution Center to resolve the issue. Please uninstall the current version of Lenovo Solution Center from uninstall or change a program option from control panel and install the latest version of LSC.
    Please click the below link to download the application based on the requirement of the OS version.
    Lenovo Solution Center for Windows 8.1 (32-bit), 8 (32-bit), 7 (32-bit)
    Lenovo Solution Center for Windows 8.1 (64-bit), 8 (64-bit), 7 (64-bit)
    Hope this helps. Do post back if issue persists!
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Already opened error message while opening GP work item

    Hi Experts
    We are on NW 7.0 SP 14. We have a custom developed solution integrated with Guided procedure workflow. This workflow was working fine for almost 5-6 months. For last few days we have started getting following issue when one of the step processor executes the work item in the UWL.
         The following action has been opened by another 1 user(s). The last access time is: Tuesday, July 28, 2009 3:09:26 PM.
    This error is coming when there is only one user assigned as processor of the step and he opens the work item for first time.
    I did a search on this issue in SAP notes and SDN but could not find anything relevant. Let me know if you need more info on this.
    Any pointer to resolve this solution will be appreciated.
    Best Regards
    Prabhakar

    I think the work item may got locked.
    If this the case, you can un-lock it from :
    Guided Procedures --> Administration --> Unlock Objects.
    This may solve your problem.
    Regards,
    Yogesh...

  • Why are there CORBA error messages -- COMM_FAILURE when using the orb obj?

    Hi Guys,
    I followed the tutorial http://download.oracle.com/javase/6/docs/technotes/guides/idl/GShome.html
    compiled and run the code. Everything works fine however whenever I use the ORB orb object I get the following message
    both in my Naming Service and the HelloServer output:
    2010-12-10 12:35:46.505 FINE Transport to 127.0.1.1:44100: stream closed on read < 0
    2010-12-10 12:35:46.506 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): getMessage() -- COMM_FAILURE
    2010-12-10 12:35:46.507 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): streamClosed()
    2010-12-10 12:35:46.508 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): close()
    Why is this happening?
    I have also installed jacorb and added it to my class path and run the examples with:
    jaco -Djacorb.config.dir=. -DORBid=HelloClient HelloServer
    ns -Djacorb.naming.ior_filename=/home/zorg/Project/Java/CORBA/NameService/NS_Ref
    jaco -Djacorb.config.dir=. -DORBid=HelloClient HelloClient
    I have included the code from the tutorial for convinience:
    // HelloServer.java
    // Copyright and License
    import HelloApp.*;
    import org.omg.CosNaming.*;
    import org.omg.CosNaming.NamingContextPackage.*;
    import org.omg.CORBA.*;
    import org.omg.PortableServer.*;
    import org.omg.PortableServer.POA;
    import java.util.Properties;
    class HelloImpl extends HelloPOA {
      private ORB orb;
      public void setORB(ORB orb_val) {
        orb = orb_val;
      // implement sayHello() method
      public String sayHello() {
        return "\nHello world !!\n";
      // implement shutdown() method
      public void shutdown() {
        orb.shutdown(false);
    public class HelloServer {
      public static void main(String args[]) {
        try{
          // create and initialize the ORB
          ORB orb = ORB.init(args, null);
          // get reference to rootpoa & activate the POAManager
          POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
          rootpoa.the_POAManager().activate();
          // create servant and register it with the ORB
          HelloImpl helloImpl = new HelloImpl();
          helloImpl.setORB(orb);
          // get object reference from the servant
          org.omg.CORBA.Object ref = rootpoa.servant_to_reference(helloImpl);
          Hello href = HelloHelper.narrow(ref);
          // get the root naming context
          org.omg.CORBA.Object objRef =
              orb.resolve_initial_references("NameService");
          // Use NamingContextExt which is part of the Interoperable
          // Naming Service (INS) specification.
          NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
          // bind the Object Reference in Naming
          String name = "Hello";
          NameComponent path[] = ncRef.to_name( name );
          ncRef.rebind(path, href);
          System.out.println("HelloServer ready and waiting ...");
          // wait for invocations from clients
          orb.run();
          catch (Exception e) {
            System.err.println("ERROR: " + e);
            e.printStackTrace(System.out);
          System.out.println("HelloServer Exiting ...");
    // Copyright and License
    import HelloApp.*;
    import org.omg.CosNaming.*;
    import org.omg.CosNaming.NamingContextPackage.*;
    import org.omg.CORBA.*;
    public class HelloClient
      static Hello helloImpl;
      public static void main(String args[])
          try{
            // create and initialize the ORB
            ORB orb = ORB.init(args, null);
            // get the root naming context
            org.omg.CORBA.Object objRef =
                orb.resolve_initial_references("NameService");
            // Use NamingContextExt instead of NamingContext. This is
            // part of the Interoperable naming Service. 
            NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
            // resolve the Object Reference in Naming
            String name = "Hello";
            helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));
            System.out.println("Obtained a handle on server object: " + helloImpl);
            System.out.println(helloImpl.sayHello());
            helloImpl.shutdown();
            } catch (Exception e) {
              System.out.println("ERROR : " + e) ;
              e.printStackTrace(System.out);
    }Edited by: 819887 on 10-Dec-2010 04:51
    Edited by: 819887 on 10-Dec-2010 04:58

    Figure out the actual problem is when the naming service is resolving the name on line:
    helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));

  • Why am I receiving an error message while trying to change my phone number?

    So I have been trying to change my phone number for a few days now and every single time I get this error message, before i even start, "The activity you are trying to perform is currently unavailable. Please try again later."  I was hoping to circumvent the 15$  fee of doing it over the phone. Finally, I decided to do an online chat, the associate did not know why the error was occurring but informed me in order to change my number over chat, i would STILL have to pay the 15$ fee. Something struck me as so wrong there, so conveniently the change features and phone number part of the website was not working, however the view/pay your bill part was always working properly, never received any error messages there. I understood it was not the associates fault however. Still that is wrong. If it was not urgent I would wait. Yes I could have tried the number block, that section was not working either, but having to renew which numbers you want blocked every couple of months makes no sense to me, if I want something blocked, i want it blocked permanently not just for 90 days.  Yes I tried call/SMS blocker apps from the app store but they're faulty in that they still give you notifications of when the blocked person/number called/text or do not always block everything all the time. But when it came down to it, even the associate encountered the error message while trying to change my number. So why is this happening. Verizon is expensive but the reception is better however theirs always issues when I need to fix something. Its frustrating

    Verizon was having a problem on their end, perhaps a server down for some repair or updating. However you were already aware that there was an on-going problem in your own posting and you decided to continue on.I can understand you wanting this done and trying to save the $15.00 fee.  However I would have waited a bit longer until the Verizon issue had been corrected. Yes it is frustrating but again you know in advance of a problem , I can understand that this is most upsetting for you but never try to perform any change when a problem is there and I also do not like to do business on a weekend with no live tech support available.  I'm sure this will all work out for you if given some time.  Sorry. 
    So I have been trying to change my phone number for a few days now and every single time I get this error message, before i even start, "The activity you are trying to perform is currently unavailable. Please try again later."     

Maybe you are looking for

  • Why is my Safari so slow

    I have recently upgraded to Tiger. Since doing so, web pages loading on Safari have slowed down drastically. Navigating from one web page to another has become painfully slow whereas it was almost instant previously (we have an excellent broadband se

  • Java JIT

    VM that comes with jre1.4 includes JIT in it? I heard JIT is an integral part of JVM. i am trying to speed up the execution time of my code and want to compare its performance with and without JIT. Thanks in advance, Rajesh

  • Is there a support forum for Filemaker?

    If not, I guess I can post this question here. Is there a way to set a certain entry in a certain field to always be a certain color? For instance, we have a column field in our database for technician and when you click in that field there is a list

  • I am getting a Block Reason: Forbidden Category "Weapons" message when I try to look at pictures of Gerber Knives and I didn't set up Firefox to block anything.

    I am trying to look and see some Gerber knives... when I click on the photo link I get the message - This site has been blocked by the network adminstrator. Block Reason: Forbidden category "Weapons". As far as I know I am the Network Admin. and I've

  • Doubt to be Clarified on JTextArea appending a string

    Hi All, Here is the actual code. String msg="Settings Details Will be Produced after the Connection is Successful";                     String msg1=      "-------------------------------------------------------------------------";