Search results

  1. Trevor G

    Solved VBA compact-and-repair of a closed (corrupted) database from a new, blank Access file

    Thanks for pointing that out Colin I have taken note of what I came across in my post #9. As mentioned I haven't encountered this issue.
  2. Trevor G

    ms acces

    What version are you looking for and what type of a project do you have in mind?
  3. Trevor G

    Solved VBA compact-and-repair of a closed (corrupted) database from a new, blank Access file

    Look at this link it suggests various steps as well as software which may help. I've not encountered this issue but hopefully the Google search on the missing file might provide a solution...
  4. Trevor G

    Missing data when exporting from excel to Access

    How about a simple test. Highlight the excel data and use a copy command, then open either your database or create a new one to test. Then use a paste command into a new table and when it pastes select to use the first row as field names and once its pasted successfully open the table to see if...
  5. Trevor G

    Emmanuel Katto : How to Set Outlook to Open in HTML Format from Access Email

    As Minty has stated the Docmd will only look at the default email client you have and as far as I'm aware it will only be Plain Text you'll need full VBA code especially for HTML and anything you are looking to format. As an extra point I doubt you'll know what formatting the recipient has...
  6. Trevor G

    How to distribute an Access app?

    You can always hide the tables, queries etc in the navigation pane and you can hide the navigation pane also restrict allowing any keyboard method to show the navigation pane as well as using right mouse button. There are additional options to restrict anyone wanting to share (possible share in...
  7. Trevor G

    Mail merging words with data from excel

    For your mail merge to work each row from your workbook will need the Donor Name otherwise the mail merge won't be able to identify the donor. It would also be helpful if you could let us know how the word document is laid out and where the fields would appear.
  8. Trevor G

    Naming a VBA selected range

    Have you considered two different methods: One convert the data into a Table which then deals with additional rows and columns Two use CurrentRegion which selects all the cells and you should then add the named range Range("A1").CurrrentRegion.Select
  9. Trevor G

    Solved .HTMLBody Email Form including Option Frame Item

    Thank you for your suggestions and the Good luck. I have applied this now.:)
  10. Trevor G

    Solved .HTMLBody Email Form including Option Frame Item

    I have resolved this by adding an extra textbox for the Position and once the person has selected from the position list it adds the title into the textbox and I have then successfully included this into the email.
  11. Trevor G

    Solved .HTMLBody Email Form including Option Frame Item

    Thank you for the reply, no I am preparing an access form for people to fill in like writing an email that uses a query to send individual emails to them. The form has the usual textboxes and named: txtSubject MainText Sender These work fine so the email displays the content I am adding a...
  12. Trevor G

    Solved .HTMLBody Email Form including Option Frame Item

    Hi everyone, I have been looking to create a form to email a query list, this works well but I have been asked to add an extra feature. A frame with option buttons providing from a list of 5 options and the sender wants to be able to select which one to be included. The list is positions...
  13. Trevor G

    Email Form textbox format

    Sorted the issue. Thank you I wouldn't have got near a solution without your help. Line adjusted to .HTMLBody = "<font face=""Tahoma"" size=14 color=""blue"">" & Forms!frmMail!MainText.Value & "</font>"
  14. Trevor G

    Email Form textbox format

    Just tried implementing and it highlights the textbox name in the square brackets, if you don't mind I am indicating the code below and showing a screen shot of the form and error message it highlights. Would you be kind enough to take a look and make any suggestions? Sub SendMessages() 'Set...
  15. Trevor G

    Email Form textbox format

    Thank you for this, when I developed I used the form name and text box name so it was something along the lines of Forms!frmMail!MainText I will look to change the code and test it. I will reply
  16. Trevor G

    Email Form textbox format

    Hi thanks for the reply, The whole form is unbound textboxes when emailed it picks up the contents from a query, I haven't found the property to change to rich text format. When I have tried various options the format doesn't appear in the email.
  17. Trevor G

    Email Form textbox format

    Hi everyone, I have written code to email contents from a form to Outlook but I am having difficulty in formatting the body of the email for line of code which picks the contents up from a textbox. Like an item that has to be highlighted. Textbox content in the email should be emailed...
  18. Trevor G

    eMail Databases with attachment option

    The 5th line from the bottom is .Display place the line just above it .Attachments.Add Me.FilePath
  19. Trevor G

    eMail Databases with attachment option

    Add this before the: .Attachments.Add Me.FilePath .Display
  20. Trevor G

    Reset Named range.

    You can look to delete the named range before you recreate it, incase it is causing conflict. I would suggest record a macro to find the named range and delete it then create the new named range accordingly and you have the code.
Back
Top Bottom