According to the microsoft site, one of the requirements for using data access is a database server running SQL Server 7.0 or later. I'm using MS Access 2003. Do I have any other options?
I have two textboxes (txtStartDate and txtEndDate). I would like to pull all data between those dates in a gridview. I can't seem to get the procedure to trigger.
<%@ Page Language="vb" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Variable Weekly...
I'm using Visual Web Developer 2008.
I'd like to pull a week of data by using a calendar control.
I have a calendar control and a gridview with a datasource tied to the calendar.
When I select last week, it just shows Monday's data. When I select another week, it shows nothing. Every day...
I got it working.
here's the code.
frmPOD!MonSht = DSum("Shts", "qryPODEntry", "[qryPODEntry]![Category]='POD' AND [qryPODEntry]![DayofWeek]=2")
Thanks for all the help. I really appreciate it.
I moved the code from the OnLoad procedure to an OnClick button procedure within the form.
Now I get this error.
You entered an invalid argument in a domain aggregrate function.
This is what I have using the directions from the Access Help.
frmPOD!MonSht = DSum(Shts, qryPODEntry, "fkID=[frmMain]![pkID] and [Category]='POD' and Dayoftheweek=2")
I'm getting a type mismatch. I've verified the spellings of all the objects.
I have the following SQL statement in VBA with a Form_On Load procedure.
frmPOD!MonSht = "SELECT Sum(qryPODEntry.Shts) AS SumOfShts from qryPODEntry HAVING (((qryPODEntry.fkID)=1) AND ((DatePart('w',[PODDate]))=2) AND ((qryPODEntry.Category)='POD'))"
frmPOD relates to a subform on my main form...
I’m trying to get a calculation from two columns each with its own recordset.
Calculation needed in first cell of Mc Percentage:
(76-108)/108 = -29.63%
76 is from the Recordset (Wk) and 108 is from the recordset (PvsWk). Both recordsets pull from Crosstab queries in MS Access.
I haven’t had...
I've created a Password Change page. How would I tie this into the login page?
All passwords are "password" by default until changed so I could probably use that criteria to redirect to the password change page.
Here's the code for Login.asp and PassChange.asp.
<%@LANGUAGE="VBSCRIPT"...
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.