When I enter a single digit in a cell, it lists multiple digits

I wish to type a number into a single cell.  If the number has multiple digits like 123 (for example), the cell accepts it just fine.  However, sometimes I need to enter just a single digit number into the cell, such as a 5 (for example).  When I enter in 5, it does not accept it, and it has a very long string of numbers pop up in a window within the cell, and sometimes it even has a + sign and even a letter pop up at the end of the string.  The only way to get rid of the long string of numbers is to add a 0 in front of the 5.  However, I don't want to have to add a 0 in front of it every time. 
any help would be appreciated. 
Thanks!!  Midnight

     Here is where I try to insert a 1 in the cell under JAN
     If I type in 1 and hit enter, it gives me this weird figure, with a plus sign.
Again, thank you for your help.
Midnight

Similar Messages

  • My phone has changed from the numbered keypad to the large lettered keyboard.  When I enter my 6 digit passcode it tells me I'm wrong.  I've tried about 6 times and don't want to get locked out.  It just started today??? Please help.

    My phone has changed from the numbered keypad to the large lettered keyboard.  When I enter my 6 digit passcode it tells me I'm wrong.  I've tried about 6 times and don't want to get locked out.  It just started today??? Please help.

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • Single-digit form fields

    This is probably a very simple answer, but I am unable to figure it out. When I create a single-digit form field, I want the user to enter the appropriate number and then the tab will automatically advaance to the next field. I tried creating it with a text field, set up as below, but it does not automatically advance. What am I missing? Thanks.

    Tabbing to another field automatically requires using a script. There's no
    built-in method of doing it.

  • When I set up email for the first time, I had to enter a 4 digit pin. Since then, every time I switch my phone on, I have to enter this pin.   How do I remove or bypass the pin so that I can switch on the Iphone without having to first enter a pin?

    When I set up email for the first time, I had to enter a 4 digit pin. Since then, every time I switch my phone on, I have to enter this pin.   How do I remove or bypass the pin so that I can switch on the Iphone without having to first enter a pin?

    Go to Settings>General>Passcode Lock>tap Turn Passcode Lock Off, enter your "pin".
    Edit:  Are you saying you are getting a prompt for your email pin, or are you talking about the passcode lock that appears when you turn the phone on?

  • Problem with retrieving single digit date and month

    Hello Sir,
    I have the following code. Cuurently when I insert date in this format 1984/11/14 and also in this format 1984/11/4 and retrieve the following two dates, I could successfully populate the dates into the corresponding fields in the form. But earlier in the database, there are some records created in the following formats:
    1984/3/1 and 1987/10/4(i.e.,yyyy/mm/dd).In the form when I try to populate them into their corresponding fields I am able to populate only 1984 into the year filed in the first case and in the second case I could populate 1987 and 10 into the year and month fields. I could not populate the values of the records with single digit either in month or day fields.
    By observing the code, could you let me know what needs to be done in order to populate the previously created records with the single digit month and date.
    This is the jsp for creating and editing the records.
    <HTML>
    <HEAD>
         <TITLE> CRM Event Information </TITLE>
    <script language="JavaScript" src="../javascript/misc.js"></script>
    <script language="JavaScript">
    function saveMe(methodHow) {
         var elementNumber = CRMEvent.elements.length
         var field1 = "";
         var field2 = "";
         var field3 = "";
         var field4 = "";
         var field5 = "";
         var field6 = "";
         var field7 = "";
         var field8 = "";
         for(i=0; i < elementNumber; i++){
              submitForm.elements.name = CRMEvent.elements[i].name;
              submitForm.elements[i].value = CRMEvent.elements[i].value;
         for (k = 0; k < oneToMany1.addedItems.options.length; k++){;
              if (addTemp.field1oneToMany1Value[k] == ""){
              addTemp.field1oneToMany1Value[k] = "9999"
              if (addTemp.field2oneToMany1Value[k] == ""){
              addTemp.field2oneToMany1Value[k] = "99"
              if (addTemp.field3oneToMany1Value[k] == ""){
              addTemp.field3oneToMany1Value[k] = "99"
              if (addTemp.field4oneToMany1Value[k] == ""){
              addTemp.field4oneToMany1Value[k] = "9999"
              if (addTemp.field5oneToMany1Value[k] == ""){
              addTemp.field5oneToMany1Value[k] = " "
              if (addTemp.field6oneToMany1Value[k] == ""){
              addTemp.field6oneToMany1Value[k] = " "
              if (addTemp.field7oneToMany1Value[k] == ""){
              addTemp.field7oneToMany1Value[k] = " "
              if (addTemp.field8oneToMany1Value[k] == ""){
              addTemp.field8oneToMany1Value[k] = " "
              if (eval(oneToMany1.addedItems.options.length - 1) == k){
                   field1 = field1 + addTemp.field1oneToMany1Value[k];
                   field2 = field2 + addTemp.field2oneToMany1Value[k];
                   field3 = field3 + addTemp.field3oneToMany1Value[k];
                   field4 = field4 + addTemp.field4oneToMany1Value[k];
                   field5 = field5 + addTemp.field5oneToMany1Value[k];
                   field6 = field6 + addTemp.field6oneToMany1Value[k];
                   field7 = field7 + addTemp.field7oneToMany1Value[k];
                   field8 = field8 + addTemp.field8oneToMany1Value[k];
              }else{
                   field1 = field1 + addTemp.field1oneToMany1Value[k]+"|";
                   field2 = field2 + addTemp.field2oneToMany1Value[k]+"|";
                   field3 = field3 + addTemp.field3oneToMany1Value[k]+"|";
                   field4 = field4 + addTemp.field4oneToMany1Value[k]+"|";
                   field5 = field5 + addTemp.field5oneToMany1Value[k]+"|";
                   field6 = field6 + addTemp.field6oneToMany1Value[k]+"|";
                   field7 = field7 + addTemp.field7oneToMany1Value[k]+"|";
                   field8 = field8 + addTemp.field8oneToMany1Value[k]+"|";
              submitForm.elements[eval(i)].name      = "eventtype"
              submitForm.elements[eval(i)].value      = field1
              submitForm.elements[eval(i+1)].name      = "dd_crmstart"
              submitForm.elements[eval(i+1)].value      = field2
              submitForm.elements[eval(i+2)].name      = "mm_crmstart"
              submitForm.elements[eval(i+2)].value      = field3
              submitForm.elements[eval(i+3)].name      = "yy_crmstart"
              submitForm.elements[eval(i+3)].value      = field4
              submitForm.elements[eval(i+4)].name      = "crmremark_code"
              submitForm.elements[eval(i+4)].value      = field5
              submitForm.elements[eval(i+5)].name      = "crmperson_firstname"
              submitForm.elements[eval(i+5)].value      = field6
              submitForm.elements[eval(i+6)].name      = "crmperson_lastname"
              submitForm.elements[eval(i+6)].value      = field7
              submitForm.elements[eval(i+7)].name      = "crmnote"
              submitForm.elements[eval(i+7)].value      = field8
              submitForm.elements[eval(i+8)].name      = "mode"
              submitForm.elements[eval(i+8)].value      = methodHow
         submitForm.method="post";
         onSave(submitForm);
         function onSave(form) {
         if (!oneToMany1.addedItems.options.length == 0) {
              for (i=1;i<=oneToMany1.addedItems.options.length;i++) {
                   validate.elements[0].value = addTemp.field4oneToMany1Value[i-1];
                   if (validate.elements[0].value != '9999') {
                        if(!validateForm('validate','validation','isNumber')) {
                             alert("CRM Event Information "+ i + ": Year must be number");
                             return false;      
                        if(!validateForm('validate','validation','checkrange')) {
                             alert("CRM Event Information "+ i + ": Year out of range");
                             return false;      
              form.submit();
              return true;
    </script>
    </HEAD>
    <BODY BGCOLOR=#ffffff>
    <BASEFONT="3">
    <FONT SIZE = -1>
    <%@ page errorPage="errorPage.jsp" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="dss.*" %>
    <!-- instantiate -->
    <jsp:useBean id="pool" scope="session" class="dss.ConnectionPool" />
    <jsp:useBean id="SelectBox" scope="session" class="dss.dataMisc" />
    <jsp:useBean id="query" class="dss.QueryData" scope="session" />
    <%
    // *************check for user session *************
         session = request.getSession();
    if (session.getValue("userSession") == null) {
    response.sendRedirect (response.encodeRedirectUrl
    ("dssLogin.jsp?Origin=dssACCRMEventAddEdit.jsp"));
    else {
         String dhr_id = "";
    String mode = "";
    String eventtype = "9999";
    String crmremark_code = "";
    String crmperson = "";
    String crmnote = "";
    String crmKey = "";
         String dd_crmstart = "99";
         String mm_crmstart = "99";
    Vector tempVector = new Vector();
              Vector CRMEventVector = new Vector();
              Vector CRMEventPerson = new Vector();
              Vector monthVector = new Vector();
              Vector dayVector = new Vector();
              Vector field1Vector = new Vector();
              Vector field5Vector = new Vector();
              Vector field6Vector = new Vector();
              Vector field7Vector = new Vector();
              Vector field8Vector = new Vector();
              Vector field234Vector = new Vector();
              Vector tempDayVector = new Vector();
              Vector tempMonthVector = new Vector();
              Vector tempYearVector = new Vector();
              Connection conn = null ;
              conn = pool.getConnection() ;
              dss.Database db = new dss.Database( conn ) ;
              dhr_id = request.getParameter("dhr_id");
         try {
    mode = request.getParameter("mode");
    dhr_id = request.getParameter("dhr_id");
                   //look up Setting List
                   String strSQL = "";
                   //look up CRM Event Type List
                   strSQL ="select crmtype_code value, item display from code_crmtype order by 2" ;
                   db.setSQL( strSQL ) ;
                   db.query() ;
                   CRMEventVector = db.getSelectionList() ;
                   //look up Month List
                   db.setSQL( "select LPAD(to_char(month_code),2,'0') value , item display from code_month order by 1" ) ;
                   db.query() ;
                   monthVector = db.getSelectionList();
                   //look up Day List
                   db.setSQL( "select LPAD(to_char(day_code),2,'0') value , item display from code_day order by 1" ) ;
                   db.query() ;
                   dayVector = db.getSelectionList();
                   // ************ EDIT Mode *************
    if (mode.equals("edit"))
              //out.println("mode is edit");     
    mode = "edit";
         //***********get archaeology_pkey based on dhr_id
                        int archKey = 0;
                             strSQL = " SELECT archaeology_pkey "+
                                            " FROM archaeology "+
                                            " WHERE UPPER(dhr_id)='"+ dhr_id.toUpperCase() + "'";
                             //out.println(strSQL);
                             Statement stmt2 = conn.createStatement();
                             ResultSet rs2 = stmt2.executeQuery(strSQL);
                             while (rs2.next()) {
                                  archKey = rs2.getInt(1);
                             rs2.close();
                             stmt2.close();
                   // ********* end getting **************
              strSQL = "Select crmtype_code, crmstart, crmremark, crmperson_firstname, crmperson_lastname, crmnote "+
                   " From archaeologycrmevent " +
                   " Where archaeology_pkey =" + archKey ;
              Statement stmtSQL = conn.createStatement();
              ResultSet rset = stmtSQL.executeQuery(strSQL);
              ResultSetMetaData rsmd = rset.getMetaData() ;
                   while (rset.next()) {
                   //get values
                   field1Vector.addElement(rset.getString(1));
                   field234Vector.addElement(rset.getString(2));
                   field5Vector.addElement(rset.getString(3));
                   field6Vector.addElement(rset.getString(4));
                   field7Vector.addElement(rset.getString(5));
                   field8Vector.addElement(rset.getString(6));
                   //crmKey = rset.getString(7);
                   for (int i=0; i<field234Vector.size(); i++){
                        StringTokenizer tempDate = new StringTokenizer((String)field234Vector.elementAt(i),"/");                              
                        while (tempDate.hasMoreTokens() ) {
                             tempYearVector.addElement (     tempDate.nextToken());
                             tempMonthVector.addElement(     tempDate.nextToken());
                             tempDayVector.addElement (     tempDate.nextToken());
         } //end edit
         } //end try
         catch ( Exception e) {
              out.println ( e.toString() ) ;
         } finally {
              db.cleanup() ;
    %>
    <P>
    <FORM NAME="oneToMany1">
    <TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0 WIDTH="100%" BGCOLOR="#BBBBBB">
    <TR>
    <TD BGCOLOR="#002B82" COLSPAN=9 width="100%" height="31">
    <p align="center">
         <font face="Arial" size="2" color="#FFFFFF">
         <b>6. CRM Event Information - </b>DHR ID# : <%=dhr_id %>
         </font>
         </p>
         </td>
    </TR>
    <TR>
    <TD WIDTH=83 ALIGN="RIGHT" height="21"><FONT SIZE=-1><B>CRM Event Type: </FONT></B></TD>
    <TD WIDTH=112 height="21">
              <%
              out.println ( SelectBox.strSelectionList((Vector)CRMEventVector.elementAt(0), (Vector)CRMEventVector.elementAt(1), "field1", "", eventtype, "180" ));
              %>
    </TD>
    <TD WIDTH=89 ALIGN="RIGHT" height="21"><FONT SIZE=-1><B>Event Date: </FONT></B></TD>
    <TD WIDTH=455 height="21"><font size="1">
         <%
         out.println ("<b><font size = 1>Date: "+ SelectBox.strSelectionList((Vector)dayVector.elementAt(0), (Vector)dayVector.elementAt(1), "field2", "", dd_crmstart, "180" ));
         out.println ("Month: "+ SelectBox.strSelectionList((Vector)monthVector.elementAt(0), (Vector)monthVector.elementAt(1), "field3", "", mm_crmstart, "180" ));
         %>
    </select><B>Year:</B><input type="text" name="field4" size="4" id="Year" maxlength="4">
    </TD>
    </TR>
    <TR>
    <TD WIDTH=83 ALIGN="RIGHT" height="30"><FONT SIZE=-1><B>ID# Associated with Event:</B> </FONT></TD>
    <TD WIDTH=112 height="30">
              <input type="text" name="field5" size="15" value="<%=crmremark_code%>">
    </TD>
    <TD WIDTH=89 ALIGN="RIGHT" height="30"><FONT SIZE=-1><B>
              CRM Person/ Organization: </FONT></B></TD>
    <TD WIDTH=455 height="30">
         <% // Modified by Robert Cox 09/12/2001 - changed field size from 20 to 30 // %>     
         <TABLE BORDER="0">
              <TR><TD>
              <FONT SIZE="1"><B>First:</B></FONT><input type="text" name="field6" size="15">
              </TD>
              <TD>
         <FONT SIZE="1"><B>Last:</B></FONT><input type="text" name="field7" size="15">
              </TD>
              </TR>
         </TABLE>
    </TD>
    </TR>
    <TR>
    <TD WIDTH=83 ALIGN="RIGHT" height="79"><FONT SIZE=-1><B>CRM Event Comments: </FONT></B></TD>
    <TD COLSPAN="3" width="660" height="79">
         <TEXTAREA ROWS="5" NAME="field8" cols="65"></TEXTAREA>
         </TD>
    </TR>
    <TR>
    <TD COLSPAN="4">
         <table border="0" cellspacing="0" cellpadding="0" align="center">
         <tr>
         <td width="50" align="left"> </td>
         <td align="center">
              <input type="button" value="Add" onClick="addUpdate(1,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
              <input type="button" value="Modify" onClick="addUpdate(2,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
              <input type="button" value="Update" onClick="addUpdate(3,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
              <input type="button" value="Remove" onClick="addUpdate(4,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
         </td>
         <td width="50" align="right"> </td>
         </tr>
         </table>
    </TD>
    </TR>
    <tr>
    <td width="100%" align="center" height="40" colspan="4"><select size="3" name="addedItems" style="width:100%">
    </td>
    </tr>
    </TABLE>
    <%/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //|------------------------------------------------------------------------------------------------------------------------
    //| Start code for one-to-many in edit mode /
    //|---------------------------------------------
    %>
    <script language="javascript">
    /* Check to see if the necessary arrays have been defined - if not define them */
         try{
              if (!eval("addTemp.addoneToMany1Name")){
              //alert("False");
              addTemp.addoneToMany1Name = Array();
              addTemp.addoneToMany1Value = Array();
              for(i = 1; i <= 8; i++){
                   eval("addTemp.field" + i + "oneToMany1Value = Array();");
              }else{
              //alert("already created");
    /* Catch any errors that may occur when checking if arrays are defined */
         catch(e) {
              alert(e);
    <%
    Enumeration field1_      = field1Vector.elements();
    Enumeration field2_      = tempDayVector.elements();
    Enumeration field3_      = tempMonthVector.elements();
    Enumeration field4_      = tempYearVector.elements();
    Enumeration field5_      = field5Vector.elements();
    Enumeration field6_      = field6Vector.elements();
    Enumeration field7_      = field7Vector.elements();
    Enumeration field8_      = field8Vector.elements();
         Object currentfield1 = "";
         Object currentfield2 = "";
         Object currentfield3 = "";
         Object currentfield4 = "";
         Object currentfield5 = "";
         Object currentfield6 = "";
         Object currentfield7 = "";
         Object currentfield8 = "";
         int counter = 0;
         int clength = 1;
    while (field1_.hasMoreElements()){
    //out.println("while field1_ has more elements");
    //|---------------------------------------------------------------------------------------------------------------------------
    //| define field elements - Use first and second lines if text box or memo field, Use third line if select box /
    //|------------------------------------------------------------------------------------------------------------
    //     currentfield1 = query.replaceString(field1_.nextElement().toString(),"'","\'").trim();
    //     currentfield1 = query.replaceString(currentfield1.toString(),"\"","\\" + "\"");
         currentfield1 = field1_.nextElement();
    //     currentfield2 = query.replaceString(field2_.nextElement().toString(),"'","\'").trim();
    //     currentfield2 = query.replaceString(currentfield2.toString(),"\"","\\" + "\"");
         currentfield2 = field2_.nextElement();
    //     currentfield3 = query.replaceString(field3_.nextElement().toString(),"'","\'").trim();
    //     currentfield3 = query.replaceString(currentfield3.toString(),"\"","\\" + "\"");
         currentfield3 = field3_.nextElement();
         currentfield4 = query.replaceString(field4_.nextElement().toString(),"'","\'").trim();
         currentfield4 = query.replaceString(currentfield4.toString(),"\"","\\" + "\"");
    //     currentfield4 = field4_.nextElement();
         currentfield5 = query.replaceString(field5_.nextElement().toString(),"'","\'").trim();
         currentfield5 = query.replaceString(currentfield5.toString(),"\"","\\" + "\"");
    //     currentfield5 = tempElement;
         currentfield6 = query.replaceString(field6_.nextElement().toString(),"'","\'").trim();
         currentfield6 = query.replaceString(currentfield6.toString(),"\"","\\" + "\"");
    //     currentfield6 = field6_.nextElement();
         currentfield7 = query.replaceString(field7_.nextElement().toString(),"'","\'").trim();
         currentfield7 = query.replaceString(currentfield7.toString(),"\"","\\" + "\"");
    //     currentfield7 = field7_.nextElement();
         currentfield8 = query.replaceString(field8_.nextElement().toString(),"'","\'").trim();
         currentfield8 = query.replaceString(query.replaceString(query.replaceString(currentfield8.toString(),"\"","\\" + "\""),"\r","\\" + "r"),"\n","\\" + "n");
    //     currentfield8 = field8_.nextElement();
         out.println("oneToMany1.addedItems.options.length ="+clength+";");
    // First Line - Displayed fields, Second Line - Count value /
         out.println("oneToMany1.addedItems.options[" + counter + "].text = \"" + currentfield1 + " - " + currentfield2 + " - " + currentfield3 + " - " + currentfield4 + " - " + currentfield7 + " - " + currentfield6 + "\";");
         out.println("oneToMany1.addedItems.options[" + counter + "].value = '" + counter + "';");
    // First Line - Displayed fields, Second Line - Count value /
         out.println("addTemp.addoneToMany1Name[" + counter + "] = \"" + currentfield1 + " - " + currentfield2 + " - " + currentfield3 + " - " + currentfield4 + " - " + currentfield7 + " - " + currentfield6 + "\";");
         out.println("addTemp.addoneToMany1Value[" + counter + "] = \"" + counter + " \";");
    //           Use first line for text boxes and memo fields, Use second line for Select Boxes /
    //     out.println("addTemp.field1oneToMany1Value[" + counter + "] = \"" +      currentfield1 + "\";");
         out.println("addTemp.field1oneToMany1Value[" + counter + "] = '" +      currentfield1 + "';");
    //     out.println("addTemp.field2oneToMany1Value[" + counter + "] = \"" +      currentfield2 + "\";");
         out.println("addTemp.field2oneToMany1Value[" + counter + "] = '" +      currentfield2 + "';");
    //     out.println("addTemp.field3oneToMany1Value[" + counter + "] = \"" +      currentfield3 + " \";");
         out.println("addTemp.field3oneToMany1Value[" + counter + "] = '" +      currentfield3 + "';");
         out.println("addTemp.field4oneToMany1Value[" + counter + "] = \"" +      currentfield4 + "\";");
    //     out.println("addTemp.field4oneToMany1Value[" + counter + "] = '" +      currentfield4 + "';");
         out.println("addTemp.field5oneToMany1Value[" + counter + "] = \"" +      currentfield5 + "\";");
    //     out.println("addTemp.field5oneToMany1Value[" + counter + "] = '" +      currentfield5 + "';");
         out.println("addTemp.field6oneToMany1Value[" + counter + "] = \"" +      currentfield6 + "\";");
    //     out.println("addTemp.field6oneToMany1Value[" + counter + "] = '" +      currentfield6 + "';");
         out.println("addTemp.field7oneToMany1Value[" + counter + "] = \"" +      currentfield7 + "\";");
    //     out.println("addTemp.field7oneToMany1Value[" + counter + "] = '" +      currentfield7 + "';");
         out.println("addTemp.field8oneToMany1Value[" + counter + "] = \"" +      currentfield8 + "\";");
    //     out.println("addTemp.field8oneToMany1Value[" + counter + "] = '" +      currentfield8 + "';");
         clength = clength + 1;
         counter = counter + 1;
    %>
    </script>
    </FORM>
    </FONT>
    <BR>
    <FORM NAME="CRMEvent">
    <input type="hidden" name=dhr_id value=<%=dhr_id %>>
    <!-- <input type="hidden" name=crmKey value=<%//=crmKey %>> -->
    <input type="hidden" name=mode value=<%=mode%>>
    <table border="0" width="100%" cellspacing="1">
    <tr>
         <%
              if (mode.equals("add")) {
              %>
    <td width="67"><input type="button" value="Next >>" name="Next" onClick="callNext(this.form, '<%=dhr_id%>', 'dssMenuChoice.jsp?item=2,1,1,7', '<%=mode%>')" ></td>
    <td width="120"></td>
    <td width="52"><input type="button" value="Save" name="Save" onClick="saveMe('add')"></td>
         <% } else if (mode.equals("edit")){
         %>
    <td width="103"><input type="button" value="<< Previous" name="Previous" onclick="history.go(-1)"></td>
    <td width="67"><input type="button" value="Next >>" name="Next" onClick="callNext(this.form, '<%=dhr_id%>', 'dssMenuChoice.jsp?item=2,1,1,7', '<%=mode%>')" ></td>
    <td width="120"></td>
         <td width="52"><input type="button" value="Save" name="Save" onClick="saveMe('edit')"></td>
         <%
         %>
    </tr>
    </table>
    <%
    }; //end else for checking session
    %>
    </FORM>
    <HR>
    Click the next button to move to the next screen without saving the current screen.<br>
    Click the save button to save the current screen and then move to the next screen.<br>
    <p>
    <form name="submitForm" action="dssACCRMEventDB.jsp" action="post">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    </form>
    <form name="validate">
    <input type="hidden" name="validation">
    </form>
    </BODY>
    </HTML>

    Hello Sir,
    I have the following code. Cuurently when I insert date in this format 1984/11/14 and also in this format 1984/11/4 and retrieve the following two dates, I could successfully populate the dates into the corresponding fields in the form. But earlier in the database, there are some records created in the following formats:
    1984/3/1 and 1987/10/4(i.e.,yyyy/mm/dd).In the form when I try to populate them into their corresponding fields I am able to populate only 1984 into the year filed in the first case and in the second case I could populate 1987 and 10 into the year and month fields. I could not populate the values of the records with single digit either in month or day fields.
    By observing the code, could you let me know what needs to be done in order to populate the previously created records with the single digit month and date.
    This is the jsp for creating and editing the records.
    <HTML>
    <HEAD>
         <TITLE> CRM Event Information </TITLE>
    <script language="JavaScript" src="../javascript/misc.js"></script>
    <script language="JavaScript">
    function saveMe(methodHow) {
         var elementNumber = CRMEvent.elements.length
         var field1 = "";
         var field2 = "";
         var field3 = "";
         var field4 = "";
         var field5 = "";
         var field6 = "";
         var field7 = "";
         var field8 = "";
         for(i=0; i < elementNumber; i++){
              submitForm.elements.name = CRMEvent.elements[i].name;
              submitForm.elements[i].value = CRMEvent.elements[i].value;
         for (k = 0; k < oneToMany1.addedItems.options.length; k++){;
              if (addTemp.field1oneToMany1Value[k] == ""){
              addTemp.field1oneToMany1Value[k] = "9999"
              if (addTemp.field2oneToMany1Value[k] == ""){
              addTemp.field2oneToMany1Value[k] = "99"
              if (addTemp.field3oneToMany1Value[k] == ""){
              addTemp.field3oneToMany1Value[k] = "99"
              if (addTemp.field4oneToMany1Value[k] == ""){
              addTemp.field4oneToMany1Value[k] = "9999"
              if (addTemp.field5oneToMany1Value[k] == ""){
              addTemp.field5oneToMany1Value[k] = " "
              if (addTemp.field6oneToMany1Value[k] == ""){
              addTemp.field6oneToMany1Value[k] = " "
              if (addTemp.field7oneToMany1Value[k] == ""){
              addTemp.field7oneToMany1Value[k] = " "
              if (addTemp.field8oneToMany1Value[k] == ""){
              addTemp.field8oneToMany1Value[k] = " "
              if (eval(oneToMany1.addedItems.options.length - 1) == k){
                   field1 = field1 + addTemp.field1oneToMany1Value[k];
                   field2 = field2 + addTemp.field2oneToMany1Value[k];
                   field3 = field3 + addTemp.field3oneToMany1Value[k];
                   field4 = field4 + addTemp.field4oneToMany1Value[k];
                   field5 = field5 + addTemp.field5oneToMany1Value[k];
                   field6 = field6 + addTemp.field6oneToMany1Value[k];
                   field7 = field7 + addTemp.field7oneToMany1Value[k];
                   field8 = field8 + addTemp.field8oneToMany1Value[k];
              }else{
                   field1 = field1 + addTemp.field1oneToMany1Value[k]+"|";
                   field2 = field2 + addTemp.field2oneToMany1Value[k]+"|";
                   field3 = field3 + addTemp.field3oneToMany1Value[k]+"|";
                   field4 = field4 + addTemp.field4oneToMany1Value[k]+"|";
                   field5 = field5 + addTemp.field5oneToMany1Value[k]+"|";
                   field6 = field6 + addTemp.field6oneToMany1Value[k]+"|";
                   field7 = field7 + addTemp.field7oneToMany1Value[k]+"|";
                   field8 = field8 + addTemp.field8oneToMany1Value[k]+"|";
              submitForm.elements[eval(i)].name      = "eventtype"
              submitForm.elements[eval(i)].value      = field1
              submitForm.elements[eval(i+1)].name      = "dd_crmstart"
              submitForm.elements[eval(i+1)].value      = field2
              submitForm.elements[eval(i+2)].name      = "mm_crmstart"
              submitForm.elements[eval(i+2)].value      = field3
              submitForm.elements[eval(i+3)].name      = "yy_crmstart"
              submitForm.elements[eval(i+3)].value      = field4
              submitForm.elements[eval(i+4)].name      = "crmremark_code"
              submitForm.elements[eval(i+4)].value      = field5
              submitForm.elements[eval(i+5)].name      = "crmperson_firstname"
              submitForm.elements[eval(i+5)].value      = field6
              submitForm.elements[eval(i+6)].name      = "crmperson_lastname"
              submitForm.elements[eval(i+6)].value      = field7
              submitForm.elements[eval(i+7)].name      = "crmnote"
              submitForm.elements[eval(i+7)].value      = field8
              submitForm.elements[eval(i+8)].name      = "mode"
              submitForm.elements[eval(i+8)].value      = methodHow
         submitForm.method="post";
         onSave(submitForm);
         function onSave(form) {
         if (!oneToMany1.addedItems.options.length == 0) {
              for (i=1;i<=oneToMany1.addedItems.options.length;i++) {
                   validate.elements[0].value = addTemp.field4oneToMany1Value[i-1];
                   if (validate.elements[0].value != '9999') {
                        if(!validateForm('validate','validation','isNumber')) {
                             alert("CRM Event Information "+ i + ": Year must be number");
                             return false;      
                        if(!validateForm('validate','validation','checkrange')) {
                             alert("CRM Event Information "+ i + ": Year out of range");
                             return false;      
              form.submit();
              return true;
    </script>
    </HEAD>
    <BODY BGCOLOR=#ffffff>
    <BASEFONT="3">
    <FONT SIZE = -1>
    <%@ page errorPage="errorPage.jsp" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="dss.*" %>
    <!-- instantiate -->
    <jsp:useBean id="pool" scope="session" class="dss.ConnectionPool" />
    <jsp:useBean id="SelectBox" scope="session" class="dss.dataMisc" />
    <jsp:useBean id="query" class="dss.QueryData" scope="session" />
    <%
    // *************check for user session *************
         session = request.getSession();
    if (session.getValue("userSession") == null) {
    response.sendRedirect (response.encodeRedirectUrl
    ("dssLogin.jsp?Origin=dssACCRMEventAddEdit.jsp"));
    else {
         String dhr_id = "";
    String mode = "";
    String eventtype = "9999";
    String crmremark_code = "";
    String crmperson = "";
    String crmnote = "";
    String crmKey = "";
         String dd_crmstart = "99";
         String mm_crmstart = "99";
    Vector tempVector = new Vector();
              Vector CRMEventVector = new Vector();
              Vector CRMEventPerson = new Vector();
              Vector monthVector = new Vector();
              Vector dayVector = new Vector();
              Vector field1Vector = new Vector();
              Vector field5Vector = new Vector();
              Vector field6Vector = new Vector();
              Vector field7Vector = new Vector();
              Vector field8Vector = new Vector();
              Vector field234Vector = new Vector();
              Vector tempDayVector = new Vector();
              Vector tempMonthVector = new Vector();
              Vector tempYearVector = new Vector();
              Connection conn = null ;
              conn = pool.getConnection() ;
              dss.Database db = new dss.Database( conn ) ;
              dhr_id = request.getParameter("dhr_id");
         try {
    mode = request.getParameter("mode");
    dhr_id = request.getParameter("dhr_id");
                   //look up Setting List
                   String strSQL = "";
                   //look up CRM Event Type List
                   strSQL ="select crmtype_code value, item display from code_crmtype order by 2" ;
                   db.setSQL( strSQL ) ;
                   db.query() ;
                   CRMEventVector = db.getSelectionList() ;
                   //look up Month List
                   db.setSQL( "select LPAD(to_char(month_code),2,'0') value , item display from code_month order by 1" ) ;
                   db.query() ;
                   monthVector = db.getSelectionList();
                   //look up Day List
                   db.setSQL( "select LPAD(to_char(day_code),2,'0') value , item display from code_day order by 1" ) ;
                   db.query() ;
                   dayVector = db.getSelectionList();
                   // ************ EDIT Mode *************
    if (mode.equals("edit"))
              //out.println("mode is edit");     
    mode = "edit";
         //***********get archaeology_pkey based on dhr_id
                        int archKey = 0;
                             strSQL = " SELECT archaeology_pkey "+
                                            " FROM archaeology "+
                                            " WHERE UPPER(dhr_id)='"+ dhr_id.toUpperCase() + "'";
                             //out.println(strSQL);
                             Statement stmt2 = conn.createStatement();
                             ResultSet rs2 = stmt2.executeQuery(strSQL);
                             while (rs2.next()) {
                                  archKey = rs2.getInt(1);
                             rs2.close();
                             stmt2.close();
                   // ********* end getting **************
              strSQL = "Select crmtype_code, crmstart, crmremark, crmperson_firstname, crmperson_lastname, crmnote "+
                   " From archaeologycrmevent " +
                   " Where archaeology_pkey =" + archKey ;
              Statement stmtSQL = conn.createStatement();
              ResultSet rset = stmtSQL.executeQuery(strSQL);
              ResultSetMetaData rsmd = rset.getMetaData() ;
                   while (rset.next()) {
                   //get values
                   field1Vector.addElement(rset.getString(1));
                   field234Vector.addElement(rset.getString(2));
                   field5Vector.addElement(rset.getString(3));
                   field6Vector.addElement(rset.getString(4));
                   field7Vector.addElement(rset.getString(5));
                   field8Vector.addElement(rset.getString(6));
                   //crmKey = rset.getString(7);
                   for (int i=0; i<field234Vector.size(); i++){
                        StringTokenizer tempDate = new StringTokenizer((String)field234Vector.elementAt(i),"/");                              
                        while (tempDate.hasMoreTokens() ) {
                             tempYearVector.addElement (     tempDate.nextToken());
                             tempMonthVector.addElement(     tempDate.nextToken());
                             tempDayVector.addElement (     tempDate.nextToken());
         } //end edit
         } //end try
         catch ( Exception e) {
              out.println ( e.toString() ) ;
         } finally {
              db.cleanup() ;
    %>
    <P>
    <FORM NAME="oneToMany1">
    <TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0 WIDTH="100%" BGCOLOR="#BBBBBB">
    <TR>
    <TD BGCOLOR="#002B82" COLSPAN=9 width="100%" height="31">
    <p align="center">
         <font face="Arial" size="2" color="#FFFFFF">
         <b>6. CRM Event Information - </b>DHR ID# : <%=dhr_id %>
         </font>
         </p>
         </td>
    </TR>
    <TR>
    <TD WIDTH=83 ALIGN="RIGHT" height="21"><FONT SIZE=-1><B>CRM Event Type: </FONT></B></TD>
    <TD WIDTH=112 height="21">
              <%
              out.println ( SelectBox.strSelectionList((Vector)CRMEventVector.elementAt(0), (Vector)CRMEventVector.elementAt(1), "field1", "", eventtype, "180" ));
              %>
    </TD>
    <TD WIDTH=89 ALIGN="RIGHT" height="21"><FONT SIZE=-1><B>Event Date: </FONT></B></TD>
    <TD WIDTH=455 height="21"><font size="1">
         <%
         out.println ("<b><font size = 1>Date: "+ SelectBox.strSelectionList((Vector)dayVector.elementAt(0), (Vector)dayVector.elementAt(1), "field2", "", dd_crmstart, "180" ));
         out.println ("Month: "+ SelectBox.strSelectionList((Vector)monthVector.elementAt(0), (Vector)monthVector.elementAt(1), "field3", "", mm_crmstart, "180" ));
         %>
    </select><B>Year:</B><input type="text" name="field4" size="4" id="Year" maxlength="4">
    </TD>
    </TR>
    <TR>
    <TD WIDTH=83 ALIGN="RIGHT" height="30"><FONT SIZE=-1><B>ID# Associated with Event:</B> </FONT></TD>
    <TD WIDTH=112 height="30">
              <input type="text" name="field5" size="15" value="<%=crmremark_code%>">
    </TD>
    <TD WIDTH=89 ALIGN="RIGHT" height="30"><FONT SIZE=-1><B>
              CRM Person/ Organization: </FONT></B></TD>
    <TD WIDTH=455 height="30">
         <% // Modified by Robert Cox 09/12/2001 - changed field size from 20 to 30 // %>     
         <TABLE BORDER="0">
              <TR><TD>
              <FONT SIZE="1"><B>First:</B></FONT><input type="text" name="field6" size="15">
              </TD>
              <TD>
         <FONT SIZE="1"><B>Last:</B></FONT><input type="text" name="field7" size="15">
              </TD>
              </TR>
         </TABLE>
    </TD>
    </TR>
    <TR>
    <TD WIDTH=83 ALIGN="RIGHT" height="79"><FONT SIZE=-1><B>CRM Event Comments: </FONT></B></TD>
    <TD COLSPAN="3" width="660" height="79">
         <TEXTAREA ROWS="5" NAME="field8" cols="65"></TEXTAREA>
         </TD>
    </TR>
    <TR>
    <TD COLSPAN="4">
         <table border="0" cellspacing="0" cellpadding="0" align="center">
         <tr>
         <td width="50" align="left"> </td>
         <td align="center">
              <input type="button" value="Add" onClick="addUpdate(1,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
              <input type="button" value="Modify" onClick="addUpdate(2,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
              <input type="button" value="Update" onClick="addUpdate(3,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
              <input type="button" value="Remove" onClick="addUpdate(4,8,oneToMany1,Array('field1','field2','field3','field4','field7','field6'))">
         </td>
         <td width="50" align="right"> </td>
         </tr>
         </table>
    </TD>
    </TR>
    <tr>
    <td width="100%" align="center" height="40" colspan="4"><select size="3" name="addedItems" style="width:100%">
    </td>
    </tr>
    </TABLE>
    <%/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //|------------------------------------------------------------------------------------------------------------------------
    //| Start code for one-to-many in edit mode /
    //|---------------------------------------------
    %>
    <script language="javascript">
    /* Check to see if the necessary arrays have been defined - if not define them */
         try{
              if (!eval("addTemp.addoneToMany1Name")){
              //alert("False");
              addTemp.addoneToMany1Name = Array();
              addTemp.addoneToMany1Value = Array();
              for(i = 1; i <= 8; i++){
                   eval("addTemp.field" + i + "oneToMany1Value = Array();");
              }else{
              //alert("already created");
    /* Catch any errors that may occur when checking if arrays are defined */
         catch(e) {
              alert(e);
    <%
    Enumeration field1_      = field1Vector.elements();
    Enumeration field2_      = tempDayVector.elements();
    Enumeration field3_      = tempMonthVector.elements();
    Enumeration field4_      = tempYearVector.elements();
    Enumeration field5_      = field5Vector.elements();
    Enumeration field6_      = field6Vector.elements();
    Enumeration field7_      = field7Vector.elements();
    Enumeration field8_      = field8Vector.elements();
         Object currentfield1 = "";
         Object currentfield2 = "";
         Object currentfield3 = "";
         Object currentfield4 = "";
         Object currentfield5 = "";
         Object currentfield6 = "";
         Object currentfield7 = "";
         Object currentfield8 = "";
         int counter = 0;
         int clength = 1;
    while (field1_.hasMoreElements()){
    //out.println("while field1_ has more elements");
    //|---------------------------------------------------------------------------------------------------------------------------
    //| define field elements - Use first and second lines if text box or memo field, Use third line if select box /
    //|------------------------------------------------------------------------------------------------------------
    //     currentfield1 = query.replaceString(field1_.nextElement().toString(),"'","\'").trim();
    //     currentfield1 = query.replaceString(currentfield1.toString(),"\"","\\" + "\"");
         currentfield1 = field1_.nextElement();
    //     currentfield2 = query.replaceString(field2_.nextElement().toString(),"'","\'").trim();
    //     currentfield2 = query.replaceString(currentfield2.toString(),"\"","\\" + "\"");
         currentfield2 = field2_.nextElement();
    //     currentfield3 = query.replaceString(field3_.nextElement().toString(),"'","\'").trim();
    //     currentfield3 = query.replaceString(currentfield3.toString(),"\"","\\" + "\"");
         currentfield3 = field3_.nextElement();
         currentfield4 = query.replaceString(field4_.nextElement().toString(),"'","\'").trim();
         currentfield4 = query.replaceString(currentfield4.toString(),"\"","\\" + "\"");
    //     currentfield4 = field4_.nextElement();
         currentfield5 = query.replaceString(field5_.nextElement().toString(),"'","\'").trim();
         currentfield5 = query.replaceString(currentfield5.toString(),"\"","\\" + "\"");
    //     currentfield5 = tempElement;
         currentfield6 = query.replaceString(field6_.nextElement().toString(),"'","\'").trim();
         currentfield6 = query.replaceString(currentfield6.toString(),"\"","\\" + "\"");
    //     currentfield6 = field6_.nextElement();
         currentfield7 = query.replaceString(field7_.nextElement().toString(),"'","\'").trim();
         currentfield7 = query.replaceString(currentfield7.toString(),"\"","\\" + "\"");
    //     currentfield7 = field7_.nextElement();
         currentfield8 = query.replaceString(field8_.nextElement().toString(),"'","\'").trim();
         currentfield8 = query.replaceString(query.replaceString(query.replaceString(currentfield8.toString(),"\"","\\" + "\""),"\r","\\" + "r"),"\n","\\" + "n");
    //     currentfield8 = field8_.nextElement();
         out.println("oneToMany1.addedItems.options.length ="+clength+";");
    // First Line - Displayed fields, Second Line - Count value /
         out.println("oneToMany1.addedItems.options[" + counter + "].text = \"" + currentfield1 + " - " + currentfield2 + " - " + currentfield3 + " - " + currentfield4 + " - " + currentfield7 + " - " + currentfield6 + "\";");
         out.println("oneToMany1.addedItems.options[" + counter + "].value = '" + counter + "';");
    // First Line - Displayed fields, Second Line - Count value /
         out.println("addTemp.addoneToMany1Name[" + counter + "] = \"" + currentfield1 + " - " + currentfield2 + " - " + currentfield3 + " - " + currentfield4 + " - " + currentfield7 + " - " + currentfield6 + "\";");
         out.println("addTemp.addoneToMany1Value[" + counter + "] = \"" + counter + " \";");
    //           Use first line for text boxes and memo fields, Use second line for Select Boxes /
    //     out.println("addTemp.field1oneToMany1Value[" + counter + "] = \"" +      currentfield1 + "\";");
         out.println("addTemp.field1oneToMany1Value[" + counter + "] = '" +      currentfield1 + "';");
    //     out.println("addTemp.field2oneToMany1Value[" + counter + "] = \"" +      currentfield2 + "\";");
         out.println("addTemp.field2oneToMany1Value[" + counter + "] = '" +      currentfield2 + "';");
    //     out.println("addTemp.field3oneToMany1Value[" + counter + "] = \"" +      currentfield3 + " \";");
         out.println("addTemp.field3oneToMany1Value[" + counter + "] = '" +      currentfield3 + "';");
         out.println("addTemp.field4oneToMany1Value[" + counter + "] = \"" +      currentfield4 + "\";");
    //     out.println("addTemp.field4oneToMany1Value[" + counter + "] = '" +      currentfield4 + "';");
         out.println("addTemp.field5oneToMany1Value[" + counter + "] = \"" +      currentfield5 + "\";");
    //     out.println("addTemp.field5oneToMany1Value[" + counter + "] = '" +      currentfield5 + "';");
         out.println("addTemp.field6oneToMany1Value[" + counter + "] = \"" +      currentfield6 + "\";");
    //     out.println("addTemp.field6oneToMany1Value[" + counter + "] = '" +      currentfield6 + "';");
         out.println("addTemp.field7oneToMany1Value[" + counter + "] = \"" +      currentfield7 + "\";");
    //     out.println("addTemp.field7oneToMany1Value[" + counter + "] = '" +      currentfield7 + "';");
         out.println("addTemp.field8oneToMany1Value[" + counter + "] = \"" +      currentfield8 + "\";");
    //     out.println("addTemp.field8oneToMany1Value[" + counter + "] = '" +      currentfield8 + "';");
         clength = clength + 1;
         counter = counter + 1;
    %>
    </script>
    </FORM>
    </FONT>
    <BR>
    <FORM NAME="CRMEvent">
    <input type="hidden" name=dhr_id value=<%=dhr_id %>>
    <!-- <input type="hidden" name=crmKey value=<%//=crmKey %>> -->
    <input type="hidden" name=mode value=<%=mode%>>
    <table border="0" width="100%" cellspacing="1">
    <tr>
         <%
              if (mode.equals("add")) {
              %>
    <td width="67"><input type="button" value="Next >>" name="Next" onClick="callNext(this.form, '<%=dhr_id%>', 'dssMenuChoice.jsp?item=2,1,1,7', '<%=mode%>')" ></td>
    <td width="120"></td>
    <td width="52"><input type="button" value="Save" name="Save" onClick="saveMe('add')"></td>
         <% } else if (mode.equals("edit")){
         %>
    <td width="103"><input type="button" value="<< Previous" name="Previous" onclick="history.go(-1)"></td>
    <td width="67"><input type="button" value="Next >>" name="Next" onClick="callNext(this.form, '<%=dhr_id%>', 'dssMenuChoice.jsp?item=2,1,1,7', '<%=mode%>')" ></td>
    <td width="120"></td>
         <td width="52"><input type="button" value="Save" name="Save" onClick="saveMe('edit')"></td>
         <%
         %>
    </tr>
    </table>
    <%
    }; //end else for checking session
    %>
    </FORM>
    <HR>
    Click the next button to move to the next screen without saving the current screen.<br>
    Click the save button to save the current screen and then move to the next screen.<br>
    <p>
    <form name="submitForm" action="dssACCRMEventDB.jsp" action="post">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    <input type="hidden" name="temporary"><input type="hidden" name="temporary"><input type="hidden" name="temporary">
    </form>
    <form name="validate">
    <input type="hidden" name="validation">
    </form>
    </BODY>
    </HTML>

  • How to enter a 24 digit number into a mysql db

    hi,
    i want enter a 24 digit number into a mysql db as a mathematically manipulatable value.
    when i configure the field as a bigint(24) it takes it as bigint(20)
    when i keep it as bigint and parsing a double value from my application
    it gives data truncation exception for the particular field.
    the whole process worked well when i change the field type to varchar(24),
    what i want is to enter 24 digit number into db as a mathematically manipulatable value.
    if anyone can assist me, pls reply,
    thanks,
    dushi

    you should ask in a mysql-forum. or at least in JDBC-forum here at sun-forums
    you could save it as varchar and parse it when selecting it into bigint in java and make your calculations...

  • Single digit modification dates, date & time corruption

    I have an iBook G4 running the latest version of Tiger, and I have a Date corruption that I can't resolve. When I click the Menu Bar to show the date, it only displays a single digit # (currently 3). When I open Date & Time in System Preferences, the calendar correctly shows the date, but the date is always listed in the box above as the 13th of the month. I can manually adjust the date in the calendar and it will stay, or have it set automatically, and it will work, but the date is always listed as the 13th of the month. Here's the confusing part: All dates in the Finder are listed as single digit #s. the modification and creation dates of everything in the finder are a number between 1 and 5. I've deleted date preference files in the user and universal libraries, and problem persists.
    Anyone have any ideas?

    Jeffrey,
    Experiment with your settings in System Preferences...>International>Formats>Dates>>Customize... and Calendar>Gregorian.
    ;~)

  • Product ID not valid. Please re-enter the 15-digit...

    My phone initially had Global Firmware but after flashing i think now it has Indian firmware.
    Now when i am trying to download the firmware, it shows 
    "Product ID not valid. Please re-enter the 15-digit IMEI code."

    double check IMEI code from Menu -> Settings -> About
    and also from label under battery, if there are / printed then don't enter those to the download page.
    IMEI code is the 15 digit code and usually starts 35
    last digit is a checksum, so if you enter an incorrect number then website will know.

  • How do I stop double spacing when hitting enter. It just seems to have started doing so itself.

    I am updating contact information within a page and when I hit enter I get double spacing. I have always gotten a single space as I need now when hitting enter I get a double space. I can find no way to correct this problem. Any ideas?
    Thanks,
    KAHSR

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/main.dwt" codeOutsideHTMLIsLocked="false" -->
    <head><META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Motorcyclists for Jesus Ministries</title>
    <!-- InstanceEndEditable --><link href="css/main.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    body {
    background-color: #EFEFEF;
    background-image: url(greydb.JPG);
    -->
    </style>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    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_callJS(jsStr) { //v2.0
      return eval(jsStr)
    //-->
    </script>
    <!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
    </head>
    <body onLoad="MM_preloadImages('top_nav/top_nav_r2_c2_f2.gif','top_nav/top_nav_r2_c3_f2.gif','t op_nav/top_nav_r2_c4_f2.gif','top_nav/top_nav_r2_c5_f2.gif','top_nav/top_nav_r2_c6_f2.gif' ,'top_nav_lower/top_nav_lower_r2_c1_f2.jpg','top_nav_lower/top_nav_lower_r2_c2_f2.jpg','to p_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower/top_nav_lower_r4_c4_f2.jpg','top_na v_lower/top_nav_lower_r2_c8_f2.jpg','top_nav_lower/top_nav_lower_r3_c4_f2.jpg','top_nav_lo wer/top_nav_lower_r3_c6_f2.jpg','left_nav/IntButtonOver.gif','left_nav/NewsboyOver.gif','l eft_nav/MembershipOver.gif','left_nav/ShopCartOve.gif','left_nav/MemberPageOver.jpg','righ t_nav/Rideplan_Over.gif','right_nav/History_Over.gif','right_nav/Resources_Over.gif')">
    <div align="center">
      <a name="top"></a>
      <table width="1000" cellspacing="0" cellpadding="0">
        <tr>
          <td colspan="5"><table border="0" cellpadding="0" cellspacing="0" width="1012">
            <!-- fwtable fwsrc="top_nav.png" fwbase="top_nav.gif" fwstyle="Dreamweaver" fwdocid = "431710440" fwnested="0" -->
            <tr>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="381" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="99" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="99" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="152" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="98" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="98" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="84" height="1" border="0"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td colspan="8"><img src="top_nav/top_nav_r1_c1.gif" alt="Motorcyclists for Jesus Ministries" name="top_nav_r1_c1" width="1012" height="60" border="0" usemap="#top_nav_r1_c1Map" title="Motorcyclists for Jesus Ministries"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="60" border="0"></td>
            </tr>
            <tr>
              <td rowspan="2"><img src="top_nav/top_nav_r2_c1.gif" alt="Motorcyclists for Jesus Ministries" name="top_nav_r2_c1" width="381" height="41" border="0" title="Motorcyclists for Jesus Ministries"></td>
              <td><a href="index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c2','','top_nav/top_nav_r2_c2_f2.gif',1);"><img name="top_nav_r2_c2" src="top_nav/top_nav_r2_c2.gif" width="99" height="40" border="0" title="Motorcyclists for Jesus Ministries"></a></td>
              <td><a href="events.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c3','','top_nav/top_nav_r2_c3_f2.gif',1);"><img name="top_nav_r2_c3" src="top_nav/top_nav_r2_c3.gif" width="99" height="40" border="0" title="Motorcyclists for Jesus Ministries Events"></a></td>
              <td><a href="spokenword.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c4','','top_nav/top_nav_r2_c4_f2.gif',1);"><img name="top_nav_r2_c4" src="top_nav/top_nav_r2_c4.gif" width="152" height="40" border="0" title="Motorcyclists for Jesus Ministries Newsletter"></a></td>
              <td><a href="links.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c5','','top_nav/top_nav_r2_c5_f2.gif',1);"><img name="top_nav_r2_c5" src="top_nav/top_nav_r2_c5.gif" width="98" height="40" border="0" title="Motorcyclists for Jesus Ministries Teams and Links"></a></td>
              <td colspan="2"><a href="contact.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_r2_c6','','top_nav/top_nav_r2_c6_f2.gif',1);"><img name="top_nav_r2_c6" src="top_nav/top_nav_r2_c6.gif" width="99" height="40" border="0" title="Contact Motorcyclists for Jesus Ministries"></a></td>
              <td rowspan="2"><img name="top_nav_r2_c8" src="top_nav/top_nav_r2_c8.gif" width="84" height="41" border="0" title="Motorcyclists for Jesus Ministries"></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="40" border="0"></td>
            </tr>
            <tr>
              <td colspan="6"><img name="top_nav_r3_c2" src="top_nav/top_nav_r3_c2.gif" width="547" height="1" border="0" title=""></td>
              <td><img src="top_nav/spacer.gif" title="" name="undefined_2" width="1" height="1" border="0"></td>
            </tr>
          </table></td>
        </tr>
        <tr>
          <td colspan="5"><table border="0" cellpadding="0" cellspacing="0" width="1011">
            <!-- fwtable fwsrc="top_nav_lower.png" fwbase="top_nav_lower.jpg" fwstyle="Dreamweaver" fwdocid = "877594449" fwnested="0" -->
            <tr>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="227" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="2" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="227" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="225" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="3" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="204" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="120" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td colspan="10"><img src="top_nav_lower/top_nav_lower_r1_c1.jpg" alt="Motorcyclists for Jesus Ministries" name="top_nav_lower_r1_c1" width="1011" height="179" border="0" usemap="#top_nav_lower_r1_c1Map"></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="179" border="0"></td>
            </tr>
            <tr>
              <td rowspan="3"><a href="prayer_requests.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c1','','top_nav_lower/top_nav_lower_r2_c1_f2. jpg',1);"><img name="top_nav_lower_r2_c1" src="top_nav_lower/top_nav_lower_r2_c1.jpg" width="227" height="58" border="0" alt=""></a></td>
              <td colspan="3"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c2','','top_nav_lower/top_nav_lower_r2_c2_f2. jpg','top_nav_lower_r3_c2','','top_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower_r4 _c4','','top_nav_lower/top_nav_lower_r4_c4_f2.jpg',1);"><img name="top_nav_lower_r2_c2" src="top_nav_lower/top_nav_lower_r2_c2.jpg" width="230" height="1" border="0" alt=""></a></td>
              <td colspan="3"><img name="top_nav_lower_r2_c5" src="top_nav_lower/top_nav_lower_r2_c5.jpg" width="432" height="1" border="0" alt=""></td>
              <td rowspan="2" colspan="2"><a href="back_patch.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c8','','top_nav_lower/top_nav_lower_r2_c8_f2. jpg',1);"><img name="top_nav_lower_r2_c8" src="top_nav_lower/top_nav_lower_r2_c8.jpg" width="121" height="57" border="0" alt=""></a></td>
              <td rowspan="4"><img name="top_nav_lower_r2_c10" src="top_nav_lower/top_nav_lower_r2_c10.jpg" width="1" height="69" border="0" alt=""></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td rowspan="2" colspan="2"><a href="mission_statement.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c2','','top_nav_lower/top_nav_lower_r2_c2_f2. jpg','top_nav_lower_r3_c2','','top_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower_r4 _c4','','top_nav_lower/top_nav_lower_r4_c4_f2.jpg',1);"><img name="top_nav_lower_r3_c2" src="top_nav_lower/top_nav_lower_r3_c2.jpg" width="229" height="57" border="0" alt=""></a></td>
              <td colspan="2"><a href="photos.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r3_c4','','top_nav_lower/top_nav_lower_r3_c4_f2. jpg',1);"><img name="top_nav_lower_r3_c4" src="top_nav_lower/top_nav_lower_r3_c4.jpg" width="226" height="56" border="0" alt=""></a></td>
              <td colspan="2"><a href="events.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r3_c6','','top_nav_lower/top_nav_lower_r3_c6_f2. jpg',1);"><img name="top_nav_lower_r3_c6" src="top_nav_lower/top_nav_lower_r3_c6.jpg" width="207" height="56" border="0" alt=""></a></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="56" border="0"></td>
            </tr>
            <tr>
              <td><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('top_nav_lower_r2_c2','','top_nav_lower/top_nav_lower_r2_c2_f2. jpg','top_nav_lower_r3_c2','','top_nav_lower/top_nav_lower_r3_c2_f2.jpg','top_nav_lower_r4 _c4','','top_nav_lower/top_nav_lower_r4_c4_f2.jpg',1);"><img name="top_nav_lower_r4_c4" src="top_nav_lower/top_nav_lower_r4_c4.jpg" width="1" height="1" border="0" alt=""></a></td>
              <td rowspan="2" colspan="5"><img name="top_nav_lower_r4_c5" src="top_nav_lower/top_nav_lower_r4_c5_fade.jpg" width="553" height="12" border="0" alt=""></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0"></td>
            </tr>
            <tr>
              <td colspan="4"><img name="top_nav_lower_r5_c1" src="top_nav_lower/top_nav_lower_r5_c1_fade.jpg" width="457" height="11" border="0" alt=""></td>
              <td><img src="top_nav_lower/spacer.gif" alt="" name="undefined_3" width="1" height="11" border="0"></td>
            </tr>
          </table></td>
        </tr>
        <tr align="left" valign="top">
          <td bgcolor="#EFEFEF"><div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left"></div>        <div align="left">
            <table width="1010" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td width="227" align="left" valign="top" bgcolor="#295789"><p><a href="international.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('International','','left_nav/IntButtonOver.gif',1)"><img src="left_nav/IntButtonUp.gif" alt="International Page" name="International" width="227" height="80" id="International" title "MJM International align="baseline" border="0""></a><a href="newsletter.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Newsletter','','left_nav/NewsboyOver.gif',1)"><img src="left_nav/NewsboyUp.gif" alt="TEAM Voice Newsletter" width="227" height="80" id="Newsletter" align="baseline" border="0"><br>
                </a><a href="goodies.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('ShoppingCart','','left_nav/ShopCartOve.gif',1)"><img src="left_nav/ShopCartUp.gif" alt="Shopping Cart" width="227" height="80" id="ShoppingCart" align="baseline" border="0"><br>
                </a><a href="members.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Member Page','','left_nav/MemberPageOver.jpg',1)"><img src="left_nav/MemberPageUp.jpg" alt="Members Only Page" width="227" height="80" id="Member Page" border=0></a></p>
                  <p> </p>
                  <p> </p></td>
                <td width="11" bgcolor="#EFEFEF"><img src="graphics/spacer10x10.gif" width="10" height="10"></td>
                <td width="640" align="left" valign="top" bgcolor="#EFEFEF"><!-- InstanceBeginEditable name="body" -->
                  <div align="left" class="body_text">
                    <table width="100%" border="0">
                      <tr>
                        <td width="33%"><span class="page_subtitle1"><img src="graphics/links.jpg" alt="Motorcyclists for Jesus Ministries Prayer Requests" width="200" height="135"></span></td>
                        <td width="67%"><p class="page_title">Teams &amp; Links</p>
                          <p class="page_title"><span class="body_text">To contact any TEAM below that does not yet have contact information, or a website listed, </span></p>
                          <p class="page_title"><span class="body_text">please <a href="mailto:[email protected]?subject=MJM Teams & Links">e-mail us</a></span><a href="mailto:[email protected]?subject=MJM Teams & Links"></a></p></td>
                      </tr>
                  </table>
                    <table width="640" cellpadding="0" cellspacing="0">
                      <tr>
                        <td width="33%" valign="top"><p class="page_subtitle1"><em> <strong>INDIANA: </strong></em></p>
                          <p> <strong>NEW LIFE RIDERS</strong><br>
                            Indianapolis, IN <br>
                            Bob Dillon <br>
                            317-839-8572<br>
                            <a href="Bob" _mce_href="mailto:www.newliferiders.com">Bob">mailto:www.newliferiders.com">Bob Dillon</a><a href="http://www.newliferiders.com" target="_blank" class="links"></a></p>
                          <p class="page_subtitle1"><em><strong>KANSAS: </strong></em></p>
                          <p> <strong>SOUL SEEKERS</strong><br>
                            Minneola, KS<br>
                            Tom Yost<br>
                            <a href="Tom" _mce_href="mailto:[email protected]">Tom">mailto:[email protected]">Tom Yost</a><a href="mailto:[email protected]" class="links"></a><br>
                            <br>
                            <em class="page_subtitle1"> <strong>KENTUCKY: </strong></em></p>
                          <p> <strong>JOY RIDERS </strong><br>
                            Louisville, KY<br>
                          </p>
                          <p><strong>SONSHINE RIDERS</strong><br>
                            Glasgow, KY <br>
                            <a href="Esther" _mce_href="mailto:[email protected]">Esther">mailto:[email protected]">Esth er Medina</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p><strong>TEAM IRON ANGELS</strong><br>
                            Finchville, KY <br>
                            Morris Lyons <br>
                            1-502-321-3147 <br>
                            <a href="mailto:[email protected] ">Morris Lyons</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p class="page_subtitle1"><em><strong>NEW JERSEY: </strong></em></p>
                          <p> <strong>INSURRECTA NEX</strong><br>
                            Mt. Holly, NJ <br>
                            George Krail <br>
                            609-937-9429 <br>
                            <a href="George" _mce_href="mailto:[email protected]">George">mailto:[email protected]">George Krail</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p class="page_subtitle1"> </p>
                          <p> </p></td>
                        <td width="37%" valign="top"><p class="page_subtitle1"><em><strong>NEW YORK: </strong></em></p>
                          <p> <strong>RAPTURE BOUND</strong><br>
                            Port Jervis, NY<br>
                            George Tamburino <br>
      <a href="George" _mce_href="mailto:[email protected]">George">mailto:[email protected]">George Tamburino</a><a href="mailto:[email protected]%20" class="links"></a></p>
                          <p><strong>RAPTURE RYDERS</strong><br>
                            Schroon Lake, New York <br>
                            Ken Hedden Sr.<br>
                            1-518-532-7002 <br>
                            <a href="Ken" _mce_href="mailto:[email protected]">Ken">mailto:[email protected]">Ken Hedden Sr.</a></p>
                          <p class="page_subtitle1"><em><strong>OHIO: </strong></em></p>
                          <p> <strong>DAYTON BELIEVERS</strong><br>
                            Dayton, OH <br>
                            Santo Landerer II. <br>
                            937-901-5514<br>
                            <a href="Santo" _mce_href="mailto:[email protected]">Santo">mailto:[email protected]">Santo Landerer ll.</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p><br>
                            <em class="page_subtitle1"> <strong>OKLAHOMA: </strong></em></p>
                          <p> <strong>SAMARITAN RIDERS</strong><br>
                            Oklahoma City, OK <br>
                            James &ldquo;Sonny&rdquo; Ticer <br>
                            1-405-496-9882 </p>
                          <p class="page_subtitle1"><em><strong>OREGON: </strong></em></p>
                          <p> <strong>HOLY SOLDIERS</strong><br>
                            Grants Pass, OR. <br>
                            Steve McMahill <br>
                            <a href="Steve" _mce_href="mailto:[email protected]">Steve">mailto:[email protected]">Steve McMahill</a><a href="mailto:[email protected]" class="links"></a></p>
                          <p class="page_subtitle1"><em><strong>PENNSYLVANIA: </strong></em></p>
                          <p> <strong>CALVARY RIDERS </strong><a href="http://www.mjmcalvaryriders.com/"><br>
                            </a>Feasterville , PA <a href="http://www.mjmcalvvaryriders.com"><br>
                              </a>Doug McDonald<br>
                            <a href="Doug" _mce_href="mailto:[email protected]">Doug">mailto:[email protected]">Do ug McDonald</a><br>
                            <a href="http://www.mjmcalvaryriders.com/" target="_blank" class="links"></a><a href="Calvary" _mce_href="https://sites.google.com/site/mjmcalvaryriders">Calvary">https://sites.google. com/site/mjmcalvaryriders">Calvary Riders</a><a href="https://sites.google.com/site/mjmcalvaryriders" target="_blank"></a></p>
                          <p><br>                       
                            <br>
                          </p></td>
                        <td width="30%" valign="top"><p class="page_subtitle1"><a href="http://www.pagospelriders.com" target="_blank"> <br>
                          </a><a href="mailto:www.gospelriders.commailto:www.gospelriders.com"></a></p>
                          <p><strong>GOSPEL RIDERS </strong><br>
    Boyertown, PA <br>
    <a href="Fred" _mce_href="mailto:[email protected]">Fred">mailto:[email protected]">Fred McClincy</a></p>
                          <p>1-215-234-8611</p>
                          <p><a href="www.gospelriders.com" target="new">www.gospelriders.com</a></p>
                          <p><strong>MASON DIXON GOSPEL RIDERS</strong><br>
                            Fayetteville, PA <br>
                            Ron King <a href="mailto:[email protected]?subject=Contact%20through%20go2mjm.com"> <br></a><a href="Ron" _mce_href="mailto:[email protected]">Ron">mailto:[email protected]">Ron King</a></p>
                          <p><strong>RIDERS FOR THE SON</strong><br>
                            Glenside, PA<br>
                            <a href="Curtis" _mce_href="mailto:[email protected]">Curtis">mailto:[email protected]">Curtis Jones</a><br>
                            <a href="www.mjmridersfortheson.com" target="new">www.mjmridersfortheson.com</a></p>
                          <p><strong>ROLLING SAINTS</strong><br>
                            Gettysburg, PA <br>
                            Dan Shinners <br>
                            717-634-6682 <br>
                            <a href="Rolling" _mce_href="mailto:[email protected]">Rolling">mailto:[email protected]" >Rolling Saints</a><a href="mailto:[email protected]" class="links"></a><br>
                            <a href="http://www.mjm-rollingsaints.com" target="_blank" class="links">www.mjm-rollingsaints.com</a></p>
                          <p><em><strong>VERMONT: </strong></em></p>
                          <p> <strong>VERMONT CHRISTIAN RIDERS</strong><br>
                            Pittsford, VT <br>
                            <a href="Phil" _mce_href="mailto:[email protected]">Phil">mailto:[email protected]">Phil Guica</a><a href="http://www.ourchurch.com/member/b/BikersForJesus" target="_blank"> <br>
                              <span class="links">www.ourchurch.com/</span></a></p>
                          <p> <em class="page_subtitle1"><strong>VIRGINIA: </strong></em></p>
                          <p> <strong>KING&rsquo;S RIDERS</strong><br>
                            Richmond, VA<br>
                            Gary Cobb 1-804-270-5548 </p></td>
                      </tr>
          </table>
                    <p class="page_subtitle1"> </p>
                  </div>
                <!-- InstanceEndEditable --></td>
                <td width="11" align="left" valign="top" bgcolor="#EFEFEF"> </td>
                <td width="120" align="left" valign="top" bgcolor="#5990D0"><p><a href="membership.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Membership','','left_nav/MembershipOver.gif',1)"><img src="left_nav/MembershipUp.gif" alt="Come Ride with Us" width="120" height="180" id="Membership" border="0"></a><a href="rideplan.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Ride Plan','','right_nav/Rideplan_Over.gif',1)"><img src="right_nav/Rideplan_Up.gif" alt="Where will your ride take you?" width="120" height="40" id="Ride Plan" border=0><br>
                  </a><a href="history.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('MJM History','','right_nav/History_Over.gif',1)"><img src="right_nav/History_Up.gif" alt="How it all started" width="120" height="40" id="MJM History" border=0></a><a href="resources.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Resources','','right_nav/Resources_Over.gif',1)"><img src="right_nav/Resources_Up.gif" alt="Our favorite places to find things" width="120" height="40" id="Resources" border=0></a></p>
                  <p> </p></td>
              </tr>
            </table>
                   <br>
              <table width="100%"  cellspacing="0" cellpadding="0">
                <tr>
                  <td width="28%" bgcolor="#EFEFEF"> </td>
                  <td width="2%" bgcolor="#EFEFEF"><span class="body_text"><A HREF="#top"><IMG BORDER="0" SRC="graphics/arrow1.jpg" WIDTH="14" HEIGHT="8" title="go to the top of this page"></A></span></td>
                  <td width="70%" bgcolor="#EFEFEF" class="body_text"> <a href="#" onClick="MM_callJS('this.history.back()')"><IMG SRC="graphics/arrow.jpg" alt="Go back one page" WIDTH="8" HEIGHT="14" BORDER="0" title="go back one page"></a></td>
                </tr>
              </table>
          </div></td>
        </tr>
        <tr>
          <td colspan="5"><img src="graphics/footer.jpg" title="Motorcyclists for Jesus Ministries" width="1011" height="85" border="0" usemap="#Map"></td>
        </tr>
      </table>
    </div>
    <p>
      <map name="Map">
        <area shape="rect" coords="100,44,247,54" href="http://www.go2mjm.com" title="Motorcyclists for Jesus Ministries">
        <area shape="rect" coords="779,49,930,59" href="http://www.go2mjm.com" title="Motorcyclists for Jesus Ministries">
      </map>
      <map name="top_nav_r1_c1Map">
        <area shape="rect" coords="355,6,1005,17" href="#">
      </map>
    </p>
    <p>
      <map name="top_nav_lower_r1_c1Map">
        <area shape="rect" coords="593,112,663,132" href="helping_hand.html">
      </map>
    </p>
    </body>
    <!-- InstanceEnd --></html>

  • When I enter some value in TBM Generator, everything is disabled.

    Hello,
    Very Good Afternoon!
    I had created a Table Maintenance generator for a Z-table with a field : MANDT and PSTYV.
    When I enter an invalid entry it is throwing an error message perfectly. But, when I try to remove that entry from the table it is not letting me to do that. All the functions are getting disabled.
    This is the logic that I had written in the validation:
    MODULE ZORD_ITM_VALIDATE INPUT.
    DATA : L_PSTYV TYPE PSTYV,
            L_MSG TYPE STRING.
    IF ZORD_TYPE-PSTYV IS INITIAL.
        CLEAR L_MSG.
      MESSAGE 'Enter item category Type' TYPE 'E'.
    ELSEIF NOT ZORD_TYPE-PSTYV IS initial.
    SELECT SINGLE PSTYV FROM VBAP INTO L_PSTYV
                             WHERE PSTYV = ZORD_TYPE-PSTYV.
    IF SY-SUBRC <> 0.
    CLEAR L_MSG.
    CONCATENATE 'Item category' ZORD_TYPE-PSTYV 'does not exist in VBAP(Check entry)' INTO L_MSG
                                                                  SEPARATED BY SPACE.
    MESSAGE L_MSG type 'E'.
    ENDIF.
    ENDIF.
    These are the modules generated :
    PROCESS BEFORE OUTPUT.
    MODULE LISTE_INITIALISIEREN.
    LOOP AT EXTRACT WITH CONTROL
      TCTRL_ZORD_TYPE CURSOR NEXTLINE.
       MODULE LISTE_SHOW_LISTE.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE LISTE_EXIT_COMMAND AT EXIT-COMMAND.
    MODULE LISTE_BEFORE_LOOP.
    LOOP AT EXTRACT.
       MODULE LISTE_INIT_WORKAREA.
       CHAIN.
        FIELD ZORD_TYPE-PSTYV .
        MODULE SET_UPDATE_FLAG ON CHAIN-REQUEST.
       ENDCHAIN.
       FIELD VIM_MARKED MODULE LISTE_MARK_CHECKBOX.
       CHAIN.
       FIELD ZORD_TYPE-PSTYV .
    ****Added By developer.
    MODULE ZORD_ITM_VALIDATE. ->"I had written my code in this module. 
        MODULE LISTE_UPDATE_LISTE.
       ENDCHAIN.
    ENDLOOP.
    MODULE LISTE_AFTER_LOOP.
    Any suggestions would be appreciated............
    Regards
    Kittu

    Hi Kittu,
    View maintenance has its own logic of performing validations, and accordingly changing the display of the screens (freezing/pop-up/warnings, etc). These are based on the Checks/Foreign Keys defined in the DDIC itself.
    If apart from this you wish to do any additional validation, you can very well do that. But please refrain from using a message type 'E' within your code. By using that, you will be freezing the control of the View Maintenance program and the screen will freeze.
    Instead, please use a Message type as 'W'. This will help you in identifying the error, but still maintain the screen as changeable, so that user can modify entered value.
    Cheers
    Rekha

  • Please re-enter the 10 digit number message HH2

    Earlier today I switched from a family plan over to a pre-paid monthly plan.  Now, when calling in an extended network area I get a message that says, "Please re-enter the ten digit number..." anytime I try to call anyone.  Re-entering the ten digit number by hand does nothing, the message just repeats itself.
    I've read other posts that theorize that this has something to do with usage controls.  I tried to sign into myverizonwireless but apparently my account no longer exists, and it doesn't allow me to register for a new account either.
    Dan

    I'm having the same problem, which just started today, and it's been okay since we've been on vacation.  The new prepaid monthly plan just started up again, so what is the problem? 

  • Have the developers considered randomizing the numbers for the passcode?  It is easy to watch the pattern when someone enters their passcode.  However, if the numbers appeared is a random order each time, it would enhance the security feature even more.

    Have the developers considered randomizing the numbers for the passcode?  It is easy to watch the pattern when someone enters their passcode.  However, if the numbers appeared is a random order each time, it would enhance the security feature even more.  Personally, I would prefer this option with security in mind.

    He slightly beat you Meg, and I'm in the same boat with you. If I used a passcode I believe I would go with the feature to use a longer alphanumeric passcode rather than a 4 digit number even with the random code entry.
    And of course if Apple did put this feature in they need to make it an option or we'll see lots of posts wanting to know how to get rid of it.

  • When i login on game center it say enter your birth date when i enter it and i perss next the birth day will come again and again what should do

    when i login on game center it say enter your birth date when i enter it and i perss next the birth day will come again and again what should do

    Start a game with Game Center and go from there.

  • Hi. I am using a time capsule for few PC s. I have made 5 different account to access time capsule. but in windows when i enter account name and password for one account, i cannot access other accounts, because windows saves username

    Hi. I am using a time capsule for few PC s. I have made 5 different account to access time capsule. but in windows when I enter account name and password for one account, i cannot access other accounts, because windows saves username. how can i prevent this from happenning. I really need to access all my accounts and dont want it to save automaticlly.

    Why have 5 accounts if you need to access all of them.. just have one account?
    Sorry I cannot follow why you would even use the PC to control the Time Capsule. Apple have not kept the Windows version of the utility up to date.. so they keep making it harder and harder to run windows with apple routers.

  • TS3899 When sending email from the Mail App or through other Apps, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design.

    When sending email from the Mail App or through other Apps on my iPad, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design, especially since I had already checked the From: address.
    iPad 4 running iOS 8.1.3

    3rd party email addresses have to be deleted on every synmced mac product, although I have 1and1.co.uk and my imac updatetes the mails in that account from mac mail.
    Yahoo etc is a 2 step deleting process but good to get your emails pushed when on the go.
    LJ
    http://www.facebook.com/The.Cowboy.Party

Maybe you are looking for