Search results

  1. C

    VBA Code work on computer A, but not computer B

    All, Thank you for your input and all of the suggestion. Upon further and very detailed investigation, It was discovered that McAfee was the root cause of my issues. If you encounter similar errors when sending emails, check the following on your computer: Go to your quick tool bar and...
  2. C

    VBA Code work on computer A, but not computer B

    Gemma-the-husky: Yes, the email is fake, but I do have a real on that works. Yes, the Access version are all the same for each machine. Solo712: I have tried to send messages with both a gmail account as well as with my normal email and pwd that the system knows. I can change the port number...
  3. C

    VBA Code work on computer A, but not computer B

    Thanks KenHigg- I appreciate the fact that you tried. Wm
  4. C

    VBA Code work on computer A, but not computer B

    And the best part is that my IT guru is stumped as well!
  5. C

    VBA Code work on computer A, but not computer B

    Yes, I ran the same code on both machines. Code works fine on my regular machine, but does not run on my back up.
  6. C

    VBA Code work on computer A, but not computer B

    Here was the last version I tried. Private Sub Testemail_Click() Set cdomsg = CreateObject("CDO.message") With cdomsg.Configuration.Fields .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'NTLM method...
  7. C

    VBA Code work on computer A, but not computer B

    KenHigg- Yes, when I did the bare bones test, I took out everything except the email address and used "test" as the subject and message body. Kept it very simple.
  8. C

    VBA Code work on computer A, but not computer B

    They were the same.
  9. C

    VBA Code work on computer A, but not computer B

    KenHigg, Not sure I fully understand what your asking. Which references are you referring too? wm
  10. C

    VBA Code work on computer A, but not computer B

    Yes and that works fine. :banghead:
  11. C

    VBA Code work on computer A, but not computer B

    Yes.....and on the machines that it does not work, it always stops at the ".send" I have checked to insure that the ports are open not to mention that I made sure that the anti virus was turned off on some of the testing to see if that was causing the issue. But still was getting the same error.
  12. C

    VBA Code work on computer A, but not computer B

    Spikepl- yes, I did check all of the settings and they all match between machines. I am logging into each machine using the same login credentials in an effort to keep things consistent. KenHig- here is the code (its pretty basic): Private Sub Command74_Click() Set cdomsg =...
  13. C

    VBA Code work on computer A, but not computer B

    spikepl, I would have to agree except it is currently running fine on two other computers on our network but non of the others. KenHigg- I did as you suggested and created a very basic email routine and still getting the same error "The transport failed to connect to the server"". Its almost...
  14. C

    VBA Code work on computer A, but not computer B

    I have code in place for sending emails when anyone enters a new record into my access database. This works fine from my local computer as well as another computer on our network. My problem is that its not working anywhere else. All of the computers involved are running windows 7 (64 bit)...
  15. C

    Email based on Department selection in form

    AOB....thanks for the help! Was trying to over think the process and missed the obvious.
  16. C

    Email based on Department selection in form

    I am trying to generate an email that will send a copy of the last record entered from my table "Main" to a departement email, based on the department field entry on my form. I know that I can send emails both thru outlook as well as direct. Would prefer to sent the direct (without opening...
  17. C

    How to create an ID # based on number of recored

    Sorry CJ, Not sure I know what you mean when you as if I have a Control on the form.
  18. C

    How to create an ID # based on number of recored

    Thanks CJ- but that was not it either. Still not getting any data saved into the ActionID Field. And I'm not getting an error message either.
  19. C

    How to create an ID # based on number of recored

    I'm not getting any error- nor am I getting a number generated either.
  20. C

    How to create an ID # based on number of recored

    Ok, CazB, I entered the code you gave me But I must me missing something. My feild in my form that i wanted to show the results is unbound. I entered the code to that field by doing a build event as follows: Private Sub ID_BeforeUpdate(Cancel As Integer) If Me.NewRecord Then Me.ActionID =...
Back
Top Bottom