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 wOOdy-Soft 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 nicklewis

  1. nicklewis

    date validation

    cheers for your help guys i realised what id done about 2 mins after i sent it to the forum i was used to looking at dates in expression builder not coding its been a while Cheers for all your help
  2. nicklewis

    date validation

    Right im proberly asking a silly question but ive been playing around with this one for a while and just not seeing what im doing wrong what i need to do is basically vaildate a date after update by using two text fields as the between dates so if the date netered is between these two datas it...
  3. nicklewis

    E-mail verification in access 97

    should it look something like that as it dosn't work for me docmd.SendObject(acSendNoObject,"Test E-mail",,"nick.lewis@manor-bakeries.co.uk","nick.lewis@manor-bakeries.co.uk", "nick.lewis@manor-bakeries.co.uk","Testing","Some one has just updated the tables make sure you update sql")
  4. nicklewis

    E-mail verification in access 97

    hi does anyone know of any code in which after a procedure is complete you can send a confirmation to a e-mail address? Any help would be greatly recieved Thanks in advance
  5. nicklewis

    email verification on a function

    Hi i was wondering if anybody knew of any code in access 97 that could send a e-mail verification when a procedure is finished?
  6. nicklewis

    runtime error 3151 odbc connection

    Thanks that was the easy way to solve me problem i was playing around for ages as well cheers for your time mate much apreciated
  7. nicklewis

    runtime error 3151 odbc connection

    Hi i have a DB that keeps coming up with this error when trying to open has anyone got any ideas why this is coming up? Any help would be greatly recieved Thanks in advance
  8. nicklewis

    ms access 97 problem 3622

    didnt realise it was that easy cheers for the help that worked perfectly. hopefully this will be my last problem he says cheers again
  9. nicklewis

    ms access 97 problem 3622

    error message: you must use the dbseechanges option with openrecordset when accessing a sql server table that has an identity colum The code: Dim db As Database Dim tblDowntime As Recordset Set db = DBEngine.Workspaces(0).Databases(0) Set tblDowntime = db.OpenRecordset("dwor_Downtime"...
  10. nicklewis

    please help 3027 error cant update, database or object is read-only

    yes it has two fileds very simple table DateId autonumber primary key Date
  11. nicklewis

    please help 3027 error cant update, database or object is read-only

    no i cannot add to the table strange how do i get around this sorry the start of the cod is Dim db As Database Dim tblDate As Recordset Set db = DBEngine.Workspaces(0).Databases(0) Set tblDate = db.OpenRecordset("Date", dbOpenDynaset)
  12. nicklewis

    please help 3027 error cant update, database or object is read-only

    tbl date is the recordset in which opens the table Date what this process is doing is finding todays date minusing one day from it then adding it automatically if not already entered to the date table
  13. nicklewis

    please help 3027 error cant update, database or object is read-only

    oh yeah sorry it says "can't update, database or object is read only" the only thing that we have been doing latley is upsizing the db to sql but havent had a chance to touch the table called date yet anyway
  14. nicklewis

    please help 3027 error cant update, database or object is read-only

    this was working but now has decided to not work today. any ideas? this is the code and it has stopped where the * is If txtday = "Monday " Then txtanswer = txtminus3day Else txtanswer = txtminusoneday End If tblDate.MoveFirst Do While Not tblDate.EOF If tblDate![Date] = txtanswer...
  15. nicklewis

    ma access 3073 error operation must be an updateable query

    UPDATE ShiftType INNER JOIN ((ProductInformation INNER JOIN ((Plant INNER JOIN (([Date] INNER JOIN Downtime ON Date.DateId = Downtime.DateId) INNER JOIN [Order] ON Date.DateId = Order.DateId) ON (Plant.PlantId = Downtime.PlantId) AND (Plant.PlantId = Order.PlantId)) INNER JOIN Product ON...

Part and Inventory Search

Back
Top