Recent content by pradeepiyer

  1. P

    missing operator on a delete query

    :cool::):):):cool:
  2. P

    Field Update With VBA code

    Sorry, I meant this....create the field with type "Calculated Field" and provide the formula in the expression.
  3. P

    Hello from Scotland

    Welcome Darwin. I also registered in this site today since I'm an Access user these days and I'm getting solution for all the problems right here. Have a nice time here :)
  4. P

    Field Update With VBA code

    You wont be able to update the description field "automatically". For that, you would have to declare the field as calculated field and provide the formula (as you mentioned). To handle this through VB code, you need to have a triggering event and upon that, you can use this code: Code...
  5. P

    missing operator on a delete query

    Try this: CurrentDb.Execute "DELETE FROM Type WHERE Project_ID = " & Me.Project_ID & " AND [Type] = '" & Me.Txt_Type & "'"
  6. P

    Date/Time field in Access 2010 modified in Sharepoint list

    I have a table in my Access 2010 Database with few date/time fields. I have set different formats like Short Time, Medium Time etc. But when I link this table to Sharepoint list, all the date/time fields have been modified to their default format (General Date). Is there a way we can keep the...
Top Bottom