Wednesday, December 30, 2009

Workaround

If IMExchange does not sync outside the intranet try enabling VPN in iphone settings and restart IMExchange

in reference to: http://web.me.com/rerlsoft/Rerlsoft/FAQ_And_Contact_Details.html (view on Google Sidewiki)

Friday, December 04, 2009

What is 1-σ bars?

What is 1-σ bars?
Is it 1 σ bar above and below IQR?

in reference to:

"Below find box plots and the more traditional error bar plots (with 1-σ bars)"
- http://www.physics.csbsju.edu/stats/box2.html (view on Google Sidewiki)

Wednesday, December 02, 2009

How to print PDF from Iphone

Requirements: Microsoft Outlook up and running in your PC
Usage scenario send an email with the required PDF attached from your iPhone to your own outlook email add to the subject link "#print" and create a rule in MS Outlook to copy/move such emails to a folder named "BatchPrints"

Copy the following code


'###############################################################################
 '### Module level Declarations
 'expose the items in the target folder to events
Option Explicit
Dim WithEvents TargetFolderItems As Items
 'set the string constant for the path to save attachments
Const FILE_PATH As String = "C:\Temp\"

 '###############################################################################
 '### this is the Application_Startup event code in the ThisOutlookSession module
Private Sub Application_Startup()
     'some startup code to set our "event-sensitive" items collection
    Dim ns As Outlook.NameSpace
     '
    Set ns = Application.GetNamespace("MAPI")
    Set TargetFolderItems = ns.Folders.Item( _
    "Personal Folders").Folders.Item("BatchPrints").Items
    
End Sub

 '###############################################################################
 '### this is the ItemAdd event code
Sub TargetFolderItems_ItemAdd(ByVal Item As Object)
     'when a new item is added to our "watched folder" we can process it
    Dim olAtt As Attachment
    Dim i As Integer
    
    If Item.Attachments.Count > 0 Then
        For i = 1 To Item.Attachments.Count
            Set olAtt = Item.Attachments(i)
             'save the attachment
            olAtt.SaveAsFile FILE_PATH & olAtt.FileName
            
             'if its an Excel file, pass the filepath to the print routine
            If UCase(Right(olAtt.FileName, 3)) = "PDF" Then
                PrintAtt (FILE_PATH & olAtt.FileName)
            End If
        Next
    End If
    
    Set olAtt = Nothing
    
End Sub

 '###############################################################################
 '### this is the Application_Quit event code in the ThisOutlookSession module
Private Sub Application_Quit()
    
    Dim ns As Outlook.NameSpace
    Set TargetFolderItems = Nothing
    Set ns = Nothing
    
End Sub


 '###############################################################################
 '### print routine
Sub PrintAtt(fFullPath As String)

     Shell """C:\Program Files\Adobe\Acrobat 7.0\Reader\acrord32.exe"" /h /p """ + fFullPath + """", vbHide
      
  
    
End Sub


Steps

  1. From Outlook, open the VBEditor (Alt+F11)
  2. If not already expanded, expand Microsoft Office Outlook Objects and click on ThisOutlookSession
  3. Copy the code from the Code Snippet box and paste it into the right-hand pane of Outlook's VB Editor window
  4. Edit the code as needed
  5. Create an Outlook folder named "BatchPrints" in your Personal folders (or amend the code: Set TargetFolderItems to an existing folder, for instance change the "Personal Folders" to "Exchange User Name folder")
  6. Create a directory "C:\Temp" (or amend the constant: FILE_PATH to an existing folder)
  7. Change Shell """C:\Program Files\Adobe\Acrobat 7.0\Reader\acrord32.exe"" , need to change the line of code that calls Acrobat to match the path on your system.
  8. Save the project
  9. Restart Outlook (or run the routine "Application_Startup")
Adapted from : link1 and link2

IT Soup Chef's top picks