Recent content by seven11

  1. S

    ASP Question

    What you will want to check for is the following: If (RS.EOF and RS.BOF) Then 'do logic here to display no records message else 'do logic here to display your records end if When a recordset returns empty, the End of File (EOF) and Beginning of File (BOF) attributes of the recordset...
  2. S

    Count total that occur the following week

    Have you tried this? select count(*) from tblDates where dates in (select dates from tblSundays)
  3. S

    check if control has property

    Most likely what you will have to do is check to see what the control type is first before you try to access the property. If the control is something that can have a old value, then perform the comparison, else move to the next control. good luck - 711
  4. S

    Web reports

    You might want to check Crystal Reports or Active Reports. I am assuming that you are using a Microsoft Internet Information Server (IIS). If so, then you will be able to execute Active Server Pages and in turn, Crystal and Active Reports. Good Luck 711
  5. S

    Counting Entries

    Here is the query that will generate the information you want: SELECT Main.Color, count(color) FROM Main group by color;
Back
Top Bottom