Posts

Showing posts from February, 2016

Setting Your Project up for Success Using Lean, BIM and IPD

http://www.dpr.com/view/setting-up-project-success

Harvesting All Email Addresses From an Outlook Mailbox | TechnicLee

Harvesting All Email Addresses From an Outlook Mailbox | TechnicLee : 'via Blog this'

MS Outlook 2010 - save people I reply to automatically in an Outlook Address Book

Image
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

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.Rows(I).Borders(wdBorderTop)         Next I                  I = objTable.Rows.Count         'objTable.Columns(I).Borders(wdBorderVertical).LineStyle = wdLineStyleDashSmallGap         BDR_Dash objTable.Rows(objTable.Rows.Count).Borders(wdBorderVertical)                  BDR_Double objTable.Rows(objTable.Rows.Count).Borders(wdBorderTop)                  BDR

Curtain Wall documentation automation with Dynamo - YouTube

Curtain Wall documentation automation with Dynamo - YouTube : 'via Blog this'

Big Data: Beware of the Digital Diogenes Syndrome - Atos SC

Big Data: Beware of the Digital Diogenes Syndrome - Atos SC : 'via Blog this'

Isovist analysis in Dynamo Studio - Through the Interface

Isovist analysis in Dynamo Studio - Through the Interface : 'via Blog this'

Fiel Sharing & Locking - CLOUD systems- Gartner Newsletter: Managing File Data Growth with Cloud NAS | Nasuni

Gartner Newsletter: Managing File Data Growth with Cloud NAS | Nasuni : 'via Blog this'

Outlook add headers and tags for project IDs

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 & "] "             m.HTMLBody = m.HTMLBody & vbCr & " [X-MS-Exchange-Organization-AECOM-Project:" & strProjectNumber & "] "         Case olFormatPlain , olFormatRichText , ol

Revit Split and reorganize content for implementation in Library content by revit version.

''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