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 dencom 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: *

  • Users: werosen1
  • Content: Threads
  • Order by date
  1. werosen1

    Select record on with 1st date prior to current date

    Greetings: I'm trying to figure out how to Select a record from an Access 2002 database with SQL by identifying from the date field (rDate), the first date that exists prior to today's date. Has anyone dealt with this that could steer me in the right direction?
  2. werosen1

    Error using form value in Access Update

    I'm having a problem updating my Access 2002 db using an ASP variable whose value is provided from a form text box. If I simply use the following, the db is updated correctly with the number 5. Set conn = server.createobject("adodb.connection") conn.connectionstring = "DRIVER={Microsoft Access...
  3. werosen1

    "loop without do" error with If condition

    I am running the following in an ASP page and it works perfectly: <% dim Rdate dim PrevRdate Set conn = server.createobject("adodb.connection") conn.connectionstring = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=C:\tradersreportsdata\reportevents.mdb;pwd=matrix" conn.Open Set...
  4. werosen1

    Identifying week range by todays date

    I'm trying to write an SQL query that identifies today's date, and then provides the date range for that date's week, so I can return all my database records that fall in that week's date range and display them in my ASP page. Is there a way to do this? Regards
  5. werosen1

    Identifying week range by todays date

    I'm trying to write an SQL query that identifies today's date, and then provides the date range for that date's week, so I can return all my database records that fall in that week's date range. Is there a way to do this? Regards
  6. werosen1

    Display MS Access Time field in web page

    I am trying to query an Access 2002 database from my asp page and have the data in the 'Time' field displayed in the custom format that I designated when I built the Access table. I am using the following format in Access: h:nnam/pm to return 8:30am. When I query the 'Time' field from my page...
  7. werosen1

    Handling double quotes with WriteLine

    Greetings I am trying to write a string to a file using the following: dim ReportObject,ReportFile set ReportObject=Server.CreateObject("Scripting.FileSystemObject") set ReportFile=ReportObject.CreateTextFile(Server.MapPath("\reports\reportfile.asp")) ReportFile.WriteLine("<%@...

Part and Inventory Search

Back
Top