Search results

  1. S

    String field returning blank space

    Hi everyone. I am hoping someone can shed some light on a problem I am experiencing. I have some code which emails some data from a Table loaded on an open Form. The body of the email is determined from some strings which are getting their data from the fields of the table. stMain = "Please...
  2. S

    Memo Field not included in Email

    Hi I have a save button on a form, when clicked creates an email. I've set it up to include the details from the form in the content of the email. But I have found the text limit of 255 is not enough. So I have changed one of my fields to a Memo field. But when I try and include this in the...
  3. S

    parameter prompt twice from form and listbox

    I have a form which is linked to a query with a criteria prompt. On the form is a list box which looks up data from this same query. So when I load the form, I am prompted to enter the criteria parameter twice. If I deassociate the form with the query, my other textbox on the form which is...
  4. S

    FileCopy with Todays Date

    Hi, I want at a click of a button, to copy a file and rename it with Todays date. C:\FILES\ALLOC.csv C:\FILES\ALLOC191109.csv I've got the FILECOPY code working: Private Sub rename_Click() FileCopy "C:\FILES\ALLOC.CSV", "C:\FILES\ALLOC191109.csv" End Sub but I've tried adding the...
  5. S

    Pop Up Text Box

    Hi Everyone Is there a way you can have a text box pop up when you hover the mouse over a record in a list? the text box would contain the data in a field from that record. cheers
Back
Top Bottom