Tables appear in frames in my printed doc

I am using RoboHelp to convert a large document with many
tables into multiple different versions of printed output.
Suddenly, the conversion to printed doc causes all of my tables to
be placed in frames. This prevents the larger tables from breaking
correctly across pages. What did I do?

I thought I had subscribed to this topic. Darn. Anyway, style
mapping.dot produces duplicates in the output. Turns out it was a
problem with normal.dot. Deleting and re-creating resolved the
problem. Thanks.

Similar Messages

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Part of a frame sees to print but I can tell from which object

    Strange thing happening here:
    In ID3 CS3, the business card I am doing appears perfect. However, when I print it, there is a small portion of what looks to be a frame (the lower left corner) that prints and you can see the lines (very faint but there;
    |
    |
    |
    |
    I have tried printing each layer (fast draft) and it does not appear. Only when I print all layers in BEST mode does it appear.
    I have magnified the objects but still can not see it on the screen.
    I dont think it is the printer as I print the back of the card and the frame does not print.
    Any thoughts?
    Bob

    Bob,
    >Please advise and then I will try it.
    A suggestion. My colleague at the other desk just now had a similar issue. He placed three images alongside eachother, with different (original) resolutions. On export and on print he noticed the top and bottom edges of the images did not align. I scratched my head, checked his preferences, and suggested not to "Crop Image Data to Frames". Just a hunch -- if the image data is cropped, all ID can use to 'round' is to use
    i entire
    pixels. Not cropping the image means ID now has to use a mask, which can cover
    i part of
    the pixels. He was amazed; it worked perfectly.
    Also, as Peter suggested
    >Can you do a screen grab of the ID file with frame edges showing?
    -- this might tell us more.

  • Regarding pop up menu on the right click of a row of a table in a frame

    hi to all,
    i am a naive in applet and swing.
    i have some proplem regarding table in a frame.
    actually i want to open a pop up menu on the right click of a row of a table in the frame.please send the code regarding this.

    Hi,
    You're probably better off directing this to the swing forum but a starter for ten is the use of the MouseListener interface and the boolean isRightMouseButton method.
    http://java.sun.com/docs/books/tutorial/uiswing/events/mouselistener.html
    Regards,
    Chris

  • Accessibility: Reading order of tables and anchored frames

    I am creating accessible, tagged (section 508 compliant) PDFs in FrameMaker 9. The reading order for tables and frames is not correct.
    When I view the PDF reading order using Adobe Acrobat Professional or another screen reader, anchored items such as tables and anchored frames are  placed last in the reading order, regardless of where they appear in the document flow or page layout. The reading order skips over all tables and frames, reading all paragraphs on a page first, then reading the tables and frames as the last objects on the page. This logically doesn't make sense to skip over tables/frames as they generally apply to the content that preceeds it.
    For example, the following document structure:
    <Paragraph 1>
    <Table 1>
    <Paragraph 2>
    <Anchored Frame 1>
    <Paragraph 3>
    <Anchor Frame 2>
    <Paragraph 4>
    is being read by assistive technology as:
    <Paragraph 1>
    <Paragraph 2>
    <Paragraph 3>
    <Paragraph 4>
    <Table 1>
    <Anchored Frame 1>
    <Anchor Frame 2>
    I want the document structure to be read correctly as intended.
    In otherwords, the PDFs generated by FrameMaker 9 are not completely accessible because of incorrect reading order output by default. This information is not listed in the VPAT for FrameMaker 9.
    I want to avoid any post processing using Acrobat's Touch Up Reading Order tool. Is there a way to automate updates to reading order?
    Can FrameMaker 9 logically place tables and anchored frames into the correct reading order? How do I adjust these settings?
    Thanks in advance!

    As mentioned above, tables and anchored frames are inserted into thier own paragraph style "Frame". The paragraph style "Frame" is tagged. To my knowledge, there are no options for tagging or not tagging tables or anchored frames.
    Regardless of which paragraph type the table or anchor frame is inserted into, and what that paragraphs tagging settings are, it is still last in the reading order.
    I've tried a variety of options: tagging the "Frame" paragraph style as a sibling, child, and parent of my other paragraphs; I've even tried omitting it from the reading order. None of these options present anchored frames (and tables) in the logical reading order.
    Even images that are inline (within a paragraph; not in thier own paragraph) are not being read as part of the paragraph.  Inline images get skipped over by screen readers and get read at the end of the page, which makes no sense whatsoever.
    All tables and images end up at the end of the reading order (after ALL paragraphs) regardless of the tagging settings.
    Refer to my previous screenshot for a clear diagram of what is happening to the reading order. Each of those anchors is in it's own paragraph style. I want tables and anchored frames to be sequential in the reading order along with paragraphs. (1,2,3,4,5,6 not 1,4,2,5,3,6.)
    I'm using the Tags tab of the "PDF Setup" dialog to adjust these settings. Is there somewhere else I should be making changes to the reading order?
    This is a bit disturbing because FrameMaker touts creating accessible documents and this severe reading order issue impares my ability to do so. I would not consider documents that jump around the page in an illlogical, fixed order, to be accessible. I'm very suprised that no one else has encountered this issue (at least that I can find...)

  • Unable to print doc as .pdf with Adobe reader XI

    Unable to print doc as .pdf with Adobe reader XI in windows 7. Tried uninstalling the software and also repair with same result. When clicked on print doc the option to print as .pdf cannot be seen. It just does not appear in the printer option. Help pls.

    cooljolu wrote:
    ya downloaded the trial version of acrobat. I guess it was free earlier and never faced a problem.
    Acrobat has NEVER been free. Reader (formerly called "Acrobat Reader") has always been free, but the Creation/Editing software has always had a price tag.

  • Conditional build for chm and printed doc produce different outputs

    I'm using RoboHelp HTML 9.0.2.271
    In my TOC, I have two "books" of topics that I want to exclude from output because the topics won't be required at this time.
    I right-clicked each book in the TOC and applied a condition ("Defer").
    For the HTML Help (.chm), I made my build expression say NOT Defer and NOT Comment.
    I generated the help.
    The two books (and their topics) were excluded, as I expected.
    For printed documentation (.doc), I made my build expression say NOT Defer and NOT Comment and NOT Online.
    I generated the Word doc.
    The two books were NOT excluded; they appeared in the printed doc.
    The workaround is to delete them from the Chapter Layout window when I generate the printed doc, but I expected that since my build expression said to NOT include them, that they wouldn't be included.
    Is my method wrong, or is it my expectation?

    You're right (of course!).  My .chm file does actually contain those topics.
    So, applying a condition to a TOC entry and then excluding it in the build has this effect:
    HTML Help file (.chm):  Now the topic entry will not appear in the TOC. The topic itself still exists in the .chm file, though, and you can find it by searching.
    Printed output (Word):  There doesn't seem to be any effect. That topic entry still appears in the Word TOC and the topic itself still exists in the .doc (or .docx) file.
    So, to exclude a topic, I have to place the condition on the topic itself, by either right-clicking the topic in Project Manager and applying the condition or by opening the topic and applying the condition. Then I have to exclude that condition in the build.
    Do I have it right yet? :-)

  • Include Security Deposit Request in Aggregated Print Doc.

    Hi Experts,
    I have this scenario, where I posted SD request at contract account level posted using FPSEC1. (Contract account of a supplier in deregulated market with no contarct)
    Requirement is to include this request in the print document.
    I have maintained entries in table TE514 for RF doc (Item Selection in Account Maintenance/ Define Sub-Items)
    When I am  preparing a print doc for the aggregated posting using EA10_AGGRBILL it is not picking up the security deposit request in the aggregated print doc.
    Is it possible to include the security deposit request in aggregated print doc ?
    Please advice.
    Thanks
    Satyajeet

    Hi Devang,
    As mentioned I have maintained the following entry in TE529 customising table. Let me know if I have missed anything cause I am not getting the required output.
    ClrType/Clearing Cat./ Main Trans./ Subtransaction/ Open item sel./ Print interval/ Print item/ Items in BST/ Debit Position/Transfer/No Posting/ Defer Item/ Interest Items
    R4/ 0001/ 0020 / / / 000 / B / / X/ / /
    RF/ 0001/ 0020 / /  /000 / B / / X/ / /
    Thanks
    Satyajeet
    Edited by: Satyajeet on Feb 24, 2011 1:54 PM

  • Duplicated topics in printed docs

    Is there a way to prevent RoboHelp from duplicating topics in
    the Print Document Content - Printed Documentation dialog when
    generating printed docs? I just noticed my PDFs have doubled
    topics. I'm going back and manually deleting them on the dialog.
    How did they get duplicated in the first place?

    Hi Gina,
    One cause of duplicated topics in your printed documentation
    is having topics linked to books in the TOC. If a topic is linked
    to a book and also appears separately within the book, it will
    appear twice in the printed output.
    If that's not the cause, someone else might be able to help.
    Have you checked out all the info on Peter Grainge's excellent
    site? He's got a whole section on printed documentation. His site
    is
    www.grainge.org.
    Anne

  • Problem in Smartform Table/window Line Using Dot Matrix Printer

    Dear Experts,
    I faced issue in printing smartform using dot matrix printer. In the print result, the table line (horizontal and vertical) is not printed. I already search the forum but none can solve my issue. I already changed the table line width into 30 or 40 TW but still not work. Everything is OK in the print result, except the table line.
    If i manually print/write '__' (underscore), it appear in the print result, but to write horizontal line and vertical line manually in the smartform will be huge effort.
    I used device type EPESCP9 for the output device.
    Can you tell me what i need to do?
    your help will be appreciated.
    Thanks

    Hi,
    Check your device type.
    http://forums.sdn.sap.com/thread.jspa?threadID=2016838
    Jshree

  • In Pages (5.2), in a table, superscript is not only not printing, but not printing the text around it. Bizarre

    In Pages (5.2), in a table, superscript is not only not printing, but not printing the text around it. Any answers?

    Known issue now for almost 9 months.
    Use Pages '09 if you have it.
    Peter

  • HP Officejet Pro 8500A Premium will not print docs from computer, but will print a test page.

    HP Officejet Pro 8500A Premium will not print docs from computer, but will print a test page.  I continually get a message that the computer cannot communicate with the printer.   Not only will it not print docs, it will not print web pages using IE 11 or Google Chrome.
    I've used Print and Scan Doctor, it always reports there are no issues and prints a test page even though I can't print anything else. 
    Each time I want to print, I must reboot the computer.  After reboot I have one chance to print.   This problem started February 15, 2015.  
    My operating system is Windows 8.1.   I have unintalled the HP software, rebooted, then reinstalled the software:
    OJ8500_A910_1315-1.exe
    HP Print and Scan Doctor - HPPSdr.exe
    HPSupportSolutionsFramework-11.51.0049.msi
    All versions were last downloaded on April 4, 2015.
    I have a home wireless network (Ubee DDW366 router).  All other devices in the house will print to the 8500A printer without issues:  2 Toshiba laptops, 2 Android phones, and 1FireHD.
    The desk top is installed with a Netgear Network card I don't know the model, but I had it tested by a PC Tech to confirm that the card is working.   The card and Windows 8.1 were installed on January 3, 2015.
    I have run virus scans and malware scans.  Each time they show there are no issues with my desktop.  What kind of desktop? Specifically made to my specs from store parts. . . no brand name computer.  ASUS Motherboard P6X580 Premium.  Now I will probably get hacked!
    I am at my wits end.  And it is frustrating when I need to make a print of something and the system locks up.  I often resort to screen printing to a word document to save in order to reboot. . . .but then I lose all sorts of capabilites when I salvage what I needed.  Also this is a time consumer.
    This printer has served us well for two years and I have expensive cartridges waiting; another two rounds of refills.
    Help?
    Addendum:  I can scan using HP Printer Assistance.  I open the HP Printer assistant, it "retrieves" info from the printer, then I select "scan a document or photo" and the printer responds.   I have no trouble with scanning.
    This question was solved.
    View Solution.

    Hi ArielAce , thanks for getting back to me!
    I would recommend downloading and running the HP Print and Scan Doctor.
    Please keep me posted!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Warning messages This size of the table appears to be large

    I am getting below warning with search results. this warning appears on the top of the page then followed by results.
    the resuls table has no.records displayed to 25 already. I dont know how to get rid of this warning from the Page. Can some one help?
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.
    This size of the table appears to be large. Verify if the table belonging to this View Object (SOResultVO1) really needs to have a table size of 25. The Application's standard is 25.

    Hi All,
    Any solution on the above issue.
    I am also getting the same issue, but it is a custom form.
    Warning
    This size of the table appears to be large. Verify if the table belonging to this View Object (xxUserDetailsVO1) really needs to have a table size of 50. The Application's standard is 25.
    Thanks
    Badsha

  • Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from l

    Hi When going from Develop module to print module a white boarder appears on screen which also prints via my epson r3000 printer. I can get round this by exporting photo to Elements and printing from there but can i get rid of the boarder and print from lightroom?

    In the printer driver (accessed through the Page Setup button) set the Advanced tab to borderless. Then in the right hand panel under Layout set all the margins to zero.

  • Missing Topics in Printed Doc

    I am losing my mind! I am trying to generate printed doc for
    the sole purpose of sorting a bunch of pages in hard copy to
    rethink the organization of one part of my projects. Ironically,
    every time I generate the printed doc (i've done it about 20 times
    so far), these pages are nowhere to be found! I've included them in
    the TOC, I've moved them out of a book within a book, I've deleted
    them from the TOC and added them to a book that is generated as a
    chapter. I've renamed the book to remove non-alpha characters. I've
    deleted the book and created a new book with a completely unrelated
    name. NOTHING I do will get these pages to print. SO - I have 175
    pp. document of the 175 pages that DONT need to be printed and I
    can't for the life of me print the +/-20 pages that are the ones I
    want in hard copy.

    first, I am using RH version X5.0.2.
    1. On your Project tab, all the way at the bottom, open the
    Single Source Layouts directory. Double click on Printed
    Documentation.
    2. Set up your doc name, path, and build expression as
    needed. Click on Next.
    3. This next window is where you can select any or all topics
    to include in the printed doc. It defaults, I believe, to all
    topics and chapters. Just select each chapter or topic you do not
    want and click on the left-pointing arrows to move these topics out
    of the list on the right side of the window. Only the topics and
    chapters listed in the right side (under chapter layout) will
    print. This selection window works much like the Browse Sequencer
    tool.
    4. When all appropriate topics are excluded / included, click
    on Next. In this window, you are establishing the sections of the
    resulting doc - set up sections as needed. If you aren't publishing
    this doc for distribution (just for yourself), I wouldn't worry too
    much about this step. Click on Next.
    5. The last step before the doc generates is to determine
    which Styles set you will use - the styles you use in RH, or a Word
    Style set. Again, since this is just for you, don't sweat it. I
    just use the Project's CSS Styles (select this option from the menu
    at the top of the window).
    6. Click on Finish, let 'er rip, and see what comes out.

Maybe you are looking for

  • AIO remote does not find my printer

    I changed Internet providers a few months ago. I have not been able to print from my iPhone or iPad since then. AIO remote does not find my printer at all.

  • Recursive Query - Bills of Materials

    I have a table that list all Parts that have materials (PartMtl table).  Ex. part 1 has materials 2a, 2b, & 2c.  I tie this table to a PartCost table linked on the materials.  So I get costs for 2a, 2b, & 2c.  This works smooth.  Now when I want to g

  • I can't build an xsd for a flat file (txt) to handle repeating records

    Hi - have looked at many posts around flat file schema and they don't seem to address my question. I have a flat file that is \n delimited the pattern of the data is simple: record1 - 90 characters record2 - 20 characters record3 - n 248 characters -

  • System locked up, computer won't start up

    Thursday night my iBook G4 began slowing down drastically and eventually everything locked up, which is very strange - that's NEVER happened before and I've had it for a little over 2 years. I turned it off and for the next two hours I kept turning i

  • Another question about the pitch slider problem

    Hi everybody! Anybody can answer me with the solution for my pitch slider? When i import a MP3 from itunes, press ctrl + alt + G and go to the track editor, check the 'follow tempo & pitch' and the pitch slider won't move. I see answers to use the AU