Search results

  1. F

    Cut and Paste Macro

    Thanks! After a little more thinking I went with a solution like this: Private Sub Command33_Click() Dim contents As String If Me.Information = "" Then Me.Information = Trim(Me.MostRecentEntry) Me.MostRecentEntry = Date & ": " Else contents = Trim(Me.Information) Me.Information =...
  2. F

    Cut and Paste Macro

    Ok, so that works nicely to copy the data accross, however it doesnt clear what is currently in the 'Most Recent Entry' memo field. I would also like to add todays date onto the first line of the 'Most Recent Entry' memo box after the previous load of data has been cleared. Can you help...
  3. F

    Cut and Paste Macro

    Thanks for this dcrake, can you briefly explain what exatly this will do, it doens't contain any of the memo field names so I'm not exactly sure whats what! Thanks
  4. F

    Cut and Paste Macro

    Afternoon, Can anyone help me write a vb module on an access form (called frmRequest) to do the following: 1) Cut the contents of a memo field called 'Most Recent Entry' 2) Paste the data into another memo field (inserting a carriage return/line space) between the previous line of data and...
Back
Top Bottom