Hide Page Numbers

Hello community
I have the following requirement: I have my page numbering embedded in the master page of my interactive form.
I have to hide this page numbers on the first and the last page of the document.
How can I achieve that? Where do I have to embed what FormCalc Code?
Thanks in advance!

Hi Alexander,
write the formCalc code that I gave in the ready:layout event
Replace
this.rawValue=xfa.layout.page(this);
by
$.rawValue = xfa.layout.page(this)
The earlier one must be in javascript.
Regards,
Reema.

Similar Messages

  • Report Builder Page Numbering

    Is it possible to hide page numbering starting from a specific based on a condition on that page?
    for example is there is no records in specific table then we need to hide the page numbering for rest of the pages except the pages above that table.
    Can you assist me?
    hussain

    Hi Hussain,
    Per my understanding that you have add page number on the report and want to conditional hide some of the page numbers based on the one of the tablix ,right?
    I have tested on my local environment and you can use expression in the PageNumber Properties window like below to hide and show the page number:
    Expression:
    =IIF(count(Fields!Test.Value, "DataSet1")=0 and Globals!PageNumber>=2, true, false)
    Note: If the "DataSet1" returns no data and the page number after the tablix is >=2 then they will be hidden.
    You can add page break in every tablix's properties to make them display on a single page.
    If you still have any problem, please try to provide more details information.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Page numbers from MS Word cannot be deleted in pages

    A colleague sent me a MSWord (Mac) document that I opened in pages 09 and started working on it. I need to delete the page numbers that were put in on the MSWord document. I guess they were put in using the automatic page numbering feature in Word. However, In the Pages09 document they are not in the usual footer location. It almost looks like they are part of the page background. They are not selectable and cannot be removed. It I choose to add page numbers using Pages, they numbers appear in the usual footer location—in addition to and not supplanting– the unselectable page numbers brought over from MSWord. Does anybody know a solution to this?

    Loren,
    The persistent content usually is a Master Object. So, you were right to begin with: Format > Advanced > Make Master Objects Selectable. One would think that if this is always the solution, it would be a simple matter to now select the tenacious item and delete it. The problem is that sometimes the object while now selectable is still not accessible.
    This Master Object can hide behind the Header box, as though the Header was a solid glass wall. Deselecting the Header function, in the Document Inspector, will give you access, but it will also irretrievably delete your Header Content. A better way, I have found, is to change the header Margin figure in the Document Margins Pane of the Document Inspector.
    Once you have moved the Header, Footer, or whatever else might be sharing the space, off the persistent page number, you can click on the page number Object and hit Delete. Now you can put back whatever you had to move, and you should be good to go. Consider yourself lucky if your Pages header doesn't fall over the old Word Header.
    Jerry

  • Page Numbering w/ASP and Dreamweaver CS3

    I am new to this so please bear with me if this question has been asked a million times. I have a single search parameter searching for a "Department", the result displays on the next page (The Results page). This works fine. I am using DW CS3 and I am now finding out that when I use it with ASP it only allows the Previous, Next, First, Last, Specific records to be displayed.
    I really want it to display the total amount of pages by numbers Example: (1-10, 11-21, etc...). Can someone please help me? I have searched the web and came across this site http://www.dmxzone.com/go?12449. I am not following where to put the code he suggest. Can someone please help me?
    Thanks for any help in advance.
    Here is the asp code I have for my Results page:
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/BishopsLogin.asp" -->
    <%
    Dim rs_Results__MMColParam
    rs_Results__MMColParam = "1"
    If (Request.QueryString("Department") <> "") Then
      rs_Results__MMColParam = Request.QueryString("Department")
    End If
    %>
    <%
    Dim rs_Results
    Dim rs_Results_cmd
    Dim rs_Results_numRows
    Set rs_Results_cmd = Server.CreateObject ("ADODB.Command")
    rs_Results_cmd.ActiveConnection = MM_BishopsLogin_STRING
    rs_Results_cmd.CommandText = "SELECT Department, SubpageTitle, LinkDescription, URL, DateLastModified FROM dbo.Episcopal_Data_Files WHERE Department = ?"
    rs_Results_cmd.Prepared = true
    rs_Results_cmd.Parameters.Append rs_Results_cmd.CreateParameter("param1", 200, 1, 30, rs_Results__MMColParam) ' adVarChar
    Set rs_Results = rs_Results_cmd.Execute
    rs_Results_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = 5
    Repeat1__index = 0
    rs_Results_numRows = rs_Results_numRows + Repeat1__numRows
    %>
    <%
    '  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
    Dim rs_Results_total
    Dim rs_Results_first
    Dim rs_Results_last
    ' set the record count
    rs_Results_total = rs_Results.RecordCount
    ' set the number of rows displayed on this page
    If (rs_Results_numRows < 0) Then
      rs_Results_numRows = rs_Results_total
    Elseif (rs_Results_numRows = 0) Then
      rs_Results_numRows = 1
    End If
    ' set the first and last displayed record
    rs_Results_first = 1
    rs_Results_last  = rs_Results_first + rs_Results_numRows - 1
    ' if we have the correct record count, check the other stats
    If (rs_Results_total <> -1) Then
      If (rs_Results_first > rs_Results_total) Then
        rs_Results_first = rs_Results_total
      End If
      If (rs_Results_last > rs_Results_total) Then
        rs_Results_last = rs_Results_total
      End If
      If (rs_Results_numRows > rs_Results_total) Then
        rs_Results_numRows = rs_Results_total
      End If
    End If
    %>
    <%
    Dim MM_paramName
    %>
    <%
    ' *** Move To Record and Go To Record: declare variables
    Dim MM_rs
    Dim MM_rsCount
    Dim MM_size
    Dim MM_uniqueCol
    Dim MM_offset
    Dim MM_atTotal
    Dim MM_paramIsDefined
    Dim MM_param
    Dim MM_index
    Set MM_rs    = rs_Results
    MM_rsCount   = rs_Results_total
    MM_size      = rs_Results_numRows
    MM_uniqueCol = ""
    MM_paramName = ""
    MM_offset = 0
    MM_atTotal = false
    MM_paramIsDefined = false
    If (MM_paramName <> "") Then
      MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
    End If
    %>
    <%
    ' *** Move To Record: handle 'index' or 'offset' parameter
    if (Not MM_paramIsDefined And MM_rsCount <> 0) then
      ' use index parameter if defined, otherwise use offset parameter
      MM_param = Request.QueryString("index")
      If (MM_param = "") Then
        MM_param = Request.QueryString("offset")
      End If
      If (MM_param <> "") Then
        MM_offset = Int(MM_param)
      End If
      ' if we have a record count, check if we are past the end of the recordset
      If (MM_rsCount <> -1) Then
        If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
          If ((MM_rsCount Mod MM_size) > 0) Then         ' last page not a full repeat region
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      If (MM_rs.EOF) Then
        MM_offset = MM_index  ' set MM_offset to the last possible record
      End If
    End If
    %>
    <%
    ' *** Move To Record: if we dont know the record count, check the display range
    If (MM_rsCount = -1) Then
      ' walk to the end of the display range for this page
      MM_index = MM_offset
      While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      ' if we walked off the end of the recordset, set MM_rsCount and MM_size
      If (MM_rs.EOF) Then
        MM_rsCount = MM_index
        If (MM_size < 0 Or MM_size > MM_rsCount) Then
          MM_size = MM_rsCount
        End If
      End If
      ' if we walked off the end, set the offset based on page size
      If (MM_rs.EOF And Not MM_paramIsDefined) Then
        If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
          If ((MM_rsCount Mod MM_size) > 0) Then
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' reset the cursor to the beginning
      If (MM_rs.CursorType > 0) Then
        MM_rs.MoveFirst
      Else
        MM_rs.Requery
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While (Not MM_rs.EOF And MM_index < MM_offset)
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
    End If
    %>
    <%
    ' *** Move To Record: update recordset stats
    ' set the first and last displayed record
    rs_Results_first = MM_offset + 1
    rs_Results_last  = MM_offset + MM_size
    If (MM_rsCount <> -1) Then
      If (rs_Results_first > MM_rsCount) Then
        rs_Results_first = MM_rsCount
      End If
      If (rs_Results_last > MM_rsCount) Then
        rs_Results_last = MM_rsCount
      End If
    End If
    ' set the boolean used by hide region to check if we are on the last record
    MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
    %>
    <%
    ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
    Dim MM_keepNone
    Dim MM_keepURL
    Dim MM_keepForm
    Dim MM_keepBoth
    Dim MM_removeList
    Dim MM_item
    Dim MM_nextItem
    ' create the list of parameters which should not be maintained
    MM_removeList = "&index="
    If (MM_paramName <> "") Then
      MM_removeList = MM_removeList & "&" & MM_paramName & "="
    End If
    MM_keepURL=""
    MM_keepForm=""
    MM_keepBoth=""
    MM_keepNone=""
    ' add the URL parameters to the MM_keepURL string
    For Each MM_item In Request.QueryString
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
      End If
    Next
    ' add the Form variables to the MM_keepForm string
    For Each MM_item In Request.Form
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
      End If
    Next
    ' create the Form + URL string and remove the intial '&' from each of the strings
    MM_keepBoth = MM_keepURL & MM_keepForm
    If (MM_keepBoth <> "") Then
      MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
    End If
    If (MM_keepURL <> "")  Then
      MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
    End If
    If (MM_keepForm <> "") Then
      MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
    End If
    ' a utility function used for adding additional parameters to these strings
    Function MM_joinChar(firstItem)
      If (firstItem <> "") Then
        MM_joinChar = "&"
      Else
        MM_joinChar = ""
      End If
    End Function
    %>
    <%
    ' *** Move To Record: set the strings for the first, last, next, and previous links
    Dim MM_keepMove
    Dim MM_moveParam
    Dim MM_moveFirst
    Dim MM_moveLast
    Dim MM_moveNext
    Dim MM_movePrev
    Dim MM_urlStr
    Dim MM_paramList
    Dim MM_paramIndex
    Dim MM_nextParam
    MM_keepMove = MM_keepBoth
    MM_moveParam = "index"
    ' if the page has a repeated region, remove 'offset' from the maintained parameters
    If (MM_size > 1) Then
      MM_moveParam = "offset"
      If (MM_keepMove <> "") Then
        MM_paramList = Split(MM_keepMove, "&")
        MM_keepMove = ""
        For MM_paramIndex = 0 To UBound(MM_paramList)
          MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
          If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
            MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
          End If
        Next
        If (MM_keepMove <> "") Then
          MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
        End If
      End If
    End If
    ' set the strings for the move to links
    If (MM_keepMove <> "") Then
      MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
    End If
    MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
    MM_moveFirst = MM_urlStr & "0"
    MM_moveLast  = MM_urlStr & "-1"
    MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
    If (MM_offset - MM_size < 0) Then
      MM_movePrev = MM_urlStr & "0"
    Else
      MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
    End If
    %>
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0;
    //-->
    </script><script language="JavaScript" src="mm_menu.js"></script>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    </head>
    <body onLoad="MM_preloadImages('images/nav_about_on.gif','images/nav_departments_on.gif','image s/nav_calendar_on.gif','images/nav_links_on.gif','images/nav_contact_on.gif','images/nav_h ome_on.gif','images/nav_forms_on.gif')">
    <script language="JavaScript1.2">mmLoadMenus();</script>
    <div align="center">
      <table width="760" border="0" cellspacing="0" cellpadding="0">
    <tr bgcolor="#ffffff" valign="top">
    <td><a href="index.html"><img src="images/logobar_left.gif" alt="GCFA: Serving the Church through the ministry of administration" width="186" height="103" border="0" /></a><img src="images/blurb.gif" alt="General Council on Finance and Administration. The United Methodist Church" /></td>
    </tr>
    </table>
    <table width="760" border="0" cellspacing="0" cellpadding="0" height="20">
    <form method="get" action="http://google.umc.org/search" name="xxx">
    <tr height="20" style="vertical-align: middle;">
    <td  bgcolor="#000000" width="580"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('about','','images/nav_about_on.gif',1)"><img src="images/nav_about.gif" alt="About Us" name="about" width="70" height="20" border="0" id="about" onMouseOver="MM_showMenu(window.mm_menu_0523125900_0,0,20,null,'about')" onMouseOut="MM_startTimeout();" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('departments','','images/nav_departments_on.gif',1)"><img src="images/nav_departments.gif" alt="Departments &amp; Services" name="departments" width="146" height="20" border="0" id="departments" onMouseOver="MM_showMenu(window.mm_menu_0516155917_0,0,20,null,'departments')" onMouseOut="MM_startTimeout();" /></a><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('forms','','images/nav_forms_on.gif',1)"><img src="images/nav_forms.gif" alt="Forms/Reports" name="forms" width="105" height="20" border="0" id="forms" onMouseOver="MM_showMenu(window.mm_menu_0523125955_0,0,20,null,'forms')" onMouseOut="MM_startTimeout();" /></a><a href="calendar.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('calendar','','images/nav_calendar_on.gif',1)"><img src="images/nav_calendar.gif" alt="UM Calendar" name="calendar" width="89" height="20" border="0" id="calendar" /></a><a href="links.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('links','','images/nav_links_on.gif',1)"><img src="images/nav_links.gif" alt="Helpful Links" name="links" width="39" height="20" border="0" id="links" /></a><a href="contactus.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('contact','','images/nav_contact_on.gif',1)"><img src="images/nav_contact.gif" alt="Contact Us" name="contact" width="78" height="20" border="0" id="contact" /></a><a href="index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('home','','images/nav_home_on.gif',1)"><img src="images/nav_home.gif" alt="Home" name="home" width="38" height="20" border="0" id="home" /></a></td>
    <td bgcolor="#990000" width="51" align="center" style="font: 11px arial, helvetica, sans-serif; color: #ffffff;"><img src="images/btn_search.gif" alt="Search" width="51" height="20" /></td>
    <td bgcolor="#990000"><input name="q" type="text" size="15" style="font: 10px arial, helvetica, sans-serif;"/></span></td>
    <td width="33" bgcolor="#990000"><input type="image" name="submit" src="images/btn_go.gif" alt="GO!" width="31" height="20" /></td>
    </tr>
          <input type="hidden" name="sort" value="date:D:L:d1">
          <input type="hidden" name="output" value="xml_no_dtd">
          <input type="hidden" name="ie" value="UTF-8">
          <input type="hidden" name="oe" value="UTF-8">
          <input type="hidden" name="client" value="GCFA_GCFAorg_Frontend">
          <input type="hidden" name="proxystylesheet" value="GCFA_GCFAorg_Frontend">
          <input type="hidden" name="site" value="GCFA_GCFAorg_Collection">
        </form>
    </table>
    <table width="760" border="0" cellspacing="0" cellpadding="0">
    <tr valign="top">
    <td height="353" style="background-color: #dddddd; width: 150px;">
    <table width="150" border="0" cellspacing="0" cellpadding="0">
       <tr style="background-color: #990000;" height="25">
            <td style="font: bold 11px arial, helvetica, sans-serif; color: #ffffff; text-align: center;">Department Resources</td>
         </tr>
       <tr>
            <td><div style="font: 11px arial, helvetica, sans-serif; color: #000000; text-align: left; margin-left: 10px; margin-right: 10px; margin-bottom: 5px; margin-top: 5px;">
                <p>PDF documents require using the<span class="style5"><a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank"> latest version</a> </span>of the freely available Adobe Reader for proper viewing. Click on
                the <span class="style5"><a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank">Get Adobe Reader</a></span> link below for
                download and installation instructions. <br />
                <br />
                <a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank"><img src="images/get_adobe_reader.gif" alt="Get Adobe Reader" width="112" height="33" border="0" /></a></span><br>
       <a href="images/get_adobe_reader.gif" target="_blank"></a><br />
       </p>
            </div></td>
         </tr>
    <tr style="background-color: #3C5D15;" height="25">
    <td bgcolor="#DDDDDD" style="font: bold 12px arial, helvetica, sans-serif; color: #ffffff; text-align: center;"> </td>
    </tr>
    <tr>
    <td>
    <div style="font: 11px arial, helvetica, sans-serif; color: #000000; text-align: left; margin-left: 10px; margin-right: 10px; margin-bottom: 5px; margin-top: 5px;">
    <p><br />
    <br />
    <br />
    </p>
    </div> </td>
    </tr>
    </table>
        <p> </p></td>
    <td style="background-color: #000000; width: 2px;"><img src="images/pixel_black.gif" width="2" height="10" /></td>
    <td bordercolor="#FFFFFF" bgcolor="#FFFFFF" style="background-color: #ffffff; width: 610px;">
      <div style="margin-left: 20px; margin-right: 20px; margin-bottom: 20px; margin-top: 5px;">
        <table width="100%" border="0" cellspacing="2" cellpadding="2">
          <tr>
            <td height="285" align="left" valign="top"><p><font face="Arial" color="#990000"><span style="font-size: 16px; font-weight: 700">Episcopal Services Data Files</span></font></p>
              <p><font face="Arial" color="#990000"><span style="font-size: 16px; font-weight: 700"><br />
                </span></font>
                </p>
                <br />
                <%
    While ((Repeat1__numRows <> 0) AND (NOT rs_Results.EOF))
    %>
                  <table border="0" cellpadding="1" cellspacing="1">
                      <tr>
                          <td width="132" height="27" bgcolor="#DDDDDD"><div align="center"><strong>Department</strong></div></td>
                        <td width="371" bgcolor="#DDDDDD"><%=(rs_Results.Fields.Item("Department").Value)%></td>
                      </tr>
                      <tr>
                          <td height="22"><div align="center"><strong>Subpage Title</strong></div></td>
                        <td><%=(rs_Results.Fields.Item("SubpageTitle").Value)%></td>
                      </tr>
                      <tr>
                          <td height="26" bgcolor="#DDDDDD"><div align="center"><strong>Link Description</strong></div></td>
                        <td bgcolor="#DDDDDD"><%=(rs_Results.Fields.Item("LinkDescription").Value)%></td>
                      </tr>
                      <tr>
                          <td height="25"><div align="center"><strong>Date Last Modified</strong></div></td>
                        <td><%=(rs_Results.Fields.Item("DateLastModified").Value)%></td>
                      </tr>
                      <tr>
                          <td height="26" bgcolor="#DDDDDD"><div align="center"><strong>URL</strong></div></td>
                        <td bgcolor="#DDDDDD"><%=(rs_Results.Fields.Item("URL").Value)%></td>
                      </tr>
                              </table>
                  <br />
                  <%
      Repeat1__index=Repeat1__index+1
      Repeat1__numRows=Repeat1__numRows-1
      rs_Results.MoveNext()
    Wend
    %>
    <%
    rs_Results.Close()
    Set rs_Results = Nothing
    %>

    Please ignore my first post, it isn't right.
    I am new at this, although I did figure out the tutorial it still isn't what I am wanting. I am going to send an example page of want I my page to look like when I said page numbering  (I don't want first,prev,next, or last). I want numbers like the results you will get from this page. http://www.gcfa.org/Department_Resources.aspx Can I do this with ASP?
    If so so can someone please show me how? Thanks in advance. Maybe I have the right question this time.

  • ? how to add page numbers in pages 5.2, starting with 2.  Pages '09 had an option to not show folio on page one.  Also any how to do left and right folios for a Tabloid?  Many trhanks

    ? how to add page numbers in pages 5.2, starting with page 2.  Pages '09 had an option to not show folio on page one.  Also any idea how to do left and right folios for a Tabloid?  Many thanks  . . .

    Hello jacquemac,
    Your first question:
    There might be a better way of achieving what you wish to do, but following these steps could help you out.
    You might want to blend in Thumbnails and Invisibles either with (cmd+shift+i and cmd+alt+p) or over the View section in the Menubar.
    1. go for Documents (right end of the Toolbar) -> Section
    2. place your cursor at the very top of your second page and click "Create new Section->Starting with this page" in the side bar on your right.
    (what you are actually doing next is setting the pagenumbers for each section you created. You can see your sections in the Thumbnail view.)
    3. click on your first page (the first and only page of your first section) and mark the checkbox "Hide on first page of section"
    4. click on your second page (the first page of your second section) and  "Insert page number" -> start at 1
    Your second question:
    Im not quite sure i understand what exactly you want to do here. One page, two columns, each column with another page number? As far as i know this is not possible.
    greetings jl

  • Page numbers incorrect after conversion from Excel to pdf

    Page numbers incorrect after conversion from Excel to pdf
    ""This above link (thread:834599) is from a case back in 2011 that claims to solve this problem, but it does not solve this problem. I think that customer only cared about having continuous page numbering, not discrete page numbering per sheet.
    ========================
    I still have this issue in Acrobat XI and MS Office Professional Plus 2010. I keep upgrading to no avail. This regression has resulted in a huge time drain for me. If you fixed it, please explain how I can get my hands on the resolution.
    Previous versions of Excel and Adobe Acrobat enabled flexibility around the "Page #" of "Number of Pages" (Page &[Page] of &[Pages]) token, depending on context and usage. The "# of pages" token could represent EITHER the number of pages in the workbook OR the number of pages in the tab/sheet, depending on how you generated the PDF:
    You could select "Selected Sheets" and then select all or some of the individual sheets in the workbook, and the PDF would honor the discrete numbering of each of the sheets, so the first page of each sheet was p1 and the "# of pages" was the number of pages in the sheet; not the number of pages in the workbook; or
    You could select "Entire Workbook" and the PDF would honor continuous page numbers across all sheets, as a single document.
    Now, it only honors the total number of pages in the workbook, regardless of the method you use to publish to PDF: saving as PDF, printing to PDF, using "createPDF" from Acrobat plugin to Excel's menu ribbon; selecting all sheets, some sheets, or Entire Workbook; automatic First page number or "1" under Page Setup > Page> First page number. (This last option, btw, does restart every sheet at p1, but it hardly makes sense if the total number of pages is still the total number in the workbook instead of the number in the sheet.)
    I spent a lot of time trying each which way that the blog posts recommended and have tried this on multiple versions of Excel and Acrobat now.
    NONE of these time-consuming experiments gave me what I wanted.They all insist that "Page #" of "Number of Pages" (Page &[Page] of &[Pages]) is the total number of pages in the workbook or the total number of pages in the selected sheets combined.
    The numbering are correct in Excel Page Layout.
    The same issue happens when using LibreOffice calc. (Although, I never tested with Libre Office before, so I don't know that it ever worked).
    The workaround now is to create PDF for each spreadsheet one at a time, and then compile them using the Acrobat combine/binder feature. All alternatives are extremely time consuming and tedious. It used to be automatic. This is a major regression that has gone untreated for over a year now, maybe two years.
    My task takes infinitely more time to complete than it did with previous versions of Acrobat. That means that days are added to my project, when the functionality used to enable a quick pdf generation that was ready for review, now I have to do this very manual time-consuming set of steps to generate a draft. As the project has grown and more tabs are added, my pdf-generation task takes that much longer. We require lots of drafts. It used to be easy and fast. Now it is hard and time-consuming.
    In my opinion, the problem is not Excel; it is Acrobat because it was introduced with an upgrade in Acrobat, not an upgrade in Excel. The problem was introduced in Acrobat 9 or 10. Please provide a patch or add-on or something.

    If you are setting up the page numbers in Excel, the resulting PDF would display the the page numbers created in Excel. On Excel 2010 support page, (http://office.microsoft.com/en-us/excel-help/insert-and-remove-page-numbers-on-worksheets- HA010342619.aspx#BM2) is stated the following "tip" which indicates by default Excel 2010 starts numbering each tab with 1. Exel's workaround tip is below - 
    Set a different number for the starting page
    Tip   To number all of the worksheet pages in a workbook sequentially, first add page numbers to all worksheets in a workbook, and then use the following procedure to begin the page number for each worksheet with the appropriate number. For example, if your workbook contains two worksheets that with both be printed as two pages, you would use this procedure to begin the page numbering for the second worksheet with the number 3.
    On the Page Layout tab, in the Page Setup group, click the Dialog Box Launcher next to Page Setup.
    On the Page tab, in the First page number box, type the number that you want to use for the first page.
    Tip   To use the default numbering system, type Auto in the First page number box.
    Also helpful in the same section is the note on viewing page numbers. To see if the page numbering dilemma originates in Excel make sure you are using the Page Layout View see below:
    Hide All
    If you want numbers shown on pages when you print a worksheet  you can insert page numbers in the headers or footers of the worksheet pages. Page numbers that you insert are not displayed on the worksheet in Normal view — they are shown only in Page Layout view and on the printed pages.
    Overall it may be easier not to create the page numbers in Excel but instead create then in Acrobat using the Headers and Footers option in Acrobat.  I hope this helps - it sounds like a frustrating issue you are experiencing.

  • Why is page numbering in Pages 5 with Mavericks so difficult?

    Whatever I put in the header on page 1 did not show up on any other page whether or not I checked "Hide page 1 in section."  But, when I went to page 2, Pages treated page 2 as a separate page for numbering no matter what I did or undid.  Only when I got to the header on page 3 could I actually set up a header what worked on every page there thereafter, even though it wanted to number it as page 2.  I never had this problem before.  Headers were a snap.  Now, I have to go to Format to set up tabs to put in Part 1 as Left justified, then set up tab 3.5 to set page number.  It was never this hard before.

    Obviously you are not using Mac OSX 10.7.2.
    Yes, you have noticed how bad Pages 5 is at page numbering.
    You have yet to notice the other 90+ features removed.
    Pages '08/'09 should still be in your Applications/iWork folder, use that.
    Peter

  • Can Acrobat create a PDF using the same page numbers as FrameMaker?

    I'm using FrameMaker 10 on Windows 7 and Acrobat Pro 9. I know I can set the page numbers after I create the PDF (Advanced > Document Processing > Page Numbering), but is there any way to tell Acrobat (or Distiller) to do this automatically based on the page format set up in FrameMaker? Right now, the cover and inside cover have no page numbers, but I could assign them numbers and hide them. The TOC is lower case Roman numerals, and the rest of the book uses Arabic page numbering. Someone has asked whether we can have the page numbers be reflected in the page field so that when you enter page 10, it takes you to page 10 of the book (where 10 appears in the corner of the page), not the tenth page of the PDF, which might land you in the TOC.
    We produce PDFs as part of an automated system, which is why I can't mess with it after it's been produced.

    There is a FrameMaker plug-in that can do this:
    http://www.frameexpert.com/plugins/pagelabeler/index.htm
    Or, you might consider using PDFMark to add page labels.

  • Large page numbers will crash Livecycle Designer! Beware!

    I tried converting a 70 page .pdf file to fillable, and when I try to scroll down my forms past page 30 in Designer, the remaining pages get cut off. I cannot access over half of my document.
    Don't make the same mistake! Separate your file into smaller chunks because Adobe Designer cannot handle larger files!

    Ahh, no, it doesn't quite work.
    Throughout a section I have info boxes - these are text boxes wrapped in a subform called info1a, info1b etc. which are set to be hidden pre print - and post print they are set to visible. This works in itself.
    However the code above still counts the page numbers within the section prior to the info boxes being hidden - in other words, the info boxes cause the pages to be printed to extend beyond the section as if the info boxes were still there, even though they are not.
    If I have two buttons - one to set the visibility of the info boxes to hidden and then click another button to print the section then it works fine, but I can't amalgamate the instructions into one single button.
    Here's what I have so far:
    Button one - to hide info boxes:
    form1.summary.Button1[2]::click - (JavaScript, client)
      this.resolveNode("form1.summary.info1a").presence = "hidden";
    this.resolveNode("form1.summary.info1b").presence = "hidden";
    this.resolveNode("form1.summary.info1c").presence = "hidden";
    Button two - to print the section:
    form1.summary.Button1[0]::click - (JavaScript, client)
    var vObj = xfa.resolveNode("form1.summary"),
      vPageStart = xfa.layout.absPage(vObj),
      vPageEnd = vPageStart + xfa.layout.absPageSpan(vObj) - 1;
    xfa.host.print(1, vPageStart.toString(), vPageEnd.toString(), 0, 0, 0, 0, 0);
    I have tried to amalgamate both instructions into one button but this doesn't work:
    form1.summary.Button1[0]::click - (JavaScript, client)
      this.resolveNode("form1.summary.info1a").presence = "hidden";
    this.resolveNode("form1.summary.info1b").presence = "hidden";
    this.resolveNode("form1.summary.info1c").presence = "hidden";
    var vObj = xfa.resolveNode("form1.summary"),
      vPageStart = xfa.layout.absPage(vObj),
      vPageEnd = vPageStart + xfa.layout.absPageSpan(vObj) - 1;
    xfa.host.print(1, vPageStart.toString(), vPageEnd.toString(), 0, 0, 0, 0, 0);
    can anyone help?

  • Previewing Pages document in Preview shows page numbers incorrectly

    Previewing Pages (5.2) document in Preview (7.0) shows page numbers incorrectly. Regardless of starting page number preview shows as Page 1.
    Suggestions appreciated...

    That appears to be YABIP5 (Yet Another Bug In Pages 5].
    Pages .09 documents are fine.
    No prizes however for finding bugs in Pages 5/5.2 it's swarming with them.
    Peter

  • How to print page numbers in adobe form

    Hi,
    Can anybody tell me how to print page numbers in adobe form.
    Thanks in advance
    Chaitanya

    Hi,
    Yes the field page n of m is used normally for printing page numbers. But it won't display the current page of total pages by itself. You have to set the run time property to n (current page ) and m (Total number of pages). Carefully select the # (current page ) and ## (Total number of pages). Hope this works for you.
    My requirement is to have the user control on current page. For Example:
    Example for a Invoice with 5 PO items (stands on 2 pages) :
    1st  page is the letter : no page number
    2nd page is the 1st page of the 1st copy of the invoice : we should read u201C1 / 2u201D
    3rd page is the 2nd page of the 1st copy of the invoice : we should read u201C2 / 2u201D
    4th page is the 1st page of the 2nd copy of the invoice : we should read u201C1 / 2u201D
    5th page is the 2nd page of the 2nd copy of the invoice : we should read u201C2 / 2u201D
    Presently i cam getting the current page number for page 4th as 3 / 2 and for 5th page 4 / 2. I could able to control the total number of pages from print program. But when i am printing the second copy (4th and 5th pages), I couldn't able to control the current page number. I need to initialize the Current page count (4th page ) as 1.
    I have used the follwing java scripting:
    this.rawValue = wv_pages - xfa.layout.page(this)
    where wv_pages is total no of pages calculated from print program.
    Please help me in this regard with some formcal or java scripting conditions.
    Thank You,
    Regards,
    Naresh.

  • I need to start the page numbers over for a new section in a document (i.e. first six pages are roman numerals, next 70 need to be in arabic numerals), but for some reason, the automatic page numbering has started over at number 3 instead of 1. Help!!

    If anyone has any idea why it's doing this, or what I can do to fix it, please help!

    No idea why it's doing this.
    You should be able to fix it by using Insert > Page Number, rather than 'Automatic Page Numbering.'
    Set Page Numbers in your second section to "Start at:" 1
    Regards,
    Barry

  • Page numbering in rtf templates

    Hi All,
    I have an rtf template and what I want is to display page numbers. I can achieve this with the following : <?fo:page-number?> but I want to display it by different way:
    For example if the total pages in the output is 10 pages I want the page number to be displayed as Page 1 of 10, 2 of 10, 3 of 10 etc.
    Any ideas?
    Thanks in advance,
    Konska tor

    Well, it's fixed itself. It still doesn't work on my home computer, but it does work on my work computer... as long as it works in Oracle eBus I'm happy :) Must be a certain version of word that causes the problem.

  • Page numbers in a photo book / keepsake

    Can anyone tell me how i can get page numbers to display in a photo book? In the help section it says that i can go to settings and turn this function on, however, I don't have that option in there. I need it to make a slideshow preview for others involved to review pages and make suggestions to layouts. They need to be able to quote the page number that needs adjusting.

    The page number setting it the bottom check box in the settings menu - if it is checked and you do not have page numbers displayed on your pages then they are not available with the theme/layout you have chosen
    See Liz Castro's web page for samples of each theme and the layouts for each theme - http://www.lizcastro.com/iphotobookthemes/pmwiki.php?n=Main.Travel - I'm not sure she specifically addresses page numbers
    LN

  • Page numbers in PDF?

    I cannot figure out how to identify the page numbers of a PDF document when I view it in Safari 5.0.3. The original paper document has its own numbering system, but the PDF page-numbers are completely different. When I go to print individual pages of the PDF document, I don't know what page numbers to put into the printer window.
    I asked the publisher of the PDF document for advice. This is what it advised:
    "This is an issue with printing PDFs (Portable Document Files) in general, and does not pertain exclusively to printing PDFs in FDsys. When printing a PDF document in your web browser, the web browser is printing the pages of the electronic file (the PDF) not the page numbers that appear on the original publication (from which the PDF is derived). The page numbers of a PDF document do not always match the page numbers appearing on the publication itself. For example, in the example you cited (http://www.gpo.gov:80/fdsys/pkg/USCODE-2009-title26/pdf/USCODE-2009-title26-subt itleA.pdf), the page number on the publication is page 347. However, if you click anywhere in that page, you will see that the PDF reader you are using indicates the corresponding page in the PDF file in the toolbar at the top of the page (next to the up/down arrow icons). The page number indicated in the toolbar refers to the page numbers in the PDF file, and it is these page numbers that your browser is referring to during the printing process."
    None of those instructions work in Safari. How do I find the page numbers for a PDF document in Safari?

    Hi Richard
    the best bet is to open it in Preview using the relevant button that appears when you hover at the bottom of a pdf in safari. Although the page numbers that appear on each page still won't necessarily match, you can at least make preview show the 'pdf' numbers in the toolbar, which will match those you choose when printing.
    a plugin like adobe's or http://schubert-it.com/pluginpdf/ may show page numbers within Safari, but that doesn't mean they'll match those which appear on the pages, in the example link you gave, and others.

Maybe you are looking for

  • Selection condition in maintenance view

    I have one table with data related to 5 systems. MSF, RET, SER, BOB, SAV, LED. I need t o create views with related data for each system. But system BOB contains data related to MSF and RET, So instead of creating view for that i have to add MSF rela

  • Need help with images in browser!

    Hey all, So I'm building my very first website, and I've reached my first roadblock. I'm trying to set up a grid of images, and most (7 out of 9) of the images appear in my browser when I preview in Safari and Firefox (haven't tested any others). The

  • Apple HD 23" Screen

    I have a 23" Apple HD Screen connected to my Mac Mini (G4) and for unknown reasons and randomly the screen powers down and back up again. Any ideas why this might happen? Anyone else have this issue?

  • Check point not complete - Production issue

    Hi There is a error in my alert log that checkpoint not complete .(Oracle Database 10g Release 10.2.0.4.0) and when i checked select name, checkpoint_change#, to_char(checkpoint_time, 'DD.MM.YYYY HH24:MI:SS') from v$datafile_header ; it shows NAME CH

  • Unable to load staging area table in teradata from ODI

    Hi i'm unable to load data in Staging area in teradata. while loading i'm geeting following Error org.apache.bsf.BSFException: exception from Jython: Traceback (innermost last): File "<string>", line 9, in ? Load Error: See D:\CRM_MOD\/CRM_PRODUCT_SS