Recent content by JorgeDario

  1. 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...
  2. JorgeDario

    How to capture and save the text, when responding a MailItem?

    No, not the text, but when mail is answered. An email arrives, open it, read it, it responds; that response is needed to capture or save it somewhere. Thanks
  3. JorgeDario

    How to capture and save the text, when responding a MailItem?

    Hello Team! How can capture the response is written in an email with vba? Thanks!
  4. JorgeDario

    how to check a MailItem has a digital signature (SMIME) with vba?

    Script: If Item.MessageClass <> "IPM.Note.SMIME" Or Item.MessageClass <> "IPM.Note.Secure" Or Item.MessageClass <> "IPM.Note.Secure.Sign" then 'do something End If
  5. JorgeDario

    how to check a MailItem has a digital signature (SMIME) with vba?

    Hello Team! How to check a MailItem has a digital signature (SMIME) with vba? I'm using: Item.MessageClass and Item.Class Not working I have a script that runs every time you get an email, however, the script stops when an email arrives with digital signature, a warning message appears. Thanks!
  6. JorgeDario

    ¿What property of mailitem can be used like primary key?

    How I can create your own GUID in a custom field? Support with an example, please
  7. JorgeDario

    ¿What property of mailitem can be used like primary key?

    Thanks Diane!, however, is not useful when the MailItem is changed to another folder, because it changes
  8. JorgeDario

    ¿What property of mailitem can be used like primary key?

    What property of mailitem can be used like primary key?
  9. JorgeDario

    Help creating macro for conditional formatting settings

    Amigo, prueba con este código. Se ejecuta cuando el correo llega, ahora hay un pequeño inconveniente, por la experiencia, si recibes mucho correos al mismo tiempo, le va a tomar tiempo al Outlook procesar el código. También dependiendo del proceso que hagas se puede optimizar tu trabajo. Haber...
  10. JorgeDario

    restrict access to a certain folder with vba

    ok, thanks!, any way to hide the folder with vba?
  11. JorgeDario

    restrict access to a certain folder with vba

    Hello Team! Restrict access to a certain folder with vba. Is needed that can not view the contents or subfolders. Thanks!
  12. JorgeDario

    How to restrict the creation of new folders?

    Thank you!, now I know how to do, but now I need to restrict access to a certain folder with vba Aqui esta el ejemplo: Public WithEvents myOlFolders As Outlook.Folders Public Sub Application_Startup() Set myOlFolders = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Folders...
  13. JorgeDario

    Help creating macro for conditional formatting settings

    Ya te la posteo, espera un chance... wait a chance
  14. JorgeDario

    How to restrict the creation of new folders?

    Hi, How to restrict the creation of new folders with vba?
  15. JorgeDario

    Help creating macro for conditional formatting settings

    Hola Andrew85, ¿para qué deseas identificar los correos de las 75 personas? Es cierto, que puedes utilizar las categorías, y crear un macro, que cuando te llegue un correo de un determinado remitente o una palabra específica en el asunto, automáticamente asigne una categoría. Esto también lo...
Back
Top