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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aspnetuser

  1. aspnetuser

    Error converting data type varchar to numeric.

    onpnt It was working fine until I changed the hours data type to numeric and the check box fields stayed int is their anything else you could help me with?
  2. aspnetuser

    Error converting data type varchar to numeric.

    I took them off and get : Incorrect syntax near the keyword 'where'.
  3. aspnetuser

    Error converting data type varchar to numeric.

    sql = "update qryEnterHours set Hours = '" & hours & "' where Username = '" & Username & "' and PayDates = '" & PayDates & "'" set rs = DbConn.Execute(sql) set rs = nothing he is where it fails? how do i fix it with cint?
  4. aspnetuser

    Error converting data type varchar to numeric.

    I get the following error message when trying to check a check box that will update a sql field type INT. Error converting data type varchar to numeric. web form hours check box hours is set to numeric. chekc box is set to int. it only fails when i try to check a check box and hit submit...
  5. aspnetuser

    field data types?

    just to store decimals 4.5 4.25 i tried numberic scale = 2 is that ok
  6. aspnetuser

    field data types?

    I need to store hours field in sql server 2000. What data type should i use? I need to store values like 4.25 4.50 etc... please advise?
  7. aspnetuser

    SQL db time out errors in sql

    I get the time out message in less than 1 minute using 600 seconds... has to be something else?
  8. aspnetuser

    new window hyperlink

    IT WORKED! Thanks so much!
  9. aspnetuser

    SQL db time out errors in sql

    He is a piece of code that always use to work. Not it is referenced in the time out. sql = "select count(*) as total" _ & " from Picks, Schedule" _ & " where Username = '" & username & "'" _ & " and Picks.GameID = Schedule.GameID" _ & " and Picks.Pick =...
  10. aspnetuser

    SQL db time out errors in sql

    600 then tried 800 code still fails
  11. aspnetuser

    new window hyperlink

    I am using the following code to generate links to files i have. ' output the filename and URL Response.Write "<li><a href=""" & strDocsPath & "/" & strFile & """>" & strName & "</a><br>" How can I make this a popup window (new window) when it is clicked?
  12. aspnetuser

    SQL db time out errors in sql

    it still times out :(
  13. aspnetuser

    simple sort issue

    I got it to run but it returns 0 everytime. (select count(AKA."Pick") from vw AKA where AKA."Username" = vw."Username" and AKA."Pick" = vw."Result")/ (select count(AKA."Pick") from vw AKA where AKA."Username" = vw."Username") * 100 There is only one view as the datasource.
  14. aspnetuser

    simple sort issue

    I don't understand your post? What is vw B?
  15. aspnetuser

    simple sort issue

    (select count(AKA."Pick") from P AKA, vw B where AKA."Username" = P."Username" and AKA."Pick" = B."Result")/ (select count(AKA."Pick") from P AKA, vw B where AKA."Username" = P."Username") * 100 invalid object name p

Part and Inventory Search

Back
Top