vbscript

  1. B

    VBScript doesn't run on Recipient Email

    Hello all, I'm new to this forum. Any help is greatly appreciated. I am trying to create a VBScript for custom forms in Outlook 2016. I have a Command Button created in the form, and the test code associated with it is shown below. Function CommandButton1_Click MsgBox "Hello" End...
  2. H

    VB script in outlook form doesn't work anymore

    I used the following script for years in a customized outlook form to populate a combo box with outlook contacts. This worked fine until a couple of months ago. Now it doesn't work anymore. Sub Item_Open() Dim FullArray() ' Sets the name of page on the form (Termindetails) Set...
  3. V

    VB script code to save a specific email attachment from a given email

    Hi, I'm new to VBA and also this forum. I'm using a simple script code to save email attachments to a Drive folder and name them when they arrive, and activating it within an Outlook rule(run a script), its working fine.......when there is only one attachment in the email. Is there a script...
  4. Mark White

    VBScript Move sent mail to non-default folder

    Hi, I'm trying to move a sent email from the sent box to an other shared mailbox subfolder. I can't use VBA as macros are disabled and am finding it difficult to change the GetFolderPath() function to work in VBScript. Below is how I call it but I'm having trouble converting the VBA code into...
  5. Mark White

    VBScript Move sent mail to non-default folder

    Hi, I'm trying to move a sent email from the sent box to an other shared mailbox subfolder. I can't use VBA as macros are disabled and am finding it difficult to change the GetFolderPath() function to work in VBScript. Below is how I call it but I'm having trouble converting the VBA code into...
  6. C

    Save Subject of Received Email as a String

    Hello guys, I am looking to save the subject of an email I receive as a string in VBA. I am using Outlook 2013. If anyone could help me out, I would greatly appreciate it. Have a great day, and thanks for your input
  7. S

    my vbscript button1_click code works on appointment created but not on opening an existing apntmn

    hi I have an open_item sub and a commandbutton1_click sub. the open_item loads data from a db and into a listbox.possiblevalues while the selected value is stored on a custom field the commandbutton1_click creates a access.application object.(is it possible to do so in a modal way?) When I...
  8. ashcosta2

    Auto Reply rule based on speficied time

    Dear All, I am looking for a vba script to specify a auto response message when ever someone sends an email to my inbox between 6PM to 5AM. I am using MS Outlook 2010. The sender if sent a email at after 6pm will trigger a custom message that states "Kindly call me on this number" Appreciate...
  9. JorgeDario

    Template oft that contains VBScript Is not running

    Dear: I have a template that is stored in the address "c:/mytemplates/myoft.oft" The file "myoft.oft", has a vbscript script incorporated: Function Item_Send() The template opens with the macro: Application.CreateItemFromTemplate(c:/mytemplates/myoft.oft) but does not run the script. How...
  10. A

    From box in custom outlook Form

    I've been tasked with removing the send button from the default outlook form. I think it's called IPM.note. I ended up having to create a custom form and use some vbscript to get it have some semblance of normal functionality. We have a custom send button that ties into the item_send event in a...
Back
Top