Design top row of user entered information to repeat at top of each page

I am trying to design a form that will allow the top row (or top few
text fields) to repeat at the top of any additional pages that are generated as a result of flowed content.

Here we are 15 months later and Microsoft Excel 2013 has the SAME ERROR
If one chooses:
Print Preview
Page Setup
Sheet
Then the print area and print titles (Rows to repeat at top, columns to repeat at top)
are all grayed out and cannot be selected.
If, however, I choose the
page layout bar and click print titles then
everything works fine.
Thanks for the solution!!!

Similar Messages

  • How to show the login user Id in the upper right corner of each page?

    Hi,
    I was wondering how to show the login user Id in the upper right corner of each page?
    thanks so much!
    cchu

    Cchu,
    The easy question first: applying a style to the welcome message. If you look at the page source, you'll see that #WELCOME_USER# is expanded to <div class="app-user">Welcome: DEMO</div> So to change the style of the message, you need to tweak the style of the app-user div in your CSS, or override it in a style block in your HTML header.
    Now, the tougher question: why the text is wrapping for you. And, really, without seeing your entire page, I can't give a full answer. But I'd suggest that what's most likely happening is that the table column you're putting it in is too narrow, so it's wrapping; try replacing the td tag with <td nowrap="nowrap"> This will force the column to be wide enough to display the full message, but might result in weird formatting elsewhere on the page (depending on what all is in your table).
    -David

  • Repeating User input (such as name and date) on each page automatically

    Is there a way of having the information provided by the user on one page, such as name and date, automatically repeated on separate pages (perhaps as a header/footer.) The input would be via Reader only.
    I have an application form of four pages, after the first page there is no direct unique evidence linking the remaining pages to the first.
    Basically I want each page when printed to have an identifier, so that in the event of the pages getting mixed up, they can be put back together.
    Any advice gratefully accepted

    Hi,
    you can sole your problem with many way...
    - You can use Global binding, so user nter data one time and every field with the same name automaticaly get the same value.
    - You can use some Javascritp to obtain similar effects (more complicated but more fexible):
    Create a Js Object (name it Global for Example).
    Create some variables, i.e.: var field1;
    Place one field in master pages and in their initialize event use the statement below:
    Global.field1 = this;
    In this way you obtayn a refernce that you can use everywhere in your form.
    For example you can write: Global.field1.rawValue = "Hello word";
    I hope this helps :-)
    Bye.
    Roberto.
    (sorry for my poor english);

  • JSP and Sending User-entered information to MySQL Database

    I am trying to send user information to my database that I created in MySQL. I made a DB java class, which basically handles my connection to the database, which I know works since I also use it to log into my site.
    The problem is after I have entered my information that I want to add to one of my database tables, the site runs through, but never actually adds it to the database. It is probably my coding, but I'm not too sure.
    Also, I want to display the information from my database on my site. I'm new at this so any information on how to do that would be great.
    DB class
    * DB.java
    * Created on November 7, 2007
    package guildbank;
    import  java.sql.*;
    * @author citibob and alice
    public class DB {
        public static final String url   = "jdbc:mysql://localhost/krichbank";
    public static Connection
    getDB()
    throws SQLException
        try {
            Class.forName  ("com.mysql.jdbc.Driver");
            System.out.println(" Loading the DB driver. ");
        } catch(Exception e) {
            e.printStackTrace(System.out);
            System.exit(-1);
        Connection con = DriverManager.getConnection( url, "katherine", "katherine");
        return con;
    public static void
    close(Connection con)
        try {
            con.close();
        } catch(Exception e) {}
    public static String
    getUserName(Connection con, Integer UserID)
        if (UserID == null) return "<null>";
        int userid = UserID.intValue();
            System.err.println(""+userid);
        PreparedStatement st = null;
        String ret = null;
        try {
            st = con.prepareStatement(
                " select name from users where userid = ?");
            st.setInt(1, userid);
            ResultSet rs = st.executeQuery();
            if (!rs.next()) ret = null;
            ret = rs.getString("name");
        } catch(SQLException e) {
        } finally {
            try { st.close(); } catch(SQLException e) {}
        return ret;
    }Additem code
    <%--
        Document   : addItem
        Created on : Dec 12, 2007, 6:41:38 AM
        Author     : Katherine
    --%>
    <%@ page import= "javax.servlet.http.*" %>
    <%@ page import= "javax.servlet.*" %>
    <%@ page import= "guildbank.*" %>
    <%@ page import= "java.sql.*" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
            <title>Item Addition</title>
        </head>
            <body>
            <%
            Connection con = null;
            try {
                con = DB.getDB();
                PreparedStatement st = con.prepareStatement(
                    "INSERT INTO items (i_type, i_name, i_quantity) values(\" + request.getParameter(\"itemType\") + \",\" + request.getParameter(\"itemName\"))");
                ResultSet rs = st.executeQuery();
            } catch (Exception e) { }
        finally { %>
            Item Added! Yay!       
            [<a href="login.jsp">Log in</a>]
       <% }
            %>
        </body>
    </html>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    3: You are catching and ignoring any exceptions from running the SQL.
    4: You are constructing a SQL string rather than using a prepared statement properly.
    5: Your sql mentions three columns: type, name, quantity. You only supply type and name in the values section.
    try {
                con = DB.getDB();
                // using prepared statement properly with ? instead of creating string values.
                PreparedStatement st = con.prepareStatement("INSERT INTO items (i_type, i_name, i_quantity) values(?,?,?)");
                // what happens if these parameters are not present?
                String itemType = request.getParameter("itemType");
                String itemName = request.getParameter("itemName");
                st.setString(1, itemType);
                st.setString(2, itemName);
                st.setString(3, ?????????);
                st.execute();
    catch (Exception e) {
      // Log or handle the exception
      // this basic code write it to standard error
      // should appear in the console, or in a log file somewhere
      // helps a LOT when figuring out what is wrong
      System.err.println("Error occurred " + e.getMessage());
      e.printStackTrace();
    }Cheers,
    evnafets

  • The HOME BUTTON in the top row of Firefox does not bring me back to Firefox Home Page. A message comes up saying that HOME BUTTON URL is not valid and cannot be processed. Why?

    Whenever I use the Firefox browser to go to another site, Ican't get back to Firefox home page by simply pressing the Home button at the top left line of the page.

    Open the page that you want as the home page in a tab and drag the tab or the favicon from the left end of the location bar on the toolbar Home button.
    *https://support.mozilla.com/kb/How+to+set+the+home+page

  • Want only the user entered values on the xml generated by clicking the button

    Hi All,
    Here goes the details of the problem.
    1. I have created two textfields(texttfield3 and textfield4) along with an email button in a fragment and binded to an XSD file.textfield3 and textfield4 are user entered fields.
    2. On the design page I have created two more fields texfield1 and textfield2 and binded to another XSD.These two fields are read only fields.
    3. On preview PDF screen whenever you click on the email button,you get a mail option with an xml file attached to it.
    4. whenever you open the xml file,you will get the values of all the four fields.Its given below
    <form1>
    <TextField1>value1</TextField1>
    <TextField2>value2</TextField2>
    <TextField3>value3</TextField3>
    <TextField4>value4</TextField4>
    </form1>
    5.But I want only user entered fields to be displayed on the xml page i.e
    <form1>
    <TextField3>value3</TextField3>
    <TextField4>value4</TextField4>
    </form1>
    6.How can I remove or avoid the read only fields not to be displayed on the xml page???
    Thanks in advance

    This forum is for our hosted services of LiveCycle.  I'd suggest that you repost this question this on the Designer (best choice) or Forms forum.

  • Interactive Report - comparing user entered text field against a table field - the comparison is not finding a hit when it should.

    Example
    User enters 12345 in a pre filter ----- item_number field and this value exist in the table but its defined as VARCHAR2(2000).
    No match is found.  Do I need to define this text field in a certain way so that a match occurs - say in the element or source for P1_ITEM_NUMBER.
    How does a user entered value of 12345 match a value in the table of 12345 - defined as a varchar2(2000).
    Thanks  

    Why are you storing numbers in a varchar2?
    This is bad designing.  (storing date information in a varchar2 field is even worst.)
    99% of the time, when the number 12345 does not match the string '12345', it is because the value in the table is actually '                         12345'
    Run the following SQL command in the SQL workshop.  (you'll need to adjust to match schema,table,column names)
    select item_number, length( item_number) as string_length
    from schema_name.table_name
    If '12345' does not have a string_length of 5, then you have bad data in your database.

  • HT5624 I was prompted to update to ios7 so I did as usual. But this update has made my ipad a piece of junk. I am unable to access Siri, I can't read the faint print particularly those tiny letters on the top row which show the visited websites, etc.

    I updated to iOS 7  last might after being prompted by Apple. This caused me to lose many useful features of my iPad2. First I find that Siri has disappeared. When I contacted Apple support, the guy who took my serial # and model # verified things on his end and said emphatically that I should have Siri, but could't help me find it. Another rep simply disconnected me after seeing that she was unable to help me with the problems. After wasting hours with these people and waiting several minutes for their promised supervisor to come online, I was again disconnected by them. My second major problem I wanted solved was the hard to read fine and faint print. I don't have good eyes and with iOS 7 on my iPad2 I am now unable to read the top row which has the list of websites in avery faint and fine print. I could read everything on my iPad until yesterday evening when I made the mistake of updating to iOS7. Till yesterday evening I loved my iPad but after that update to iOS 7 last night it is a piece of junk for me. Hope there is help somewhere out there to restore  Siri and other useful features of iOS 6 or get iOS6 back on my ipad So I can use it again. The chat with apple support has not helped at all as they themselves did not know that Problems like the ones I mentioned to them even existed with this iOS 7. I want my iOS 6 back!!!! CAN ANY ONE HELP !!!!! Also how can I reach anyone in Apple who is knowledgable and also has some authority to do something about it.

    Outside of the contact number for that you've already used I don't know another way of direct contact. Here are some things that they may or may not of had you try that might help you. If you will go to the settings app and pick general on the right-hand side you will see accessibility. Within that you can adjust a text size make the text bowl you can also increase the contrast. You can also adjust the brightness and control panel.
    As for Siri again in the settings app under general you should see Siri on the right-hand side with the switch to turn it on. If that is turned on and you're still having issues
    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

  • User-entered field treated as read-only

    I created a large form in version 7. I brought it into version 8 to work on it some more. I believe this may be related to going from 7 to 8...
    I have lots of numeric fields in rows and columns. All the fields are User Entered - Optional. When I view it in Preview, one field in the middle will not allow entry. It's as if the field were Read Only. I go back to Design mode and the field is still listed as User Entered. This occurs on a few pages.
    Anyone else had this problem? Any suggestions?

    My office uses Times New Roman as a standard font for all our forms, I dragged several of the most used standard objects into a blank form, altered them to fit our standards and then dragged them back into the standard tab. Much easier than going through the process each and every time you need to pull a field in, fyi. You can also put a script into a field and put it into either the custom tab or create your own tab for personal objects, I find this saves me huge time by not having to re-type scripts over and over.

  • "Rows to Repeat at top" Not Available in Excel 2010

    Hello, All!
    Here I am with another question... Maybe someday when I grow up, I'll be able to
    answer a few questions! ;-{)
    I am creating a PDF via Adobe Acrobat Professional 9 and Excel 2010 and want to have the title row appear on the top of each of the 140+ pages, but when I go to the
    Page Setup and select the Sheet Tab, the
    Rows to repeat at top is unavailable.
    Excel was fully installed as part of Office Professional Plus 2010 and Acrobat was fully installed as part of Adobe Design CS4.
    Thanks in advance for your help!

    Hi,
    Based on my research,
    if you have more than one worksheet selected, the
    Rows to repeat at top and Columns to repeat at left
    boxes are not available in the Page Setup dialog box. To cancel a selection of multiple worksheets, click any unselected worksheet. If no unselected sheet is visible, right-click the tab of a selected sheet, and then click
    Ungroup Sheets on the shortcut menu.
    Quote from:
    http://office.microsoft.com/en-us/excel-help/repeat-specific-rows-or-columns-on-every-printed-page-HA010342842.aspx
    Jaynet Zhang
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedbackhere.

  • I'm typing dates across the top row. I want the date to be 12/13 and the program changes it to Dec. 13. It is making me mad. How do I get it to stop doing the change? I want a numerical number.

    How do I get the numbers program to type a numerical date across the top row? It wants to change it to Dec. 13 instead of 12/13.

    Amy,
    I hope that you can forgive Numbers for converting the date you enter as 12/13 into the default format of "December 13, 2011", one that is popular with many users.
    You can change to any of the supported date formats by using the Cells Inspector, Date and Time options.
    Select the top row of cells and use the inspector to set the format. You may do this before or after making the entries.
    Jerry

  • I want to enter information in one table and have it update other tables automatically

    I am a very unlearned Numbers user.
    Here is my desire/dilemma.  I run a summer camp and have to record information for our camp.  I use the information in a number of forms from check in and check out to records for each cabin, and more.
    I would like to create a master table that has all of the information for each camper that I will call a master list. I then want to create the tables that will contain the information needed for each specific form.  I want the specific forms to be able to update automatically when new information is entered in the master.  The master record will be sorted by the cabin and bed numbers, so I can tie the subtables to those cells, but I need the row to update as well.
    My question is how can I do this in the shortest and simplest way possible?
    I hope this question is clear.
    Thanks!
    Roy

    Hi Roy,
    Well, the simplest is likely to sort the Master table by Cabin number, then use copy/paste to transfer the information to the separate tables for each cabin. But that's not automatic.
    Before jumping in to this, I'd like a better idea of what your Master table will look like, what one of the sub-tables would look like, and which data you want to transfer from the Master to the Subs. A screen shot would be helpful to anyone trying to help you with this, not just to me.
    One consideration is how you will use the sub-tables. An immediate difficulty that comes to mind if you are goiing to mix retrieved data and directly recorded data on the same table is that data collected from the Master table and data recorded directly on one of the sub tables are independent of each other. Consider the list below:
    1 Bob Baines
    2 Chuck Clay
    2 Dexter Davis
    3 Ed Elmore
    1 Frank Fencepost
    1 Greg Gilson
    3 Harvey Hall
    Bob, Chuck and Frank would appear (in that order) on the Cabin 1 list:
    Bob       x √ √ √
    Frank    √ √ √ √
    Greg     √ x x √
    But if Chuck, for some reason, was transferred to cabin 1:
    1 Bob Baines
    1 Chuck Clay
    2 Dexter Davis
    3 Ed Elmore
    1 Frank Fencepost
    1 Greg Gilson
    3 Harvey Hall
    That transfer would affect only the data collected from the Master table. The data entered directly would remain where it was when entered, with disastrous results to Frank's (so far) perfect attendance record.
    Bob        x √ √ √
    Chuck    √ √ √ √
    Frank     √ x x √
    Greg
    Regards,
    Barry

  • User entered info populating a header?

    Is there a way to have information a user enters in a Text Field populate a field in the header on subsequent/master pages?
    For example, if the form asks for a person's first name in one text field, and last name in another text field, than the person's last name appears in the header of all subsequent pages of the form?
    Thanks!!!

    Yes it can be done ....here is a sample. I could not use your sample as it was not built in Designer.
    The code to fill the field on the Master Page is on teh calculate event.
    Paul

  • How can I read the last cell of a JTable that a user Enters data

    I have a one column JTable with several rows that a user enters data to. Upon entering the last data, the user clicks a button to read all the data from the rows in the JTable and puts them in an arraylist. If the user does not click enter or navigates away from the last cell, then after clicking the button it does not read the last cell entered. Since the user is clicking on a button to indicate he is done entering data on the table, does he also have to hit the enter key to indicate he is done entering the data?
    The code below is my tablemodelListener:
    public class InteractiveTableModelListener implements TableModelListener {
    public void tableChanged(TableModelEvent evt) {
    if (evt.getType() == TableModelEvent.UPDATE) {
    int row = evt.getFirstRow();
    System.out.println("Update row:"+" "+row);
    jTable1.setRowSelectionInterval(row, row);
    }

    Don't forget to use the Code Formatting Tags so the posted code retains its original formatting. That is done by selecting the code and then clicking on the "Code" button above the question input area.
    In the future, Swing related questions should be posted in the Swing fourm. (This question has been asked and answered dozens of times).
    But there is not need to repost because [Table Stop Editing|http://www.camick.com/java/blog.html?name=table-stop-editing] explains whats happening and give a couple of solutions.

  • How do I create a form field ONLY template in Acrobat 9 Pro that will let the user enter and print only the form field data on a pre-printed form?

    This template will be used to type in information that will then be printed on an agency's official, barcoded form loaded in a printer (instead of blank paper.)  Only the user-entered info should print on the pre-printed form.  Users will use Adobe Reader to complete their templates; they do not have Acrobat.  Thank you!

    Use the template as non-printable background and add the form fields.

Maybe you are looking for

  • Time compression for radio production

    I produce radio commercials and use Garage band a lot when doing so. My question is - Is there a way to time compress tracks to fit within a certain time frame? Radio spots must be no longer than sixty seconds and at times after prouction, they come

  • I accidentally clicked play sound while using find my iphone, how do i cancel that action?

    I really need help because i accidentally pushed play sounds on Find my iPhone and i have lost it, but i really dont need it to do that. so is there any way for me to cancel that action?

  • What happens if you don't define '@Remove' method for Stateful SessionBean?

    Hi, I'm new to ejb3. I've noticed that the spec doesn't force you to define a "@Remove" method on a stateful Session bean... which seemed a bit weird/dangerous to me... Would anyone please happen to know: 1. Is there a special treatment for Staeful S

  • Index SAPPRD.SHDSVFVCI~0 is unbalanced

    Dear all , I am getting error in db 13 > UpdateStats end with error. Please find he below error BR0280I BRCONNECT time stamp: 2009-09-19 07.40.16 BR0884I Statistics collected for table: SAPPRD.SHDSVFVCI, rows old/new: 10177/10177 BR0986W Index SAPPRD

  • Xcelsius and License Question

    Hello, We have BOXI R2, R3.  We want to publish XCelsius to the Dashboard.  What is the minimal requirement for XCelsius license require to have be able to do that. Requirement. The XCelsius must be able to refresh data from external source as the da