Migrate Sticky Notes in Windows to Win 10 from previous versions Posted on October 24, 2017 by dpejic If you use the Windows Sticky Notes app, you’ll be happy to know you can back up your notes and even move them to another PC if you want. How you do it just depends on what version of Windows you’re using. Much like its real world counterpart, the Windows Sticky Notes app makes it easy to…
Outlook Macro to add email to Bcc and send it Posted on October 2, 2017October 24, 2017 by dpejic It goes under thisOutlookSession Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim olRecip As Recipient Dim olMsg As String Dim res As Integer Dim olBcc As String On Error Resume Next ‘// set email address here olBcc = “Address@domain.com” Set olRecip = Item.Recipients.Add(olBcc) olRecip.Type = olBcc If Not olRecip.Resolve Then olMsg =…