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?
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?
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...
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 =...
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?
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.
(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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.