Sub Autorun ()
'
' This is a sample Autorun script (full version which means all features will be enabled and performed)
'
' You can call the normal macro or the function with a "Silent" parameter using the normal macro name preceded by "function"" 
' to avoid a possible pop-up. The normal macro will execute the function with a parameter set to "Interactive" which could give
' you a pop-up if required.
'
'
'
    CreateDataBars				' Create the DataBars on the worksheets where it makes sense. 
    
    Application.MacroOptions Macro:="OpenFile", _
        Description:="Open Captured File", ShortcutKey:="G"

'
' Bind additional macro's to keyboard shortcuts (Control-Shift-Letter)
'
    Application.MacroOptions Macro:="HideThisAndSimilarRowsLikeCurrentCell", _
        Description:="", ShortcutKey:="H"
    Application.MacroOptions Macro:="UnHideAllRows", _
        Description:="", ShortcutKey:="U"
    Application.MacroOptions Macro:="DeleteThisAndSimilarRowsLikeCurrentCell", _
        Description:="", ShortcutKey:="D"

    Application.MacroOptions Macro:="Comment_Bookmark_lines_Marking", _
        Description:="", ShortcutKey:="C"
    Application.MacroOptions Macro:="Comment_Bookmark_lines_GoTo", _
        Description:="", ShortcutKey:="T"
    Application.MacroOptions Macro:="Comment_Bookmark_lines_Next_Match", _
        Description:="", ShortcutKey:="F"
    Application.MacroOptions Macro:="Comment_Bookmark_lines_Previous_Match", _
        Description:="", ShortcutKey:="B"
    Application.MacroOptions Macro:="Comment_Bookmark_lines_Unmarking", _
        Description:="", ShortcutKey:="X"
    Application.MacroOptions Macro:="Comment_Bookmark_lines_Unmarked_Hide", _
        Description:="", ShortcutKey:="L"

    Application.MacroOptions Macro:="Find_Yellow_Interior", _
        Description:="Search for Yellow Cells", ShortcutKey:="M"


End Sub
