Search results

  1. N

    Calling this from Module creates Windows Security to block it from running

    ' runs the batch file shell Test.cmd This is now causing the operation to fail and windows security is blocking it from running. is there another way to run a bat file from VBS/modules
  2. N

    Updating the front end on local server

    LOVING THIS HOW DO I GET IT TO RUN IN X64 BIT ACCESS
  3. N

    Ms Access - backend speed Inprovment

    Thanks we now have many users connected through VPN, so we are experiencing slowness caused by home working and VPS.
  4. N

    Ms Access - backend speed Inprovment

    Hi, I am trying to gain the understanding on how changing these settings can improve the speed..
  5. N

    Solved Exporting to csv file loses number format

    dont understand as then if i open the file in excel and change the format its all correct?
  6. N

    Solved Exporting to csv file loses number format

    I am trying to export a table to a csv file but the numbers are showing up like this Guess i need to have some formatting added to a query?
  7. N

    Solved Send email from ms access vbs from another email address?

    sorted this added code to close outlook and load a different profile
  8. N

    Solved Send email from ms access vbs from another email address?

    Is it possible to have the code changed to send the emails from a different outlook email address. this is my code.. I get this to work by creating a second profile in outlook and select that and it send correct but looking for a way now to have the code do this so the user doent need to do...
  9. N

    Solved Create an Access mail merge to email from Outlook

    Resolved it back changing the method - Thanks Dim MyDB As Database Dim MyRS As Recordset Dim MyForm As Form Dim objOutlook As Outlook.Application Dim objOutlookMsg As Outlook.MailItem Dim objOutlookRecip As Outlook.Recipient Dim objOutlookAttach As Outlook.Attachment Dim...
  10. N

    Solved Create an Access mail merge to email from Outlook

    Moved loop to after End With and now getting's this error.. on debug this is the line highlighted in yellow .BodyFormat = olFormatHTML end With MyRS.MoveNext Loop End Sub
  11. N

    Solved Create an Access mail merge to email from Outlook

    changed as above still same issue on the loop
  12. N

    Solved Create an Access mail merge to email from Outlook

    yeh code is behind button and in my test i have 3 emails to send
  13. N

    Solved Create an Access mail merge to email from Outlook

    Dim MyDB As Database Dim MyRS As Recordset Dim OutlookApp As Outlook.Application Dim OutlookMail As Outlook.MailItem Set MyDB = CurrentDb Set MyRS = MyDB.OpenRecordset("test") MyRS.MoveFirst Do Until MyRS.EOF Set OutlookApp = New Outlook.Application Set OutlookMail =...
  14. N

    Solved Create an Access mail merge to email from Outlook

    @theDBguy hope you can help me please
  15. N

    Solved Create an Access mail merge to email from Outlook

    Dim MyDB As Database Dim MyRS As Recordset Dim OutlookApp As Outlook.Application Dim OutlookMail As Outlook.MailItem Set MyDB = CurrentDb Set MyRS = MyDB.OpenRecordset("test") MyRS.MoveFirst Do Until MyRS.EOF Set OutlookApp = New Outlook.Application Set OutlookMail =...
  16. N

    Solved Create an Access mail merge to email from Outlook

    Thanks so how would i add that please just add ... MyRS.MoveFirst Do Until MyRS.EOF MyRS.MoveNext Loop
  17. N

    Solved Create an Access mail merge to email from Outlook

    so this is what i have and it works in that it just sends an email to the first contact in the table, how do i set this to run through all.. Dim MyDB As Database Dim MyRS As Recordset Dim OutlookApp As Outlook.Application Dim OutlookMail As Outlook.MailItem Set MyDB = CurrentDb Set MyRS =...
  18. N

    Solved Create an Access mail merge to email from Outlook

    Hoi, I need to have access send on a daily basis emails to customers which the data is stored in a table. Any suggestions for the best way, can i just set up access to send the emails? and also attached two pdf files
  19. N

    Is it possible to connect from access to data bricks

    looking to connect directly into data bricks data tables can this be done?
  20. N

    Dont save record if database is closed.

    I need to stop a record from being saved when the user closes the database and dots click save button on the form Seems that if you started a data entery and then stopped and just closes the database the record is saved in the able but blank?
Back
Top Bottom