Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kaycee79

    Lining up Text Boxes

    thanks very much
  2. kaycee79

    Lining up Text Boxes

    I am trying to line up the text boxes on my screen, but i am not sure how to do this can anyone help? Thanks in Advance <!--#include file = "clock.inc"--> <HTML> <HEAD> <TITLE>Login</TITLE> </HEAD> <BODY> <BODY BGCOLOR="#99CCFF"> <FONT FACE="Arial"> <DIV ID="content"> <INPUT TYPE="button"...
  3. kaycee79

    List Box problems

    thanks for that, it works, but the problem is that then there is no records in the database, and the message appears stating that there are no events to report on, the date and report input boxes are still there, and i dont want this, i want just the message and no other input boxes or buttons...
  4. kaycee79

    List Box problems

    thanks, ill try that out
  5. kaycee79

    List Box problems

    List Box I have the code below, which is supposed to populate a list box with records from the database; if there are not records, then a message is produced, this works fine, but when there is multiple records in the database, it has a list box for each seperate record. I can not seem to...
  6. kaycee79

    Adding a record from a list box to a DB

    I am trying to add a record from a list box to the database, but an error message appears; Error Type: ADODB.Recordset (0x800A0CC1) Item cannot be found in the collection corresponding to the requested name or ordinal. /new/addreporttodb.asp, line 22 Line 22 is objRS.Fields("EventName") =...
  7. kaycee79

    Enlarging the Calendar

    I have this javascript calender, and on my page, i have a function of being able to enlarge the text to double, but the calender does not change size, it stays the same, how can i make it change? Thanks in advance i can provide the code for the calendar if required. <% If...
  8. kaycee79

    Empty Recordset

    thanks for that, i think i have sorted out the problem
  9. kaycee79

    Empty Recordset

    ...and i am getting this error message now Error Type: ADODB.Recordset (0x800A0BB9) Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. /new/test.asp, line 40 Line 40 is objRS.Open &quot;SELECT * FROM Events WHERE [date] < Now()&quot...
  10. kaycee79

    Deleting Records

    thanks, it worked
  11. kaycee79

    Deleting Records

    Delete user I am trying to create a way to delete a user from the database, i have adapted some code from a book, but i am getting an error message; Error Type: ADODB.Recordset (0x800A0BB9) Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another...
  12. kaycee79

    Empty Recordset

    i am really sorry, but i am not able to do this, it is possible to show me on my code please?
  13. kaycee79

    Empty Recordset

    ...</p> <p> <font face=&quot;Arial&quot;> <BR> <% Dim objRS Set objRS = Server.CreateObject(&quot;ADODB.Recordset&quot;) objRS.Open &quot;SELECT * FROM Events WHERE [date] < Now()&quot;, strConnect, 3,3 If objRs.EOF Then Response.Write(&quot;There are no Events to report on&quot;) else Event...
  14. kaycee79

    Empty Recordset

    ...</p> <p> <font face=&quot;Arial&quot;> <BR> <% Dim objRS Set objRS = Server.CreateObject(&quot;ADODB.Recordset&quot;) objRS.Open &quot;SELECT * FROM Events WHERE [date] < Now()&quot;, strConnect, 3,3 If objRs.EOF Then Response.Write(&quot;There are no Events to report on&quot;) Else...
  15. kaycee79

    Empty Recordset

    ...</p> <p> <font face=&quot;Arial&quot;> <BR> <% Dim objRS Set objRS = Server.CreateObject(&quot;ADODB.Recordset&quot;) objRS.Open &quot;SELECT * FROM Events WHERE [date] < Now()&quot;, strConnect, 3,3 objRS.EOF If not objRS.EOF Then Response.Write &quot;There are no Events to Report...
  16. kaycee79

    Empty Recordset

    ...</p> <p> <font face=&quot;Arial&quot;> <BR> <% Dim objRS Set objRS = Server.CreateObject(&quot;ADODB.Recordset&quot;) objRS.Open &quot;SELECT * FROM Events WHERE [date] < Now()&quot;, strConnect, 3,3 objRS.MoveFirst %>Event Name </font> </p> <FORM ACTION = &quot;addreporttodb.asp&quot...
  17. kaycee79

    Registration Error

    ...Email address and validate if((theName==&quot;txtEmailAddress&quot;)&&(!formValidateEmail(theValue))) { msg+=&quot;\n* &quot;+theName.substring(3,theName.length); blank=true; } // check the other fields but ignore txtAddress2...
  18. kaycee79

    Table Problems

    thanks for those ideas, i will look into them. how would i use DHTML to animate the horizontal menu by having scrolling buttons?
  19. kaycee79

    Table Problems

    thanks for that, what would be a better way of doing this then?
  20. kaycee79

    Table Problems

    When enlarging the text on the screen via the button 'Change Text Size', the menu which is in a table requires the user to scroll left to right to view it and this is something that i do not want. Is there a way around this? Thanks in advance This is the code that i am using <%...

Part and Inventory Search

Back
Top