Search results

  1. D

    Solved Checking if all assessment questions have been answered in the subform

    Hi All, I have a subform within a form that pulls through all the assessment questions . There is a frame with 3 options (Yes/No/NA)for each question . I was wondering the below validations can be added : 1.None of the questions are left unanswered by the users when they press Save button 2...
  2. D

    Runtime error 48, erro in loading DLL

    Hi guys, I am getting a very strange error message . My code has been working fine without any issues for years but now I keep getting this error message. The error comes when I try to extract data from access form to the word document . Please see below the code: Dim wa As New...
  3. D

    Outlook macro to extract data from emails to .txt file

    Hi All, The below macro works fine and extract the data from emails into .txt file . The only thing not working is question number 3 "Do you think you’ll be able to start making your full monthly payments again after 3 months?" has got apostrophe sign and the macro is not considering it a...
  4. D

    Extract email body contents into .txt file

    Hi guys, I got the script to extract data from email body to .txt file working . But there is email field in the body which contains email address and it's getting stored into .txt file in the format HYPERLINK "mailto:A11x@hotmail.co.uk"A11x@hotmail.co.uk Is there any way I can change double...
  5. D

    Solved Remove 2 blank characters from account number in pdf file name

    Hi guys, I have written outlook vba code to save all the emails down in pdf format in a folder with specific naming conventions . The PDF file names need to start with Account number but when the files get saved down then there are 2 blank characters appearing in the beginning of file name . I...
  6. D

    Check if the first 9 characters of subject line is 'FORMIMAGE'

    Hi guys, I got the following code which will check the mailbox and extract data from them into .pdf and .txt file. I have to amend the script so it will check the subject line for each email and it should extract data from only those emails whose subject line start with 'FORMIMAGE' and ignore...
  7. D

    Extracting email into pdf format

    Hi guys I want to use outlook vba to save the email down as .pdf format . There is a 'Apps' folder within the mailbox so all the emails in that mailbox need to be converted into .pdf file and save down in a dedictaed folder . To note there are no attachments in the emails so just the body...
  8. D

    Outlook VBA code to check if mailbox exists

    Hi guys, I want to write the validation to check if the following mailbox exist in my outlook? Can anyone please help me with this? Dim olRecip As Outlook.Recipient Set olRecip = mynamespace.CreateRecipient("Derek.Smith@boi.com") Thanks,
  9. D

    Extract xml file data from outlook email

    Hi guys , I have recently made an outlook script working to extract data from email body to .txt file . For that one the email body contents were in structured format . Just wonderingcan we extract data from the outlook emails that has a HTML table in the email and a XML file that’s sent to...
  10. D

    Read email content and save the data down in database

    Hi guys, We got a request from client to built something that can read data from email attachment and save the data down in the database . Can you please shed any light on this ? How this can be achieved ? Thanks
  11. D

    data migration from MS Access to sql server - date issue

    Hi guys, I have migrated tables from MS Access to sql server and when I tried to run the forms (which are on MS Access) then they work fine most of the times but where there is date filter in the code it fails . Please see below the code (I had to format the date to make it working otherwise it...
  12. D

    SaveAs password protected document

    Hi guys, I have a word document which is password protected by someone . I want to copy it and make changes in it . But if I use SaveAs then again it is open as read only . Any help will be much appreciated . Thanks
  13. D

    Check if you on Wifi,LAN (office network) or using RAS at home

    Hi guys, My database is built in Access and it's been used by about 200 users . The users are aware of not using the system on Wifi or remotely but sometimes they still use wifi (sometimes they don't realize that their laptop is connected to Wifi at work ) so I want to build the functionality...
  14. D

    Test/dev and production environment

    Hi guys , I have been using ms access for years and for any small change requests from clients like adding value in lookup table etc.. I never made test environment ready and added values in production lookup tables straightaway. But in my company they want test , dev and production...
  15. D

    Table with 50000 records

    Hi guys, Are 50000 records too many for MS Access table? Will the performance increase if I delete the old records ? Many Thanks,
  16. D

    data migration to production (sql server)

    Hi guys, I have done data migration from ms access to sql server (in test environment) . The users have tested it ans it works fine. Now we are planning to migrate to production so I want to make sure all works fine in production with no issues . Can anyone please help me with implementation...
  17. D

    Bound forms with sql backend

    Hi guys, I have done data migration from Access to SQL server and the forms which are unbound work fine but the bound forms don't work ( no data gets saved down and pulled through ) As with Access backend , within bound forms automatically 'unique ref' gets stored within a field but now with...
  18. D

    Expresssion on click event

    Hi guys, I have been getting a very strange issue . My accdb works fine but when I make accde and run it (click on the button) then it gives 'expression on click' error message. I compiled my database but still the same issue . Any help will be much appreciated. Thanjks
  19. D

    data migration from Access to sql server

    Hi Guys, I got the database built in MS Access so both front-end and back-end are in MS Access . Now we have to migrate data from MS Access to sql server so we will be having MS Access frontend and sql server backend. I am facing few issues in this as below: 1. In MS access back-end, there...
  20. D

    Input mask on textbox

    Hi guys, I want an input box on the textbox so it will accept only 10 digits. It shouldn't allow users to enter less than or more than 10 digits. How can I achieve this using vba? Thanks
Top Bottom