Search results

  1. W

    Hello to everyone

    Hi mrt, Welcome to the forum. I hope you find the help you're looking for, learn a few things on your journey of life. Maybe you can pass on what you've learned and help someone else along the way. Wayne
  2. W

    Auto Create Emails in Outlook based on Data in Access

    I'm trying to do the same thing in an e-mail, and my Outlook calendar. I have a contracting business, and on my Orders form (which details a single client), I have a sub-form that lists all the items to be done at that client's home (a different record for each work item). When I send an e-mail...
  3. W

    Alphanumeric validation.

    I need a little more info to answer. What data is being stored in the field?
  4. W

    Hi from Northern Ireland

    Welcome to the forum. Hopefully, you will find the help you need here, and maybe you can help others along the way. Cheers.
  5. W

    Bold and Underline Certain Text in an E-Mail

    Sorry - that should be thanks. There's a lot to be said for proof-reading before sending.
  6. W

    Bold and Underline Certain Text in an E-Mail

    Tanks David. I'll play with it over the weekend and see what I can do. I anticipated this, and the body text is already broken up into several strings. I figured I would have to (at the very least) separate them strings I wanted to underline and bold the text. I appreciate the quick answer. Cheers
  7. W

    Bold and Underline Certain Text in an E-Mail

    Can anyone shed some light on this? I have created an automated e-mail quote for a client database. I have created several strings that make up the body text for the e-mail (some with info drawn from the database fields). Is it possible to have certain strings underlined and bold face? How would...
  8. W

    New user here - Jeff

    Welcome to the forum oldMan. Hope you find the help you need, and maybe you can help someone else out along the way. Cheers
  9. W

    Email address from field?

    Try this link. It has a form you can use to send e-mails right from Access, and you can populate the message box with info from your database, as well as the e-mail addresses. You'll have to tweak the code a little, but it works well. Cheers...
  10. W

    new member here

    Welcome to the forum, and don't worry, we all have bosses! Hope you find the help you're looking for, and maybe help someone else out along the way.
  11. W

    Code for an emails "To" field

    Try putting a bang instead of a dot like this: .To = Forms![Case Details]![Manager Email] Or is the "Manager EMail" field on a subform instead of the main form? Wayne
  12. W

    What does it mean by "Indexed"?

    Not sure what the purpose of the database is, but you are going to have to be careful here. If you do not want 2 or more records with the same time in them, then select Yes (No duplicates) for your index, and Access will not allow any new record to be same with the identical time in it. However...
  13. W

    ControlTip Text Problem

    Great. Glad to help out. What part of Canada you from? Wayne
  14. W

    ControlTip Text Problem

    Sorry - forgot to add that I am using Access 2007. Should be the same in 2010. Wayne
  15. W

    ControlTip Text Problem

    Try going into Design View on your form. Highlight any one of the fields that the Control Tip Text is not showing up for. Right click on that highlighted field, choose "Position", and click on "Bring to Front". Now go back to Form View and try it again. Now it should appear (as long as you have...
  16. W

    Hello :)

    Hi Yas, and welcome to the forum. I hope you will find the answers to your questions here, and possibly help others with theirs.
  17. W

    Not In List Help Needed

    I have set up 3 combo boxes on a form. They are based on a value list, not a table or query. I have set the limit to list property to Yes, and put the following code into the OnNotInList Event: Private Sub AgtType_NotInList(NewData As String, Response As Integer) Dim ctl As Control ' Return...
  18. W

    Populate Multiple Subforms in a Tab Control in VBA

    Thanks John. This will work nicely. I really appreciate the help.
  19. W

    Populate Multiple Subforms in a Tab Control in VBA

    I run a small trucking company. I have a table for orders (Deliveries). I know that grouping on a form (like on a report) is not possible, however, is it possible to use a tab control on a form, with 7 tabs, one for each day of the wek, and to populate each page based on the week selected on the...
  20. W

    Hello from the Great White North!

    Welcome to the forum from a fellow Canuck! Hope you find the help you need here, and maybe you can help others to.
Back
Top Bottom