Problem with a long row for printing

hi,
I have a problem with long row in the JTable.
I want to span the long row into 2 rows so that I can take the print of the table.

Would it not be easier to wrap the data in the row; you can easilly modify the height of the row in the JTable - setRowHeight().
Also, if it only affects printing, you could take care of this when you are formatting each line ready for output.

Similar Messages

  • Problem with getting specified pages for printing

    requested Sir,
    I am sanjeev, presently working with adobe indesign for publishing.
    i am working verious sets of master pages,
    now have a problem go gate specific pages for print in the same software.
    it shows saction name that i could not inditify
    give me the message
    (one or more of th pages specified are not valid page name)
    so how gate the valid name of pages?
    please slove my problem,
    thanks
    sanjeev

    If your document has more than one section (sections are used to restart page numbering and similar tasks) you can identify the pages using either the logical name, which uses the section prefix and the "logical' page number which is the number that appears in the page marker, or you can use the absolute page number, which is the position in the document. You can set your preferences to display section or absolute page numbering in the Pages panel, too.
    Unless you assigne some other prefix, sections are labeled as Section I, Section II and so on, and pages are designated by Section:Page# in the dialogs. If you want to use absolute page numbering in the dialog instead, you can add a + sign in front of the page number in the dialog: +6-+12 will be the sixth though twelf pages in your document, even if they are in different sections and carry the numbers vi - 4, for example.

  • Problem with "SELECT...FOR UPDATE OF..." and "POST command" combination

    Problem with "SELECT...FOR UPDATE OF..." and "POST command" combination
    Problem in committing transactions in Multiple Forms (Oracle Forms) with POST built-in command:
    Consider that the following statements are written in WHEN-WINDOW-CLOSED trigger of a called form.
    Statements in called form (Form name: FORM_CHILD):
    go_block('display_block') ;
    do_key('execute_query') ;
    -- Data from table_b will be populated in this block, based on the value of COLUMN_1 obtained
    -- from TABLE_A.
    -- Example: If the value of COLUMN_1 is 10, then all the matching records from TABLE_B, which
    -- are inserted with value 10 in TABLE_B.COLUMN_1 will be fetched and shown here.
    if user_choice = 'YES' then
    commit ;
    else
    rollback ;
    end if ;
    Statements in calling forms:
    There are two calling forms having following statements and it is going to call the above said called form.
    CALLING FORM 1
    Statements in KEY-COMMIT trigger:
    post;
    call_form(form_child, no_activate) ;
    Statements in ON-INSERT trigger:
    select column_1
    from table_a
    for update of column_1
    where column_2 = 'X' ;
    update table_a
    set column_1 = column_1 + 1
    where column_2 = 'X' ;
    insert into table_b ...;
    insert into table_b ...; Statements in KEY-COMMIT trigger:
    post;
    call_form(form_child, no_activate) ;
    CALLING FORM 2:
    Statements in ON-INSERT trigger:
    select column_1
    from table_a
    for update of column_1
    where column_2 = 'X' ;
    update table_a
    set column_1 = column_1 + 1
    where column_2 = 'X' ;
    insert into table_b ...;
    insert into table_b ...;
    insert into table_b ...;
    Our understanding:
    Assume that both the forms are running from two different machines/instances, issuing commit at the same time. In this case, forms will start executing the statements written in ON-INSERT trigger, the moment POST command is executed. Though the commit is issued at the same time, according to oracle, only one of the request will be taken for processing first. Assume that calling form 1 is getting processed first.
    So, it fetches the value available in COLUMN_1 of TABLE_A and locks the row from further select, update, etc. as SELECT...FOR UPDATE command is used (note that NOWAIT is not given, hence the lock will be released only when COMMIT or ROLLBACK happens) and proceed executing further INSERT statements. Because of the lock provided by the SELECT...FOR UPDATE command, the statements in calling form 2 will wait for the resource.
    After executing the INSERT statements, the FORM_CHILD is called. The rows inserted in to TABLE_A will be queried and shown. The database changes will be committed when user closes the window (as COMMIT is issued in its WHEN-WINDOW-CLOSED trigger). Then the SELECT...FOR UPDATE lock will be released and calling form 2's statements will be executed.
    Actual happenings or Mis-behavior:
    Calling form 2 starts executing INSERT statements instead of waiting for SELECT...FOR UPDATE lock. Also, the value selected from TABLE_A.COLUMN_1 is same in both the calling forms, which is wrong.
    The rows inserted into TABLE_B are having similar COLUMN_1 values in calling form 2 and they are fetched and shown in the called form FORM_CHILD.
    Note that in calling form 2 also POST only is issued, but the changes posted there are accessible in calling form 1 also, which is wrong.
    Kindly suggest us as to how to fix above problem. It will be much use, if you can send us the information regarding the behavior of Oracle Forms POST built-in also.
    Our mail ID: [email protected]
    Thanks a lot in advance.

    You have several problems:
    1. On-Insert will ONLY run if you have created a new record in a base-table block. If you haven't done that, then the POST command will not cause it to run.
    2. Select for update without a "no wait" will lock records for the first form, but when the second form tries this, it will hit the ORA-00054 exception, and will NOT wait. The only way you could make it wait is to issue an UPDATE sql command, which is not such a good way to go.
    All POST does is issues SQL insert or update commands for any changes the user has made to records in a form's base-table blocks, without following with a Commit command.
    Also understand that Commit is the same as Commit_Form, and Rollback is the same as Clear_Form. You should read up on these in the Forms help topics.

  • Problem with SAP logon 720 for printng with Citrix.

    Hi,
    I have a problem with sap logon 720 when printing for Citrix, one time print and other time don't print....
    I try to start SAPLPD for prompt comand... it's start but don't print....
    i'm write here for look if other people have this problem... I dont know what I can do.....
    Thank you very much....

    Hi Itmar,
    I was having the similar issue on my Windows Server 2003 Terminal Server. At times SAP prints stop working. Then i changed Printer Type to "G" and it had solved the problem. It skips the use of SAPLPD service and calling windows printing service directly.
    Just try with that.
    Regards,
    Gaurav

  • Problems with Click a row in the Table

    Dear All,
    I am new to Java GUI. I got some problems with clicking the row in a table.
    My table allows the user to delete some rows fromt the table. When the user click a row or some rows in my table, the delete button should be enabled. It does work in most of the time. But sometimes, even the row being hight lighted, the button is still not enabled.
    Do you have any idea for what can cause this problem?
    What I did is :
    1. add a mouse listener to the table
    _userTable.addMouseListener(new java.awt.event.MouseAdapter()
    public void mouseClicked(MouseEvent e)
    userList_mouseClicked(e);
    2. then, if the row being selected is > 0, I will enable my delete button.
    Can anybody help?
    Thanks!

    Dear All,
    I am getting problems with single selection in a table. Although I have set the selection model to single, if I select a row int the table and then depress Ctrl/Shift multiple rows are selected.
    The code for set single selection is :
    ListSelectionModel seleModel = myTable.getSelectionModel();
    seleModel.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    Any idea about this? Is this a bug in JAVA?
    Thanks!

  • I having problem with the answer  question for the App Store. And I forgot the answer

    I having problem with the answer  question for the App Store. And I forgot the answer

    Pleae call 1800MYAPPLE ask to speak to account security

  • Why has my 3G stopped working on my iphone? It is enabled, and I never had problems with it before, but for about 2 months now it has refused to work and as a result I can't send any attachments such as photos or videos via text.

    Why has my 3G stopped working on my iphone? It is enabled, and I never had problems with it before, but for about 2 months now it has refused to work and as a result I can't send any attachments such as photos or videos via text.

    Cellular data is a feature from your phone carrier.  Have you contacted them to resolve your issue.

  • I am having major problems with the latest update for my itunes!

    I am having problems with the latest update for itunes, it says 'itunes has an invalid signature'. I have completely uninstalled itunes but now it wont download at all. Have tried downloading it 4 times tonight already. Anyone know how to get it to download? Or what to do?

    I am having problems with the latest update for itunes, it says 'itunes has an invalid signature'.
    That suggests that the installer is getting damaged during the download.
    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • RSAU461, problem with activating update rules for cube 0csrv_c01

    Hello,
    I have added new fields to data source 0CRM_SRV_PROCESS_H, then changed transfer rules, added characteristics to ODS 0crm_proh, and reactivated update rules 80crm_proh. But now I have problem with second update rules for this cube named 80crm_cnfh. It is not active and all fields in it have red status, error RSAU461, and I cannot activate it.
    What I should do? Should I change somehow that second source for data to my cube (change infosource, ods, rule?)
    Regards
    Radek

    hi
    As said by the Mti u have just changed the info objects in the ods and u need to map them with the specific info objects from the ods.
    double click on the Update rules of the cube and go to the characteristic tab there map the newly added info objects with the IO in the ods.
    Khaja

  • Problemas with file "ns_emails.xml" for SMTP EXCHANGE

    Hi,
    I have problems with my ns_emails configuration for a SMTP EXCHANGE Mail Server.
    I configured Outlook with this parameters and works: Autenthication: yes, SSL: yes, port: 25, host: gmail.smtp.com.
    In my BPEL process is a right msg, but the email doesn`t arrive:
    <2008-01-27 19:19:51,781> <INFO> <default.collaxa.cube.services> <Utils::initNotificationMode> Notification via voice, fax, SMS, IM or pager will be sent. Emails will be sent with the current settings. If you would like to enable them, please configure accounts in ns_iaswconfig.xml and then set the NotificationMode attribute in ns_emails.xml to either NONE, EMAIL or ALL.
    Please, ¿do you see something wrong with this file?
    <EmailAccounts xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"
    EmailMimeCharset=""
    NotificationMode="EMAIL">
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>Laura</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>smtp.gmail.com</SMTPHost>
    <SMTPPort>25</SMTPPort>
    <AuthenticationRequired>true</AuthenticationRequired>
    <UseSSL>true</User>
    <UserName>[email protected]</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">mypass</Password>
    </OutgoingServerSettings>
    </EmailAccount>
    </EmailAccounts>
    Thanks,
    Laura

    Hi,
    I know about domain.log file. In my first post, I put the message that I get.
    The problema is with the SMTP Exchange MS Server.
    I tried with a Local Mail Server with this parametes and its right.
    <GeneralSettings>
    <FromName>Laura Garcia</FromName>
    <FromAddress>testuser@lgrico-port</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>lgrico-port</SMTPHost>
    <SMTPPort>25</SMTPPort>
    <UserName>testuser@lgrico-port</UserName>
    <Password>laura</Password>
    </OutgoingServerSettings>
    But with this configuration its wrong:
    <OutgoingServerSettings>
    <SMTPHost>smtp.gmail.com</SMTPHost>
    <SMTPPort>25</SMTPPort>
    <AuthenticationRequired>true</AuthenticationRequired>
    <UseSSL>true</UseSSL>
    <UserName>[email protected]</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">pass</Password>
    </OutgoingServerSettings>
    My company has the same kind of mail server than gmail, so I,m trying to configure this first.
    This is domain.log and it`s right, I can´t see where is the problem.
    <2008-01-29 09:26:05,006> <INFO> <default.collaxa.cube.services> <Utils::initNotificationMode> Notification via voice, fax, SMS, IM or pager will be sent. Emails will be sent with the current settings. If you would like to enable them, please configure accounts in ns_iaswconfig.xml and then set the NotificationMode attribute in ns_emails.xml to either NONE, EMAIL or ALL.
    <2008-01-29 09:26:05,053> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.QueueConnectionPool::QueueConnectionPool> Creating connection pool for java:comp/env/jms/Queue/NotificationSenderQueueConnectionFactory initial size 20
    <2008-01-29 09:26:05,053> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.QueueConnectionPool::QueueConnectionPool> Fetched a queue connection from pool java:comp/env/jms/Queue/NotificationSenderQueueConnectionFactory, available connections=19
    <2008-01-29 09:26:05,053> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Start of send(type,caller,message) type = email caller = BPEL
    <2008-01-29 09:26:05,053> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Notification ID 50d528357d42a957:-4d67d6df:117c49fc103:-7fcf
    <2008-01-29 09:26:05,053> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Start Persisting notification in database
    <2008-01-29 09:26:05,100> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> End Persisting notification in database
    <2008-01-29 09:26:05,100> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Start of send(type,caller,message)
    <2008-01-29 09:26:05,100> <DEBUG> <default.collaxa.cube.services> <oracle.bpel.services.notification.queue.QueueConnectionPool::QueueConnectionPool> Released queue connection to pool java:comp/env/jms/Queue/NotificationSenderQueueConnectionFactory, available connections=20
    Thanks for your answers,
    Laura

  • Hi I have a problem with my licence number for Lightroom

    Hi I have a problem with my licence number for Lightroom, has been forced to re-install lightroom again but, have downloaded a trial version of adobe but now works license number are not, there are some who can help me with what is going wrong. Thanks Henrik

    Download Lightroom 5 from Product updates and install, use your serial number

  • Problem with installing Solution Center for a HP Photosmart Premium All-in-One Printer - C309g

    Hi folks,
    I've searched many threads and found some directions to remedy this, tried them and have had no luck.
    I'm running Windows 7.  All updates are current.  When I bought the printer I installed the software (on Windows 7 OS) from the disc and everything was fine.  Fast forward a year and Solution Center stopped working.
    Uninstalled all HP software to reinstall.  I was only able to reinstall HP Update.  I was able to load the basic drivers for print and scan, but not the entire software suite including Solution Center.  The installation stops abruptly after "installing updates".
    I even downloaded and tried "PS_AIO_06_C309g-m_USW_Full_Win_enu_140_175" and got the same result as the original installation disc.
    What can I do with my printer (HP Photosmart Premium All-in-One Printer - C309g)???
    Thanks,
    Alex
    This question was solved.
    View Solution.

    Hi jerseyal,
    I hate to hear you are having issues.  What suggestions have you tried?  Did you get an error when installing?  How are you connecting the device?  Before completing the below steps run the print and scan doctor to see what it indicates and if the issue is resolvable through that tool(click + beside utility diagnostic tools, then download beside print and scan doctor). Click Here
    If you are still experiencing the issue the steps below may help resolve it. 
    Try using the scrubber built into the software, then reinstalling from the current download available on the website. 
    From original printer installation CD:
    1. Insert CD into drive, and then cancel the installer
    2. Open My Computer, and then right click on the CD drive and chose open
    3. Open folder Util
    4. Open folder CCC
    5. Run the uninstall_ L4.bat for non-HP computers only.    For HP computers run the Uninstall_L3.bat NOTE: Performing level 4 uninstall on HP computer will negatively affect operating system functionality-HP and I are not responsible for damages or loss of data caused
    6. When the uninstall has completed restart the computer
    7. Run Disk cleanup from Accessories\ System Tools
    8. Download and install the latest version of Adobe flash player
    http://www.adobe.com/support/flashplayer/downloads.html
    9. Use the following tool to clean the registry.  Note: This utility is not HP sponsored or approved.  HP and I are not responsible for damages or loss of data caused by the utility.  This step is optional.   You can skip it if you want.
    http://download.cnet.com/Advanced-SystemCare/3000-2086_4-10407614.html?part=dl-6271865&subj=dl&tag=b...
    10. Download the full feature software and drivers Driver Link
    11. Run the download to reinstall the printer
    From a download:
    1. Run disk cleanup on your computer
    2. Download and run the software and drivers below.
    3. Once the download is done extracting, cancel the download. Driver Link
    4.. Press the Windows key + R on the keyboard to bring up the run menu.
    5. Type %temp% in the run field and click OK.
    6. Look for, and open the folder starting with 7z (Example: 7zS2356)
    7. Open folder Util
    8. Open folder CCC
    9. Run the uninstall_ L4.bat for non-HP computers only.    For HP computers run the Uninstall_L3.bat NOTE: Performing level 4 uninstall on HP computer will negatively affect operating system functionality-HP and I are not responsible for damages or loss of data caused.
    10. When the uninstall has completed restart the computer
    11. Run Disk cleanup from Accessories\ System Tools
    12. Download and install the latest version of Adobe flash player
    http://www.adobe.com/support/flashplayer/downloads.html
    13. Use the following tool to clean the system and registry.  Note: This utility is not HP sponsored or approved.  HP and I are not responsible for damages or loss of data caused by the utility.  This step is optional.   You can skip it if you want.
    http://download.cnet.com/Advanced-SystemCare/3000-2086_4-10407614.html?part=dl-6271865&subj=dl&tag=b...
    14. Download the full feature software and drivers Driver link
    15. Run the download to reinstall the printer
    Note: Depending on type of security software it may need to be disabled when re-installing unit. Also make sure the Adobe flash player is up to date.
    Hope this helps!
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    I work for HP.

  • 10.6.8 Printing problem with HP Photosmart premium C310 printer

    I hvae a Photosmart Premium C310 printer which is connected wirelessly to my network. I also have a Mac Pro which is connected to the same network by ethernet cable. Up until I updated to OS10.6.8 everything worked fine. After that I found that when I restated the printer I could see it for a short time under the printer list but then it seems to "time out" and I can no longer print to it within a couple of minutes from my Mac Pro. When I restart the printer I can also see its embedded web page again for a few minutes but then it becomes not visble.
    I also own a Macbook pro and two iphones and an ipod touch and all these wireless devices have no problem with seeing the printer and printing to it at any time. The Macbook Pro is also updated to 10.6.8 and works fine with this printer.
    It would seem that the issue is not with wireless devices but with a wired device printing to this wireless printer even though it is on the same network and on the same subnet mask.  All that has changed between working fine last week and not being recognised this week is an update to OS10.6.8
    I have restarted the Mac Pro, reinstalled the latest HP software and reset the printers wireless setup but this makes no difference.
    Is this a similar issue to what others have been reporting about a bug with printing under 10.6.8 or possibly something else. Any help here would be appreciated as I have no way of printing from my Mac Pro right now.

    Pengtao, I have plugged my Macbook Pro into the network (with Airport off) and I can no longer reach the Photosmart printer. Remove the cable and go wireless and the Macbook Pro can reach the printer again. I have installed the photosmart printer software under Windows 7 using Parallels on my Mac Pro and have no problems finding the Photosmart printer from it.
    To make matters worse I have bought a new Laserjet M1536 today and install it on my network. Again I get the same issues. I can print to it from any wireless device on the network but cannot reach it on any wired device on the network.Switch the printer off and on and I can see it and print to it for about a minute then it becomes "offline" to my Mac Pro
    Given that it works fine under Windows 7 from a Mac Pro I have to conclude that the issue must be OSX 10.6.8 and nothing else as everything worked fine before the upgrade. I have turned all device off and on , checked all cable connections and also uninstalled and reinstalled all printer drivers on the Mac Pro and cannot get it working. Any advice you may have that may solve the problem beyond it being an OSX issue will be greatly welcomed.

  • Problems with RH 9, CBT, and Printed Documentation

    When I upgrade an x5 project in the new RH9, all appears to go fine until I try to generate the Printed Documentation. I was disappointed that the printed documentation STILL requires so much cleanup. Text tagged with the Online condition sometimes displays on some topics, even when Online is excluded from the output. Also, some of the cleanup issues surrounding headings and index entries are still necessary.
    The four biggest issues are:
    1) If a "book" TOC heading also has content (a topic associated with it), a double-heading appears in the printed output. You have to manually remove all these extra headings in the cleanup process.
    2) All index entries appear in the paragraph BEFORE the actual heading they mark, instead of after the heading, resulting in the Index not being correct (if a heading appears at the top of the page, the Index points to the previous page where the index entry resides, instead of the correct page). I have to manually go through the entire document and move each index entry to the paragraph AFTER the heading it marks.
    3) Robohelp ignores the exclusion of Online conditions on some random topics. There is a workaround to "trick" Robohelp, but it takes *a lot* of time to do. To "trick" Robohelp, I had to generate a printed manual and make a list of all topics that "slipped" through. And, then edit each topic where the online condition was ignored, by adding an extra, empty paragraph to the end of each topic that had:
    ·         a single paragraph of text (aside from header and footer info)
    ·         ends with bulleted list (and no extra paragraph marker following)
    ·         ends with a table (and no extra paragraph marker following)
    ·         ends with a figure (and no extra paragraph marker following)
    ·         ends with see also\How do I\misc button text (and no extra paragraph marker before the seealso/how do I listings)
    4) I noticed that when I opened a topic for the first time in Robohelp, the Online condition sometimes gets applied to incorrectly tagged text (it wasn't tagged this way in the x5 content).  This requires me opening each topic in the upgraded project, and checking each topic to make sure the online condition is applied correctly in each one (a very tedious process, especiallly if you have a doc set of over 1 mil words!).
    Expected results:
    Printed doc does not contain double headings. Index entries appear after headings. Conditional text behaves as it is supposed to behave (and if you tell Robohelp to exclude the ONLINE condition, it does it for ALL topics).
    Does anyone have any suggestions/recommendations for this? Yes, I have the latest build. We held off on upgrading to previous releases of Robohelp because of the Printed Manual problem too (it seems like each version created more clean up work). :-(  I logged a bug on the Adobe forum.Any and all suggestions appreciated.  Thanks!

    Mr. Grainge,
    Thank you so much for your thoughtful answers back!  I appreciate you taking time out to write such a thorough reply. I hope Adobe appreciates you!  You're number one in follow ups!
    Unfortunately, your answers did not solve my problems. But, you did give me some ideas on where the problems could be occurring. So, thank you!!  Before I begin: In answer to your question, yes I *am* using the supplied Style Mapping template (I never had luck with the custom one myself). Also, I am going to hold off on replying to 1) and 2), but I'd like to share my answer on 3) and 4), which is really just what I need to get Printed Documentation working in Robohelp 9 the same way it worked in x5.
    A little history:  I have a set of about 50 help projects that span many versions of our company's product, and multiple versions of Robohelp (some even go back to the 90s!). They even include some help projects that were originally in Frame/WebWorks but were later ported to Robohelp. There's a lot of history to them.
    Investigating the Problem: When I opened an x5 project in RH 9, I noticed that some of the timestamps on the .htm files didn't match the rest of the files. It turned out, that these very same files that were the ones giving me problems with the Conditional text!  That's when your thoughts about the mapping came to mind...As I said, my project spanned mutiple versions of Robohelp. I wondered if some of the coding on the .htm page was being parsed incorrectly on upgrade, and if if that was the reason why RH couldn't update the pages (which explain the unchanged timestamps). In other words, I wondered if Robohelp was mapping the styles correctly on import. So, I compared these unupgraded .htm files with ones that did upgrade, to see if there was something on the code page that could be causing the problem.
    Solution to Fix 3) and 4) above:
    I'm going to list out everything that I did below, however, not everything on this list applies to everyone. But, hopefully it will help you, if you ever run into this scenario yourself, and it might give you some ideas on how to get your HTML files working. So, before upgrading, here is what I did:
    I opened my old CSS in a text editor and removed all the Robohelp autogenerated comments.
    In Homesite, I did a bunch of Search and Replaces on a copy of the older x5 project.  I looked for code that may have been generated in an earlier version of RH,and for unusual structures in the meta and style declaration area that could be causing conflicts. Here is a list of my search and replaces below:
    Search for:
    <!--(Title)=========================================================-->
    Replace With:
    nothing
    Search for:
    <!--(See Also)======================================================-->
    Replace With:
    nothing
    Search for:
    <!--(Content)=======================================================-->
    Replace With:
    nothing
    Search for:
    <p> </p>
    Replace With:
    nothing
    Search for:
    <p> </p>
    Replace With:
    nothing
    Search for:
    <html>
    <head>
    Replace With:
    <html>
    <!--(==============================================================)-->
    <!--(Document created with RoboEditor. )============================-->
    <!--(==============================================================)-->
    <head>
    Search for:
    <!--(Meta)==========================================================-->
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <!--(Links)=========================================================-->
    <link href="MyHelp.css" rel="stylesheet" type="text/css">
    <!--(Scripts)=======================================================-->
    <script language="javaScript" type="text/javascript" src="MyHelp.js"></script>
    <script language="javascript" src="eHlpDhtm.js"></script>
    </head>
    <!--(Body)==========================================================-->
    <body TABINDEX=1>
    Replace With:
    <!--(Meta)==========================================================-->
    <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
    <meta name=generator content="RoboHELP by eHelp Corporation - www.ehelp.com">
    <meta name=generator-major-version content=0.1>
    <meta name=generator-minor-version content=1>
    <meta name=filetype content=kadov>
    <meta name=filetype-version content=1>
    <meta name=page-count content=1>
    <meta name=layout-height content=597>
    <meta name=layout-width content=662>
    <!--(Links)=========================================================-->
    <link href="MyHelp.css" rel="stylesheet" type="text/css">
    <!--(Scripts)=======================================================-->
    <script language=javaScript
      type="text/javascript"
      src="MyHelp.js"></script>
    <script language=javascript
      src="eHlpDhtm.js"></script>
    </head>
    <!--(Body)==========================================================-->
    <body TABINDEX=1>
    Search for:
    <a class=toplinks href="#top"> Top</a>
    …or…
    <a class=toplinks href="#top">Top</a>
    Replace With:
    <a class=toplinks
    href="#top">Top</a>
    Search for:
    <h3 id=SeeAlsoTitle
    class=SeeAlsoTitle
    style="x-condition: Online;">See Also</h3>
    <div id=seeAlso
    Replace With:
    <h3 id=SeeAlsoTitle
    class=SeeAlsoTitle
    style="x-condition: Online;">See Also</h3>
    <div id=seeAlso
    After I did these all these search and replaces in the copy of the x5 version of the project, I opened the project again in RH 9 and upgraded it.  After the upgrade, I checked the timestamps on the .htm files to make sure they all changed.  They did!  It worked!  Everything upgraded properly this time... I tested the Printed Manual output and no conditional text slipped through this time. Yay!
    In Summary:
    This is what I learned if you are having problems with Conditional text and Printed Manuals in an upgraded RH project:
    Always make backups of your older projects before you upgrade anything. I know this is elementary, but I thought it was worth reminding.
    Check the timestamps of the files after you upgrade the project. If there are a group of files with timestamps that aren't similar to the rest of the files, chances are Robohelp was having trouble converting those files.
    Try looking at the HTML code in those files and see if anything looks out of the ordinary. Some examples are above.
    If you have already ported the RH project and it's too late to go back, go look at the file timestamps anyhow. For all the older files, try opening each one in Robohelp and add a space or something (to force RH to change it), and save it. I didn't have the time to verify this, but it seemed on most instances: when I forced RH to save the file manually, it updated correctly and the problem with the conditional text went away.  (This option takes longer, especially if you have to do each page individually, but it's worth a try, IMHO.)
    Aside from the initial Printed Manual woes, which are resolved, the upgrade process from RH 9 really was seamless!  Best I have ever seen!  Everything just works!  Awesome is a word that comes to mind.
    Printed Documentation output does work on upgrade, but in my opinion is: it is no better than it was before, in previous versions.
    I wish there were more fixes to the Printed Manual output. When you have a product help system that spans multiple versions, contains over 2.5 million words, and 10,000+ topics, having a lot of cleanup on the production end is costly. What use to take a person on my team less than a day to generate 50+ PDFs in FrameMaker, takes 4-5 weeks man-time in RH.  I will outline my opinions in my next reply to this thread.
    Thanks again, Mr. Grainge!

  • Wireless printing problem with hp officejet 100 mobile printer from win 7 dell laptop

    My hp officejet 100 mobile printer was working fine with my dell XPS 15 in bluetooth wirelessly until my laptop crashed. Now I can not get it to print internet info except with hard wire connection. Page loads half way and then stops. Must shut down laptop and shut off printer or hard wire and shut off bluetooth. down loaded lastest drivers to no avail. printer will print from cell phone and win 8 computer via bluetooth but not win 7 laptop.

    Sorry you are having problems with printing from the internet.  I have a few more questions to ask you before I can be of much assistance.
    What web-browser are you using?  
    Do you have any problems printing from Word or other non-internet documents?  
    What did you do to fix your computer (system restore, clean install of the OS, etc)?  
    Have you tried an alternate web-browser?
    Make sure to install all of your Microsoft updates to see if that helps.  Otherwise, answer those questions for me please and I will be happy to help.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

Maybe you are looking for

  • Confused about "files inside a JAR"

    I have a program that has a Properties file which I would like to "save" into the JAR file, so it is not outside the JAR. I know this can be done, because I've seen some Java programs that save their configuration between sessions, but not via a file

  • Trouble after reinstalling iTunes on PC

    Hi guys. I had to reinstall iTunes on my PC and I notice that I no longer have my original playlists and such. Yet thy are still on my other devices. How do I syncs my iPod without it going to the way my PC is? I don't want to lose any songs/playlist

  • Characteristics missing in EasyDMS?

    Hi all, First time poster. I have a troubleshooting question regarding EasyDMS. I'm currently setting up some test document types for training purposes and I'm having trouble understanding why EasyDMS isn't showing the characteristics that I have set

  • Mighty Mouse --- Updating to Tiger?

    Hi, I just recently bought the Wireless Mighty Mouse. I have been trying to figure out how to customize the buttons to do what I want. But the "System Preferences" do not even give me that option. I was told that it is because I am still on 10.3.9 an

  • Border who is not a border

    Hi, I want to create a border which don't surround the component. The border should be inside the component. The problem is, that i got a component who don't got much space do display other components so a border would waste more space. My idea was t