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 strongm 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. bongmarley

    Menu dropdown behind select box

    The z index does not work. This only happens with a select box. No other input item such as textbox, etc. They always appear behind the menu. Only the select box appears over top of it.
  2. bongmarley

    Menu dropdown behind select box

    When I click on my menu bar and it drops down the list if a select box is on the screen near it the menu list falls behind the select box. Is there any way to make it so the menu will go over the select box so that I can see all the menu items
  3. bongmarley

    Large update problem

    I am trying to run a page where i make a large update to an sql server database. If I run the update but only update a few records aprox 15 or so it will let me update. However if i try to update a large amount of records 20 or more it gives me this error Microsoft OLE DB Provider for ODBC...
  4. bongmarley

    Large update to sql server

    I am trying to run a page where i make a large update to an sql server database. If I run the update but only update a few records aprox 15 or so it will let me update. However if i try to update a large amount of records 20 or more it gives me this error Microsoft OLE DB Provider for ODBC...
  5. bongmarley

    Timeout Expired

    Here is the update code: con.execute("Update DaysTaughtAndClaimed set recdate='"&request("recdate"&getrec("id"))&"',Reason='"&Replace(NewReason("Description"),"'","''")&"'...
  6. bongmarley

    Timeout Expired

    Also on the page I retrieve names out of a multiple select box and run a report on them. if I select one or two it works but if i select a large amount I get the timeout error.
  7. bongmarley

    Timeout Expired

    I can run this page and it works when I connect to an acess database, with the same code(of course the small changes like the connection string etc.) but it wont run when I connect to sql server.
  8. bongmarley

    Timeout Expired

    database is on same machine, I am not using DSN here is my connection string Con.ConnectionString = "Driver={SQL Server}; SERVER=test1;UID=; PWD=; DATABASE=test"
  9. bongmarley

    Timeout Expired

    I tried using Server.ScriptTimeout[=NumSeconds] but this does not solve my problem.
  10. bongmarley

    Timeout Expired

    I am connecting to a sql database and when I run a page I get this error. Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E31) [Microsoft][ODBC SQL Server Driver]Timeout expired How can I change the length of the timeout.
  11. bongmarley

    url length

    I am trying to pass the variable from a multiple select box to a print page. However I am not getting all of the variable because it is getting cut off. How can i pass avariable through the url that is large.
  12. bongmarley

    Identity Question

    I was wondering if there is a way to set the field I am using as my primary key with the identity seed back to 1. I put in 10 records as a test and then deleted them. Now when I put in a new record it starts at 11. is there any way to reset this back to 1.
  13. bongmarley

    Comparing dates

    I want to see if one date is greater then the other. Can I just put if date1 > date2 or do I have to have a function to go along with this.
  14. bongmarley

    Consecutive Days

    I am trying to create a report for work attendence but i want to converger consecutive records. Instead of this From To #ofDays 01/01/03 01/01/03 1 01/02/03 01/02/03 1 I want this From To #ofDays 01/01/03 01/02/03 2 Is...
  15. bongmarley

    Makes No Sense

    I have tried that and it does not work either
  16. bongmarley

    Makes No Sense

    I response.write it and get value of nothing for request("theDate"). I could put the two sql statements one under the other. The first brings me a request("theDate") as a date and the second brings me nothing. Does the first one erase the variable of any value.
  17. bongmarley

    Makes No Sense

    I have two record sets with almost identicle syntax one works and one doesn't. I have this first set getPercentage=con.execute("select * from Global where recDate="&request("theDATE")&"and school='"&session("account") &"' and...
  18. bongmarley

    How do you sort records?

    In SQL Server how do you sort records. If I click on my id field and highlight the whole field how do I sort it either descending or ascending. The button to do this is always greyed out like it is unactive.
  19. bongmarley

    Id there an autonumber datatype in SQL Server?

    I am creating the table by just importing existing tables fromm Access. Because I did not create the table only import it in can I change a field to set an Identity in design view or can this only be done by creating your own table.
  20. bongmarley

    Id there an autonumber datatype in SQL Server?

    I am creating database in SQL Server by importing an existing database from Access. I want to be able to still have ID as an autonumber. Is this possible?

Part and Inventory Search

Back
Top