Can I create two pages, in a "tabbed" layout?

I am not sure I am using the correct terminology, but basically want I'd like to do is have a form, and instructions on a single document.  I would like to make the form on one tab, while the instructions are on another tab (two separate pages, separated by folder tabs at the top, essentially how your internet brower appears when you have more than one URL open.  (Am I explaining this correctly for everyone to understand?) 
Essentially, I'd like to have one screen appear when you open the PDF with the instructions on it, then at the top, create a "Tab" or "index" to toggle over to the form itself.  This way, I could have all my forms appear with their instructions.  I'd rather not have the instructions appear above or below the form (in line), or have the instructions print... so this is why I thought the tabs at the top would separate the form from the instructions.
If anyone knows how to do such a technique, can you let me know?  I am using LiveCycle 8.0
Thank you!  - Jay

Hi Jay,
There's no support built in to XFA Forms but you can a acheive something similar.  This sample might get you started.
I've used tabs a couple of times, but found they don't work all that well because of the hassle of getting them to print properly.
But does suit some situations, so maybe this gives you a starting point.
Good luck
Bruce.
https://acrobat.com/#d=UsJsmWCaYMMtXiGTmqmzew

Similar Messages

  • RE: How can I create a page break in a file?

    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a page break in a file?

    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the following
    two methods, but neither of them works. Specifically, it seems a special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);
    -----------------------------------

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • Can/How can I create a page with all my blog pages RSS??

    Hello all.
    I have a website containing many seperate Blog pages according to their topics like News, Tech and Scifi.
    Is it possible to create a new page, that will contain the latest entries of all these blog pages a one "consolidated" page, maybe perhaps of RSS feed?
    Thanks and cheers

    Apple states
    How can I create a page that aggregates my podcasts?
    If you have multiple podcasts listed in the iTunes Store, the iTunes staff can create a single page that lists all of them in one place. We call this page an “artist page.” Note that a podcast can only appear on one artist page.
    To request an artist page, navigate to one of your podcasts, click on Report a Concern, and select Remove a Podcast. In the dialog box, explain that you would like an artist page, give us the exact name of the artist (please don’t include “Inc,” “LLC,” etc.), and list the exact feed URLs or links to your podcasts.
    at the bottom of this page
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    I hope two is enough and if not that someone contacts me and maybe even changes the info on the above link.
    Thank you for your input!

  • Can we create two dashboard prompts for the same column in the samepage

    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideas

    863997 wrote:
    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideasYou are correct. You cannot build two prompts on the same column. Use this link for instructions on how to build a "between prompt" because of this fact:
    http://oraclebizint.wordpress.com/2008/02/26/oracle-bi-ee-101332-between-prompts-for-date-columns-using-presentation-variables/

  • How can i create  excel sheet with multiple tabs using utl file?

    how can i create excel sheet with multiple tabs using utl file?
    any one help me?

    Jaggy,
    I gave you the most suitable answer on your own thread yesterday
    Re: How to Generating Excel workbook with multiple worksheets

  • Can we create two POs for the same 3rd party Sales Order?

    Hi MM experts,
    Issue: Can we create two POs for the same 3rd party Sales Order
    In Third party purchase process, first sales order created with a spl. item category  and it creates the PR automatically with the Sales order material and Qty and this PR converted PO.
    They got a pur.req. for sale order on same item for same delevery date. They did not get any warning msg. saying that a PO was prviously placed against this sale order.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    If anyone face the same issue, please let me know if you have any answer to this questions.
    Thanks in advance.
    Suresh.

    Suresh,
    It is hard for me to give you a definitive answer since you have created a customized solution.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    Normally, the system will not do this.  A third party PR or PO will be 'account assigned' to the Sales order.  SAP standard 3rd party will not create additional purchase reqs unless there has been manual intervention.  Try searching for changes in the Sales order and changes in the original purchase order.  They may give you a clue.
    I believe the normal Item category for third party SO is TAS (I am working from memory here, I am not in front of a system).  I don't know what ZTAG does.  I confess I am not an SD expert.  You might also want to post your question in an SD forum.
    You mention two custom applications, ZMMPLAN and ZSTPMP.  These somehow have functionality that is used to help you convert your PRs to POs.  If I were in your position, I believe I would also look at these applications for clues to how they might be contributing to your problem.  And please don't send me details about these apps.  I will not comment on custom code in this forum.
    Sorry I can't be of more help.
    Rgds,
    DB49

  • Can't create a page group

    Hi:
    i'm having troubles with a portlet wich is supossed to have a "create page group" functionality, but it really doesn't have it. i've seen documentation on Oracle about a portlet called "page groups" which gives the possiblity to build page groups, pages, styles,... but i only have a portlet called "pages" which gives the same functionality, but not the "create page groups" function. what should i do? how can i create a page group?
    thx.

    Hey, it seems that content areas are similar to page groups. Can I use content areas instead of page groups? Is it possible that my version of Portal (3.0) doesn't contaion page groups? Can anybody explain to me this confusing thing?
    Thanks a lot.
    Petra :)

  • I can't open two pages

    I can't open two pages
    == today

    I have Windows 7...I had XP...now when I am say working on a word document and have it on my desktop and lets say I want to go to a spanish language site...when I leave the doc and click on FF icon, I get a message that says FF is running but not responding or something like that...then I have to log off completly to bring up the new program, in this case the Sp language program

  • Can't Create Two DW Instances so...what do you do?

    I understand you can't create two instances of Dreamweaver
    (unless you have an OS that runs mult instances)
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1297532&highlight_key=y&keyword1=instances
    The reason for this is that I need to use DW to download
    large sites (frequently) which basically renders DW useless to me
    until it's done. Why not FTP the information? Because I need the
    Check-In/Check-Out information for Contribute users (so I'm told).
    So, does anyone have the same issue here, or is there a way
    around this that I just can't think of right now???
    Thanks all. Happy Friday!

    > No you can't have 2 instance of dreamweaver running at
    the same time. One
    > solution could be to use an FTP program to download your
    site. when the
    > site is completely downloaded, use site manager to make
    it one of DW.
    That will not work if he is wanting to use Contribute, as
    those files will
    not show as being checked out to the other Contribute users.
    > But I AM ABSOLUTLY NOT SURE OF THAT
    I am. It's legal.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Alain St-Pierre" <[email protected]> wrote in
    message
    news:[email protected]...
    > No you can't have 2 instance of dreamweaver running at
    the same time. One
    > solution could be to use an FTP program to download your
    site. when the
    > site is completely downloaded, use site manager to make
    it one of DW.
    >
    > The other solution is to have a second computer doing
    the download if you
    > really need to to use DW. And I guess you are allowed to
    have 2 copy of
    > DW installed as long as you are the only user. Like a
    desktop computer
    > and a laptop. But I AM ABSOLUTLY NOT SURE OF THAT.
    >
    > aka Frenchy ASP
    > "hannibalcanibal" <[email protected]>
    wrote in message
    > news:[email protected]...
    >>I understand you can't create two instances of
    Dreamweaver (unless you
    >>have an
    >> OS that runs mult instances)
    >>
    >>
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=18
    >>
    9&threadid=1297532&highlight_key=y&keyword1=instances
    >>
    >> The reason for this is that I need to use DW to
    download large sites
    >> (frequently) which basically renders DW useless to
    me until it's done.
    >> Why not
    >> FTP the information? Because I need the
    Check-In/Check-Out information
    >> for
    >> Contribute users (so I'm told).
    >>
    >> So, does anyone have the same issue here, or is
    there a way around this
    >> that I
    >> just can't think of right now???
    >>
    >> Thanks all. Happy Friday!
    >>
    >
    >

  • To create two pages in excel and  excel has to send as attachment

    hi,
    actually i need to create two pages in excel and also i need to send this excel as a  attachment through mail. if anybody knows pls let me know.

    to send mail use standard FM "SO_mail" search for it

  • Can i create two playlist for two i-pods

    can I create two playlist for two I-pods

    Hi rcranford,
    Welcome to the Apple Support Communities!
    You can create different playlists in iTunes on your computer and sync only the specific playlist you want to each device. Please use the following article for information on creating playlists in iTunes.
    iTunes 11 for Windows: Create a playlist
    http://support.apple.com/kb/PH12340
    Have a great day,
    Joe

  • ITunes - Can I Create Two Databases???

    I've loaded the software, and all is fine...
    but if wanted to use 2 Ipods (ie. his and hers) - can I create two libraries - so we each have our own material on our IPODs?

    It might be easier with playlists? A playlist per iPod? Or a few playlists per iPod. You can choose which Playlists to update with when you plug in your iPod.

  • How to add/create additional page in Crystal Report Layout SAP B1

    Hi,
    I wanna ask about How to add/create additional page in Crystal Report Layout SAP B1 ?
    I want when user print Purchase Order then on last page also print some page like Penalty Clause etc.
    Pls help me to find the solution.
    Br,
    Thomas Marsetyo

    Hi,
    In your report footer, set it to create a new page before it is printed (In 'Section Expert', select the Report Footer -> 'Paging' tab -> Check 'New Page Before' checkbox). Throw your Terms & Conditions into the Report Footer section.
    If you already have a Report Footer that you want to keep, just split the footer into two sections (Right-click the Report Footer section -> 'Insert Section Below') and follow the same procedure for the newly created section.
         Check this Link
    http://stackoverflow.com/questions/9232239/adding-an-additional-page-to-end-of-a-crystal-report
    http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=18960
    Regards,
    Manish

  • How to create same button on two page in a tab control?

    Hello !
    Now we are here again :-) We have a tabcontrol and want to be able to press the same button (a button that stops the program) on both pages of the tabcontrol. How can we do this?
    Best regards!

    It's not the function isn't developed. It's just that every object on the front panel has a corresponding object on the block diagram. Attached is an example of how to do it with two buttons.
    By the way, if you've run out of room on your panel, it probably means your interface is too crowded. If that is so, I suggest you add more pages to the tab to make your interface more clear.
    Try to take over the world!
    Attachments:
    stop.vi ‏19 KB

Maybe you are looking for