Supposedly this button will auto-add everyone I reply to in an outlook "Suggested Contacts" folder. Not sure why it was off or if group policy disabled it.
Table Format V2.0 Option Explicit Sub Table_Format_bottom_right() Dim objTable As Table Dim I As Integer Set objTable = Selection.Tables(1) With objTable ''format colors For I = objTable.Columns.Count To 1 Step -1 ''Shading ShadeMod .Columns(I), I ShadeMod .Rows(I), I ''borders BDR_NONE objTable.Columns(I).Borders(wdBorderHorizontal) BDR_NONE objTable.Rows(I).Borders(wdBorderVertical) BDR_Single objTable.Columns(I).Borders(wdBorderLeft) BDR_Single objTable.Ro...
Sub AddHeader ( m As Outlook.MailItem , strProjectNumber As String ) 'Dim m As Outlook.MailItem Dim pa As Outlook.PropertyAccessor Dim myOlFormat As Integer myOlFormat = m.BodyFormat m.BodyFormat = olFormatUnspecified 'Set m = Application.CreateItem(olMailItem) 'm.Body = m.Subject Set pa = m.PropertyAccessor pa.SetProperty "http://schemas.microsoft.com/mapi/string/{00020386-0000-0000-C000-000000000046}/X-MS-Exchange-Organization-AECOM-Project" , strProjectNumber Select Case myOlFormat Case olFormatHTML m.HTMLBody = m.HTMLBody & vbCr & " [X-MS-Exchange-Organization-AECOM-Project:" & strProjectNumber & "] " ...
''outline version of VBS from CMS file below ''Takes default Revit library and splits it into metric, Imperial and reorganizes IES files and similar to more logical locations. Option Explicit ''''''''''''''''' ''Dim Wscript As New objWSCRIPT_Emulator ''main ''''''''''''''''' Const VBQT = """" Sub main () ''take path from drag and drop '' e.g. ObjArgs(=) should be C:\ProgramData\Autodesk\RVT 2015 '' Set it as the source path '' Dim ObjArgs Dim i ''for drag-n-drop Set ObjArgs = Wscript.Arguments '' For i = 0 To ObjArgs.count - 1 '' Wscript.Echo ObjArgs ( i ) '' Next End Sub Sub SplitRevitLibrary () ''use src p...