Recent content by Designer156

  1. D

    Event Proceedure on Dbl Click

    Ok, got it cracked... Private Sub Notes_DblClick(Cancel As Integer) Me.Notes = Me.Notes & vbCrLf & vbCrLf & Date & " - " End Sub Thanks!!
  2. D

    Event Proceedure on Dbl Click

    Actually, I've discovered how to add the carriage return: Private Sub Notes_DblClick(Cancel As Integer) Me.Notes = Me.Notes & vbCrLf & vbCrLf & Date End Sub Now I just want to add a space after the date
  3. D

    Suggestions on design/structure

    I'm building a Dbase to log some jobs that come into my team, jobs will be allocated to an individual and come from a set of pre-determined customer's. A job can consist of one or multiple tasks from a list of around 20. Once complete I will be seeking feedback scores on the job and the...
  4. D

    Event Proceedure on Dbl Click

    That does the job! Thanks! One more thing, how can I add a carriage return before the new date?
  5. D

    Event Proceedure on Dbl Click

    This is for a notes field about a customer. When I call them I want to just double click and add some notes baout the call in the same field as the rest
  6. D

    Event Proceedure on Dbl Click

    Hi, This is an old post of mine and it worked well, but now I need to improve it a bit... If I have a blank file dand I double click in it it inserts the current date, but if the field already has data, it overwrites the current data with the date. How can I modify the code to add the date to...
  7. D

    Dates and Queries

    For anyone searching for the solution, the following criteria did it for me: Between #01/04/2007# And DateSerial(Year(Date()),Month(Date()),0) and for the number of months passed: =DateDiff('m',#01/04/2007#,Date())
  8. D

    Event Proceedure on Dbl Click

    Works a treat. Thanks!
  9. D

    Event Proceedure on Dbl Click

    What would be the correct syntax, given that the control name is 'Completed_Date' and the Form is called 'Opportunity' ?? All I have right now is: Private Sub Completed_Date_DblClick(Cancel As Integer) End Sub
  10. D

    Event Proceedure on Dbl Click

    Guys, I've done it before, but can't remember how..I want to automatically insert the current date into a control on a form by double clicking it. I understand i need to select event proceedure and then add some code that includes '=date()' but what else? Thanks
  11. D

    Dates and Queries

    Thanks guys, I'll look into those.
  12. D

    Dates and Queries

    I need to create an expression that will limit the results of my query. I only want to display all records where 'Completed' date falls within the following criteria: Between the 1st April and the end of last month. I do not want to include this month, because by definitiion it is not complete -...
Back
Top Bottom