<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Envision CAD | MicroStation Training &amp; InRoads Training</title>
	
	<link>http://envisioncad.com</link>
	<description>CAD Resources &amp; Training</description>
	<lastBuildDate>Fri, 05 Mar 2010 15:49:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/EnvisionCAD" /><feedburner:info uri="envisioncad" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Top Ten things worth mentioning about InRoads Suite V8i SS1</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/IGUtPhB0x3k/</link>
		<comments>http://envisioncad.com/tips/inroads-ss1/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:29:06 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[InRoads]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1501</guid>
		<description><![CDATA[InRoads SELECTSeries 1 was released about a week ago and there are a few tools worth mentioning right away to get you excited about this release. The following month’s tips will look at these enhancements in more detail. Bentley Map was... <a href="http://envisioncad.com/tips/inroads-ss1/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>InRoads SELECTSeries 1 was released about a week ago and there are a few tools worth mentioning right away to get you excited about this release.  The following month’s tips will look at these enhancements in more detail.</p>
<ol>
<li>Bentley Map was added for FREE to the Bentley InRoads Suite and Bentley Rail Track Suite products. </li>
<li>InRoads tools and workflow are integrated into the MicroStation interface tasks, tools, and pull down menus.</li>
<li>Open a native GEOPAK Surface TIN file.  No need to translate or use LandXML.</li>
<li>LandXML files are now Schema 1.2 compliant.</li>
<li>New tool in the Surface command called Change Triangle Edge.  a.k.a. Flip Face or Swap Edge in other software packages.</li>
<li>Overlay tools were added to Roadway Designer.</li>
<li>A new tool set called Site Modeler will allow for fast dynamic design of site models.</li>
<li>Civil Geometry is a new toolset that stores the geometry data right in the DGN file.</li>
<li>Data Acquisition tools were added to help assemble various data sources and store them in the DGN file.</li>
<li>InRoads commands can be accessed from right clicking in MicroStation and selecting from the context menu.</li>
</ol>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/IGUtPhB0x3k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/inroads-ss1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/inroads-ss1/</feedburner:origLink></item>
		<item>
		<title>Searching Sub-folders</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/wylA_EHa5Ss/</link>
		<comments>http://envisioncad.com/tips/searching-sub-folders/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:26:38 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1496</guid>
		<description><![CDATA[The Windows Script Host Object Model has many useful properties and methods for dealing with files, folders, disks, etc. One common use is for searching for a file in one or more sub-folders. The example function below illustrates how to use the... <a href="http://envisioncad.com/tips/searching-sub-folders/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>The Windows Script Host Object Model has many useful properties and methods for dealing with files, folders, disks, etc.  One common use is for searching for a file in one or more sub-folders. The example function below illustrates how to use the <code>FileSystemObject</code> along with the <code>Folders</code>, <code>Folder</code>, <code>Files</code>, and File objects to iterate through sub folders to find a particular file.</p>
<p>To use this example in your macros you must add a reference to the Windows Script Host Object Model library. To do this select <strong>Tools > References</strong>, then scroll toward the bottom of the list and select <strong>Windows Script Host Object Model</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #008000;">'
</span><span style="color: #008000;">'This function requires a reference to: 
</span><span style="color: #008000;">'Windows Script Host Object Model (C:\Windows\System32\wshom.ocx)&quot;
</span><span style="color: #008000;">'
</span><span style="color: #000080;">Public</span> <span style="color: #000080;">Function</span> FindFile(<span style="color: #000080;">ByVal</span> strFileName <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, _
<span style="color: #000080;">ByVal</span> strStartPath <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, <span style="color: #000080;">ByRef</span> strFoundPath) <span style="color: #000080;">As</span> <span style="color: #000080;">Boolean</span>
  <span style="color: #000080;">Dim</span> objFSO <span style="color: #000080;">As</span> FileSystemObject
  <span style="color: #000080;">Dim</span> objFiles <span style="color: #000080;">As</span> Files
  <span style="color: #000080;">Dim</span> objFile <span style="color: #000080;">As</span> File
  <span style="color: #000080;">Dim</span> objFolders <span style="color: #000080;">As</span> Folders
  <span style="color: #000080;">Dim</span> objFolder <span style="color: #000080;">As</span> Folder
&nbsp;
  strFoundPath = <span style="color: #800000;">&quot;&quot;</span>
&nbsp;
  <span style="color: #008000;">'Set new instance if File System Object 
</span>  <span style="color: #000080;">Set</span> objFSO = <span style="color: #000080;">New</span> FileSystemObject
&nbsp;
  <span style="color: #008000;">'Get all sub folders in the starting folder 
</span>  <span style="color: #000080;">Set</span> objFolders = objFSO.GetFolder(strStartPath).SubFolders
&nbsp;
  <span style="color: #008000;">'Iterate through all sub folders 
</span>  <span style="color: #000080;">For</span> <span style="color: #000080;">Each</span> objFolder <span style="color: #000080;">In</span> objFolders
&nbsp;
   <span style="color: #008000;">'Get all of the files in this sub folder 
</span>    <span style="color: #000080;">Set</span> objFiles = objFolder.Files
&nbsp;
   <span style="color: #008000;">'Iterate through files in this sub folder 
</span>    <span style="color: #000080;">For</span> <span style="color: #000080;">Each</span> objFile <span style="color: #000080;">In</span> objFiles
&nbsp;
     <span style="color: #008000;">'If we find the file store the path name and exit 
</span>      <span style="color: #000080;">If</span> StrComp(strFileName, objFile.Name, vbTextCompare) = 0 <span style="color: #000080;">Then</span>
        strFoundPath = objFSO.BuildPath(strStartPath, objFolder.Name)
        FindFile = <span style="color: #000080;">True</span>
        <span style="color: #000080;">Exit</span> <span style="color: #000080;">Function</span>
&nbsp;
      <span style="color: #000080;">End</span> <span style="color: #000080;">If</span>
    <span style="color: #000080;">Next</span>
  <span style="color: #000080;">Next</span>
&nbsp;
  FindFile = <span style="color: #000080;">False</span>
<span style="color: #000080;">End</span> <span style="color: #000080;">Function</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/wylA_EHa5Ss" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/searching-sub-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/searching-sub-folders/</feedburner:origLink></item>
		<item>
		<title>Connect MicroStation V8i to a Web Map Server</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/uhX8as894tk/</link>
		<comments>http://envisioncad.com/tips/connect-microstation-v8i-to-a-web-map-server/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:07:58 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Video Tips]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[MicroStation]]></category>
		<category><![CDATA[V8i]]></category>
		<category><![CDATA[WMS]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=956</guid>
		<description><![CDATA[MicroStation V8i has the added functionality to connect to a live Web Map Server (WMS). WMS is a standard for serving georeferenced map images over the internet that are generated from GIS databases. There are a list of free or demo WMS... <a href="http://envisioncad.com/tips/connect-microstation-v8i-to-a-web-map-server/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>MicroStation V8i has the added functionality to connect to a live Web Map Server (WMS).  WMS is a standard for serving georeferenced map images over the internet that are generated from GIS databases.  There are a list of free or demo WMS connections delivered with MicroStation that will allow you to quickly get started with this new capability.</p>
<h3>Connect to a Web Map Server</h3>
<ol>
<li>Open the <strong>Raster Reference</strong> dialog.</li>
<li>From the Raster Reference dialog select the drop down arrow for new connection and select <strong>WMS</strong>.  The WMS Map Editor dialog will appear.<br />
<img src="http://envisioncad.com/wp-content/images/wms-1.png" width="432" height="224" alt="" title="" />
</li>
<li>From the WMS Map Editor dialog <D> the Servers button.  The Servers Manager dialog will appear.<br />
<img src="http://envisioncad.com/wp-content/images/wms-2.png" width="432" height="173" alt="" title="" />
</li>
<li>Select the <strong>Terraservice.net</strong> connection. <strong>&lt;D&gt;</strong> the <strong>OK</strong> button the Servers Manager dialog will close and will populate the WMS Map Editor dialog.</li>
<li>Select the <strong><em>USGS</em> Digital Ortho-Quadrangles</strong> layer and &lt;D&gt; the Add to map button.  The Layer will be added to the Map Layers section of the dialog.</li>
<li>Then &lt;D&gt; the <strong>Save and Attach</strong> button.  The New WMS file dialog will appear.<br />
<img src="http://envisioncad.com/wp-content/images/wms-3.png" width="432" height="242" alt="" title="" />
</li>
<li><strong>Save</strong> the new <strong>XWMS</strong> file and <strong>Attach</strong> the file.  Now the DOQ will overlay your design.<br />
<img src="http://envisioncad.com/wp-content/images/wms-4.png" width="432" height="225" alt="" title="" />
</li>
</ol>
<p><strong>Note:</strong> If the DOQ is not placed at the correct location right click the WMS file name and change the coordinate system so the DGN file and WMS file coordinates match.</p>
<h3>Video Demo</h3>
<p><embed src="http://blip.tv/play/AYGHmVsA" type="application/x-shockwave-flash" width="640" height="375" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/uhX8as894tk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/connect-microstation-v8i-to-a-web-map-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/connect-microstation-v8i-to-a-web-map-server/</feedburner:origLink></item>
		<item>
		<title>New ACS Plane Snap in V8i</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/HVAAgW-GChE/</link>
		<comments>http://envisioncad.com/tips/new-acs-plane-snap-in-v8i/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 16:58:13 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[MicroStation]]></category>
		<category><![CDATA[Snap]]></category>
		<category><![CDATA[V8i]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1491</guid>
		<description><![CDATA[The new ACS Plane Snap has replaced the Depth Lock which was used in 3D files to keep elements placed as planar. In V8i the new way of placing elements as planar is to use the ACS Plane Snap lock. The Auxiliary Coordinates dialog has moved to the... <a href="http://envisioncad.com/tips/new-acs-plane-snap-in-v8i/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>The new ACS Plane Snap has replaced the Depth Lock which was used in 3D files to keep elements placed as planar.  In V8i the new way of placing elements as planar is to use the ACS Plane Snap lock.  The Auxiliary Coordinates dialog has moved to the Primary toolbar for easy access the whole process can be done in 3 easy steps.</p>
<ol>
<li>From the Primary Toolbar open the <strong>Auxiliary Coordinates</strong> dialog.<br />
<img src="http://envisioncad.com/wp-content/images/snap-primarytools-640.png" width="640" height="89" alt="" title="" />
</li>
<li>In the <strong>View 1</strong> row under the <strong>Origin Z</strong> column type your active depth in the field.<br />
<img src="http://envisioncad.com/wp-content/images/snap2.jpg" width="640" height="302" alt="" title="" /></li>
<li>In the Snap Lock flyout or dialog check <strong><em>ON</em> ACS Plane Snap</strong>.<br />
<img src="http://envisioncad.com/wp-content/images/snap3.png" width="185" height="427" alt="" title="" /><br />
Now when you place elements in the 3D file even when you are snapping to varying elevations the element will be planar at the desired elevation.</li>
</ol>
<h3>Additional Notes</h3>
<ul>
<li>The Key-in AZ= could still be used to define the active depth of the view.</li>
<li>Remember the active depth can’t be set outside the view clipping plane.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/HVAAgW-GChE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/new-acs-plane-snap-in-v8i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/new-acs-plane-snap-in-v8i/</feedburner:origLink></item>
		<item>
		<title>Envision Newsletter February 2010</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/uS-QMzu8PR4/</link>
		<comments>http://envisioncad.com/newsletter-archives/envision-newsletter-february-2010/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 15:19:33 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Newsletter Archives]]></category>

		<guid isPermaLink="false">http://envisioncad.com/mailchimp-archives/envision-newsletter-february-2010/</guid>
		<description><![CDATA[Training Assessment for MicroStation and InRoads We have developed surveys to help identify the areas where your users may need additional training.&#160; Using these survey results you will be able to... <a href="http://envisioncad.com/newsletter-archives/envision-newsletter-february-2010/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<table width="100%" cellpadding="10" cellspacing="0" class="backgroundTable" style="background-color: #003366">
<tr>
<td valign="top" align="center">
<table id="contentTable" cellspacing="0" cellpadding="0" width="600" style="border: 0px none #000000;margin-top: 10px">
<tr>
<td>
<table width="600" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="middle" class="headerBar" style="background-color: #FFFFFF;border-top: 0px none #333333;border-bottom: 0px none #FFFFFF;padding: 0px">
<div class="headerBarText" style="color: #333333;font-size: 30px;font-family: Verdana;font-weight: normal;text-align: left">
<div style="text-align: left"><img src="http://img.mailchimp.com/2009/03/20/c8671c1acf_newsletter_header.jpg" alt="" border="0" style="margin: 0;padding: 0"></div>
</div>
</td>
</tr>
</table>
<table width="600" cellpadding="20" cellspacing="0" class="bodyTable">
<tr>
<td valign="top" class="defaultText" align="left" style="font-size: 12px;color: #000000;line-height: 150%;font-family: Verdana;width: 400px;background-color: #ffffff;padding: 20px"><span style="padding-bottom: 8px;font-size: 24px;font-weight: bold;color: #003366;font-family: Georgia;line-height: 110%" class="title">Training Assessment for MicroStation and InRoads<br /> </span>We have developed surveys to help identify the areas where your users may need additional training.&nbsp; Using these survey results you will be able to customize your training and cover only the topics needed.&nbsp; This focused training will shorten the time your users spend in training and allow you to stretch your training budget further. Surveys are available for MicroStation, InRoads, and InRoads Survey.&nbsp; We can distribute the survey forms to your users, gather the responses then provide you with the results and a recommendation for training.&nbsp; Please <a href="http://envisioncad.com/contact/">contact us</a> to find out more.</p>
<p><span class="title">Tips &amp; Tricks<span style="font-size: medium"><br /></span></span>
<p><b>MicroStation:</b> <a href="http://envisioncad.com/tips/text-field-place-holder/" rel="bookmark" title="Permanent Link to Text Field Place&nbsp;Holder">Text  Field Place&nbsp;Holder</a></p>
<p><b>InRoads:</b> <a href="http://envisioncad.com/tips/feature-name-override-part-2/" rel="bookmark" title="Permanent Link to Feature Name Override &ndash; Part&nbsp;2">Feature  Name Override &ndash; Part&nbsp;2</a></p>
<p><b>VBA:</b> <a href="http://envisioncad.com/tips/open-a-web-page/" rel="bookmark" title="Permanent Link to Open a web page, text file, pdf file,&nbsp;etc.">Open  a web page, text file, pdf file,&nbsp;etc.</a></p>
<p><b>Civil 3D:</b>&nbsp;<a href="http://envisioncad.com/tips/subscription-advantage-pack/" rel="bookmark" title="Permanent Link to Subscription Advantage&nbsp;Pack">Subscription  Advantage&nbsp;Pack</a></p>
<p> <img width="332" height="85" border="0" src="http://gallery.mailchimp.com/02957622a713c795de0e21454/images/social_buttons_for_email_1.png" alt="">   </p>
<p><font size="6" face="Georgia" color="#003366"><span style="font-size: 24px;line-height: 26px" class="Apple-style-span"><b><br /></b></span></font></td>
<td valign="top" class="sideColumn" align="left" style="margin: 0px;background-color: #ffffff;border-left: 1px dashed #CCCCCC;text-align: left;width: 200px;padding: 20px">
<div class="sideColumnText" style="font-size: 11px;font-weight: normal;color: #666666;font-family: Arial;line-height: 150%"><span class="sideColumnTitle" style="font-size: 15px;font-weight: bold;color: #333333;font-family: Arial;line-height: 150%">Upcoming Events</span><br /><a href="http://envisioncad.com/event/nebraska-user-group-neug/">&bull; Nebraska User Group</a> 3/30/10 &#8211; 3/31/10<br /><a href="http://envisioncad.com/event/be-together/">&bull; Be Together: The Be Communities &#8216;Live&#8217; Conference</a>&nbsp; 5/17/10 &#8211; 5/20/10</p>
<p> <span class="sideColumnTitle" style="font-size: 15px;font-weight: bold;color: #333333;font-family: Arial;line-height: 150%"> Online Classes</span><a title="Permanent Link to MicroStation V8 XM Edition Fundamentals" rel="bookmark" href="http://envisioncad.com/training-dates/microstation-v8-xm-edition-fundamentals/"><br /></a>            			                          			             <a href="http://envisioncad.com/training-dates/microstation-v8i-edition-user-upgrade/">&bull; MicroStation  V8i Edition User&nbsp;Upgrade</a> &#8211; 2/24/2010<br /><a href="http://envisioncad.com/training-dates/bentley-map-fundamentals-v8i/">&bull; Bentley  Map Fundamentals&nbsp;V8i</a> &#8211; 3/02/2010<br />            			                          			             <a href="http://envisioncad.com/training-dates/microstation-v8i-edition-fundamentals/">&bull; MicroStation  V8i&nbsp;Fundamentals</a> &#8211; 3/09/2010<br /><a href="http://envisioncad.com/training-dates/cadscript-fundamentals-v8i/">&bull; CADscript  Fundamentals&nbsp;V8i</a> &#8211; 3/23/2010</p>
<p> <span class="sideColumnTitle" style="font-size: 15px;font-weight: bold;color: #333333;font-family: Arial;line-height: 150%">Open Enrollment Classes</span><br />&bull;         			                      			             <a href="http://envisioncad.com/training-dates/inroads-fundamentals/">InRoads&nbsp;Fundamentals</a> &#8211; 2/15/10<br /><a href="http://envisioncad.com/training-dates/microstation-v8i-edition-user-upgrade/">&bull;  MicroStation  V8i Edition User&nbsp;Upgrade</a> &#8211; 2/25/2010<br />        			                      			             <a href="http://envisioncad.com/training-dates/microstation-v8i-edition-user-upgrade/">&bull; MicroStation  V8i Edition User&nbsp;Upgrade</a> &#8211; 3/25/2010</p>
</div>
</td>
</tr>
<tr>
<td class="footerRow" valign="top" colspan="2" align="left" style="background-color: #666666;border-top: 0px none #FFFFFF;padding: 20px">
<div class="footerText" style="font-size: 10px;color: #ffffff;line-height: 100%;font-family: Verdana">
<p><a href="http://envisioncad.us1.list-manage.com/subscribe?u=02957622a713c795de0e21454&amp;id=ed004438f8" class="tpl-content-highlight"><span>Subscribe to this Newsletter</span></a><span><br /></span><a class="tpl-content-highlight" href="http://envisioncad.us1.list-manage.com/unsubscribe?u=02957622a713c795de0e21454&amp;id=ed004438f8&amp;e=[UNIQID]&amp;c=ee0558a965"><span>Unsubscribe</span></a></p>
<p> We do not sell Bentley or Autodesk products.<br /> MicroStation and InRoads are Bentley products and trademarked as such.<br /> Civil 3D is an Autodesk product and trademarked as such.<br /> We only offer this information as a benefit to our subscribers.</p>
<p>&copy;2009 Envision<br /> 8517 Excelsior Dr, Suite 102, Madison, WI 53717<br /> Phone: (608) 836-3903 Fax: (608) 662-9043</p>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/uS-QMzu8PR4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/newsletter-archives/envision-newsletter-february-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/newsletter-archives/envision-newsletter-february-2010/</feedburner:origLink></item>
		<item>
		<title>Text Field Place Holder</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/5Cpq_-bNSCs/</link>
		<comments>http://envisioncad.com/tips/text-field-place-holder/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 22:32:05 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1335</guid>
		<description><![CDATA[New in MicroStation V8i are Text Field Place Holders which will allow for the field to be undefined until used in a model. In this example we will use a Cell Properties Place Holder that will update values of the cell after the cell has been placed... <a href="http://envisioncad.com/tips/text-field-place-holder/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>New in MicroStation V8i are Text Field Place Holders which will allow for the field to be undefined until used in a model.  In this example we will use a Cell Properties Place Holder that will update values of the cell after the cell has been placed in the drawing.</p>
<ol>
<li>Open an existing cell for editing.  In this example we will place a Text Field Place Holder for the Origin of the cell placement.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-1.png" width="73" height="89" alt="" title="" />
</div>
</li>
<li>Edit the text in the cell add a new line and Right Click from the fly out menu select <strong>Insert Field</strong>. The Field Type dialog will appear.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-2.png" width="293" height="150" alt="" title="" />
</div>
</li>
<li>From the Field Type dialog select <strong>Place Holder Cell</strong> Properties from the drop down menu. Then select the <strong>OK</strong> button the Fields Editor dialog will appear.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-3.png" width="131" height="61" alt="" title="" />
</div>
</li>
<li>Expand the <strong>Geometry</strong> section of the dialog and select <strong>Origin</strong>. Modify the right side of the dialog to format the coordinate readout as you like.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-4.png" width="403" height="382" alt="" title="" />
</div>
</li>
<li>Select the <strong>OK</strong> button the field Origin will be placed in the Word processor dialog.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-5.png" width="79" height="93" alt="" title="" />
</div>
</li>
<li>Place the cell into a DGN file.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-6.png" width="432" height="214" alt="" title="" />
</div>
</li>
<li>To update the place holder field use the key-in <em><strong>&#8220;field update all&#8221;</strong></em>.  The Origin field will be updated with the placement coordinates.
<div style="text-align: center;">
<img src="http://envisioncad.com/wp-content/textfield-7.png" width="259" height="270" alt="" title="" />
</div>
</li>
</ol>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/5Cpq_-bNSCs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/text-field-place-holder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/text-field-place-holder/</feedburner:origLink></item>
		<item>
		<title>Open a web page, text file, pdf file, etc.</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/dEHqulXO0mk/</link>
		<comments>http://envisioncad.com/tips/open-a-web-page/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 22:07:40 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1331</guid>
		<description><![CDATA[In many VBA applications it is useful to direct the user to a support web page, pdf file, or to a text file your application creates. Use the OpenDefaultApp function below to open any file in its default application. The function mimics double... <a href="http://envisioncad.com/tips/open-a-web-page/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>In many VBA applications it is useful to direct the user to a support web page, pdf file, or to a text file your application creates. Use the <code>OpenDefaultApp</code> function below to open any file in its default application. The function mimics double clicking on the file icon in a My Computer window or on your desktop; to open a web page just pass it the web address. The <code>ShellExecute</code> function declaration is required, however you may skip the <code>Enum</code> definition and always use a WindowState of 1.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #000080;">Public</span> <span style="color: #000080;">Enum</span> AppWindowState
    SW_SHOWNORMAL = 1
    SW_SHOWMINIMIZED = 2
    SW_SHOWMAXIMIZED = 3
    SW_SHOWDEFAULT = 10
<span style="color: #000080;">End</span> <span style="color: #000080;">Enum</span>
&nbsp;
<span style="color: #000080;">Private</span> <span style="color: #000080;">Declare</span> <span style="color: #000080;">Function</span> ShellExecute <span style="color: #000080;">Lib</span> <span style="color: #800000;">&quot;shell32.dll&quot;</span> _
<span style="color: #000080;">Alias</span> <span style="color: #800000;">&quot;ShellExecuteA&quot;</span> ( _
<span style="color: #000080;">ByVal</span> hWnd <span style="color: #000080;">As</span> <span style="color: #000080;">Long</span>, _
<span style="color: #000080;">ByVal</span> lpOperation <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, _
<span style="color: #000080;">ByVal</span> lpFile <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, _
<span style="color: #000080;">ByVal</span> lpParameters <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, _
<span style="color: #000080;">ByVal</span> lpDirectory <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, _
<span style="color: #000080;">ByVal</span> nShowCmd <span style="color: #000080;">As</span> <span style="color: #000080;">Long</span>) <span style="color: #000080;">As</span> <span style="color: #000080;">Long</span>
&nbsp;
&nbsp;
<span style="color: #000080;">Public</span> <span style="color: #000080;">Function</span> OpenDefaultApp( _
strFileName <span style="color: #000080;">As</span> <span style="color: #000080;">String</span>, _
WindowState <span style="color: #000080;">As</span> AppWindowState) <span style="color: #000080;">As</span> <span style="color: #000080;">Boolean</span>
    <span style="color: #000080;">Dim</span> lHWnd <span style="color: #000080;">As</span> <span style="color: #000080;">Long</span>
    <span style="color: #000080;">Dim</span> lResult <span style="color: #000080;">As</span> <span style="color: #000080;">Long</span>
&nbsp;
    lResult = ShellExecute( _
lHWnd, <span style="color: #800000;">&quot;open&quot;</span>, strFileName, _
vbNullString, vbNullString, WindowState)
&nbsp;
    OpenDefaultApp = (lResult &gt; 32)
<span style="color: #000080;">End</span> <span style="color: #000080;">Function</span>
&nbsp;
<span style="color: #000080;">Sub</span> OpenTest()
    <span style="color: #008000;">' Open a web page
</span>    OpenDefaultApp _
<span style="color: #800000;">&quot;http://envisioncad.com&quot;</span>, _
AppWindowState.SW_SHOWNORMAL
&nbsp;
    <span style="color: #008000;">' Open a text file
</span>    OpenDefaultApp _
Environ$(<span style="color: #800000;">&quot;USERPROFILE&quot;</span>) &amp; <span style="color: #800000;">&quot;\My Documents\test.txt&quot;</span>, _
AppWindowState.SW_SHOWNORMAL
&nbsp;
<span style="color: #000080;">End</span> <span style="color: #000080;">Sub</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/dEHqulXO0mk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/open-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/open-a-web-page/</feedburner:origLink></item>
		<item>
		<title>Feature Name Override – Part 2</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/O0NJLKiT-GQ/</link>
		<comments>http://envisioncad.com/tips/feature-name-override-part-2/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 21:53:50 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[InRoads]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1324</guid>
		<description><![CDATA[Last month we showed how to apply feature name overrides by editing individual template point names. Template point name overrides – renaming multiple points In the Create Template dialog, select Tools>Apply Feature Name... <a href="http://envisioncad.com/tips/feature-name-override-part-2/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>Last month we <a href="http://envisioncad.com/tips/feature-name-override/">showed how to apply feature name overrides</a> by editing individual template point names. </p>
<h3>Template point name overrides – renaming multiple points</h3>
<div style="float: left; margin-right: 35px; width: 200px;">
<img src="http://envisioncad.com/wp-content/images/fno-1.png" width="200" height="199" alt="" />
</div>
<ul>
<li>In the Create Template dialog, select Tools>Apply Feature Name Overrides</li>
<li>Using [CTL] or [Shift] select a group of points to apply Name Overrides</li>
<li>Key-in the override name and select Apply</li>
</ul>
<div class="clear" style="height: 20px;"></div>
<div style="float: left; margin-right: 35px; width: 260px;">
<img src="http://envisioncad.com/wp-content/images/fno-2.png" width="260" height="163" alt="" class="float: left; margin-right: 15px;" />
</div>
<ul>
<li>Templates points assigned overrides are color coded in the Create Template dialog</li>
<li>Select an individual point for editing to review the assigned name override</li>
<li>Alternately, choose the &#8216;Active Template&#8217; tab to review all points in the template (see December 2009 tip)</li>
</ul>
<div class="clear"></div>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/O0NJLKiT-GQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/feature-name-override-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/feature-name-override-part-2/</feedburner:origLink></item>
		<item>
		<title>Subscription Advantage Pack</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/LcAjTpkNYYU/</link>
		<comments>http://envisioncad.com/tips/subscription-advantage-pack/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 21:29:38 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Civil 3D]]></category>

		<guid isPermaLink="false">http://envisioncad.com/?p=1320</guid>
		<description><![CDATA[The Autodesk&#174; Subscription Advantage Pack for AutoCAD&#174; Civil 3D&#174; 2010 provides new functionality for importing and visualizing point clouds and designing roundabouts, and powerful enhancements that can help streamline existing workflows... <a href="http://envisioncad.com/tips/subscription-advantage-pack/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<p>The Autodesk&reg; Subscription Advantage Pack for AutoCAD&reg; Civil 3D&reg; 2010 provides new functionality for importing and visualizing point clouds and designing roundabouts, and powerful enhancements that can help streamline existing workflows in AutoCAD&reg; Civil 3D&reg; 2010 software.</p>
<p>This Subscription Advantage Pack can be downloaded from the Autodesk&reg; Subscription Center.</p>
<p>After the Subscription Advantage Pack is downloaded and installed, you can access the Subscription Advantage Pack Help from the Civil 3D Help drop-down to review the new functionality and enhancements.</p>
<p><img src="http://envisioncad.com/wp-content/images/subscription-1.png" width="181" height="102" alt="" title="" /></p>
<p><img src="http://envisioncad.com/wp-content/images/subscription-2.png" width="395" height="207" alt="" title="" /></p>
<p><img src="http://envisioncad.com/wp-content/images/subscription-3.png" width="396" height="220" alt="" title="" /></p>
<p><img src="http://envisioncad.com/wp-content/images/subscription-4.png" width="395" height="110" alt="" title="" /></p>
<p><img src="http://envisioncad.com/wp-content/images/subscription-5.png" width="185" height="299" alt="" title="" /></p>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/LcAjTpkNYYU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/tips/subscription-advantage-pack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/tips/subscription-advantage-pack/</feedburner:origLink></item>
		<item>
		<title>Envision Newsletter January 2010</title>
		<link>http://feedproxy.google.com/~r/EnvisionCAD/~3/zF0buOolEt4/</link>
		<comments>http://envisioncad.com/newsletter-archives/envision-newsletter-january-2010/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 18:23:48 +0000</pubDate>
		<dc:creator>Chris Coyier</dc:creator>
				<category><![CDATA[Newsletter Archives]]></category>

		<guid isPermaLink="false">http://envisioncad.com/mailchimp-archives/envision-newsletter-january-2010/</guid>
		<description><![CDATA[2010 Schedule Posted Envision's classroom and distance training schedule has been posted for 2010.&#160; New classes are available for AutoCAD Civil 3D 2010, Bentley CADScript, and Bentley Map.&#160; All... <a href="http://envisioncad.com/newsletter-archives/envision-newsletter-january-2010/">Read&#160;more</a>]]></description>
			<content:encoded><![CDATA[<table width="100%" cellpadding="10" cellspacing="0" class="backgroundTable" style="background-color: #003366">
<tr>
<td valign="top" align="center">
<table id="contentTable" cellspacing="0" cellpadding="0" width="600" style="border: 0px none #000000;margin-top: 10px">
<tr>
<td>
<table width="600" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="middle" class="headerBar" style="background-color: #FFFFFF;border-top: 0px none #333333;border-bottom: 0px none #FFFFFF;padding: 0px">
<div class="headerBarText" style="color: #333333;font-size: 30px;font-family: Verdana;font-weight: normal;text-align: left">
<div style="text-align: left"><img src="http://img.mailchimp.com/2009/03/20/c8671c1acf_newsletter_header.jpg" alt="" border="0" style="margin: 0;padding: 0"></div>
</div>
</td>
</tr>
</table>
<table width="600" cellpadding="20" cellspacing="0" class="bodyTable">
<tr>
<td valign="top" class="defaultText" align="left" style="font-size: 12px;color: #000000;line-height: 150%;font-family: Verdana;width: 400px;background-color: #ffffff;padding: 20px"><span style="padding-bottom: 8px;font-size: 24px;font-weight: bold;color: #003366;font-family: Georgia;line-height: 110%" class="title">2010 Schedule Posted<br /> </span>Envision&#8217;s classroom and distance training schedule has been posted for 2010.&nbsp; New classes are available for AutoCAD Civil 3D 2010, Bentley CADScript, and Bentley Map.&nbsp; All of our InRoads training and MicroStation training classes are available on the V8i edition of the software. </p>
<p><a href="http://envisioncad.com/training/courses/">VIEW COURSE SCHEDULE</a></p>
<p><span class="title">Tips &amp; Tricks<span style="font-size: medium"><br /></span></span>
<p><b>MicroStation:</b> <a title="Permanent Link to Trim Tools Updated in V8i SELECTSeries&nbsp;1" rel="bookmark" href="http://envisioncad.com/tips/trim-tools-updated-in-v8i-selectseries-1/">Trim Tools Updated in V8i SELECTSeries&nbsp;1</a></p>
<p><b>InRoads:</b> <a title="Permanent Link to Feature Name&nbsp;Override" rel="bookmark" href="http://envisioncad.com/tips/feature-name-override/">Feature Name&nbsp;Override</a></p>
<p><b>VBA:</b> <a title="Permanent Link to Evaluating Multiple Expressions in an If&nbsp;Statement" rel="bookmark" href="http://envisioncad.com/tips/multiple-expressions/">Evaluating Multiple Expressions in an If&nbsp;Statement</a></p>
<p><b>Civil 3D:</b> <a title="Permanent Link to Edit Corridor Section Dialog &ndash; Select a Station&nbsp;Incorrect" rel="bookmark" href="http://envisioncad.com/tips/edit-corridor-section-dialog/">Edit Corridor Section Dialog &ndash; Select a Station&nbsp;Incorrect</a></p>
<p> <img height="85" border="0" width="332" src="http://gallery.mailchimp.com/02957622a713c795de0e21454/images/social_buttons_for_email_1.png" alt="">   </p>
<p><font size="6" face="Georgia" color="#003366"><span style="font-size: 24px;line-height: 26px" class="Apple-style-span"><b><br /></b></span></font></td>
<td valign="top" class="sideColumn" align="left" style="margin: 0px;background-color: #ffffff;border-left: 1px dashed #CCCCCC;text-align: left;width: 200px;padding: 20px">
<div class="sideColumnText" style="font-size: 11px;font-weight: normal;color: #666666;font-family: Arial;line-height: 150%"><span class="sideColumnTitle" style="font-size: 15px;font-weight: bold;color: #333333;font-family: Arial;line-height: 150%">Upcoming Events</span><br /><a href="http://envisioncad.com/event/nebraska-user-group-neug/">&bull; Nebraska User Group</a> 3/30/10 &#8211; 3/31/10<br /><a href="http://envisioncad.com/event/be-together/">&bull; Be Together: The Be Communities &#8216;Live&#8217; Conference</a>&nbsp; 5/17/10 &#8211; 5/20/10</p>
<p> <span class="sideColumnTitle" style="font-size: 15px;font-weight: bold;color: #333333;font-family: Arial;line-height: 150%"> Online Classes</span><a href="http://envisioncad.com/training-dates/microstation-v8-xm-edition-fundamentals/" rel="bookmark" title="Permanent Link to MicroStation V8 XM Edition Fundamentals"><br /></a><a href="http://envisioncad.com/training-dates/microstation-v8i-edition-user-upgrade/">&bull; MicroStation V8i Edition User Upgrade</a> 1/13/10<br /><a href="http://envisioncad.com/training-dates/inroads-survey/">&bull; InRoads Survey</a> &#8211; 1/18/10<br /><a href="http://envisioncad.com/training-dates/geopak-corridor-modeler/">&bull; GEOPAK Corridor&nbsp;Modeler</a> &#8211; 2/4/10<br />            			                          			             <a href="http://envisioncad.com/training-dates/autocad-civil-3d-2010-roadway-design/">&bull; AutoCAD Civil 3D 2010 Roadway&nbsp;Design</a> &#8211; 2/9/10</p>
<p> <span class="sideColumnTitle" style="font-size: 15px;font-weight: bold;color: #333333;font-family: Arial;line-height: 150%">Open Enrollment Classes</span><br /><span><a href="http://envisioncad.com/training-dates/microstation-v8i-edition-user-upgrade/">&bull; MicroStation V8i Edition User Upgrad</a>e &#8211; 1/14/10<br /></span><a href="http://envisioncad.com/training-dates/inroads-survey/">&bull; InRoads Survey</a> &#8211; 1/20/10<br /><a href="http://envisioncad.com/training-dates/autocad-civil-3d-2010-roadway-design/">&bull; AutoCAD Civil 3D 2010<br />&bull; Roadway&nbsp;Design</a> &#8211; 1/26/10<br />        			                      			             <a href="http://envisioncad.com/training-dates/inroads-update/">&bull; InRoads&nbsp;Update</a> &#8211; 2/2/10<br /><a href="http://envisioncad.com/training-dates/microstation-v8i-edition-fundamentals/">&bull; MicroStation V8i&nbsp;Fundamentals</a> &#8211; 2/9/10<br />&bull;         			                      			             <a href="http://envisioncad.com/training-dates/inroads-fundamentals/">InRoads&nbsp;Fundamentals</a> &#8211; 2/15/10</p>
</div>
</td>
</tr>
<tr>
<td class="footerRow" valign="top" colspan="2" align="left" style="background-color: #666666;border-top: 0px none #FFFFFF;padding: 20px">
<div class="footerText" style="font-size: 10px;color: #ffffff;line-height: 100%;font-family: Verdana">
<p><a href="http://envisioncad.us1.list-manage.com/subscribe?u=02957622a713c795de0e21454&amp;id=ed004438f8" class="tpl-content-highlight"><span>Subscribe to this Newsletter</span></a><span><br /></span><a class="tpl-content-highlight" href="http://envisioncad.us1.list-manage.com/unsubscribe?u=02957622a713c795de0e21454&amp;id=ed004438f8&amp;e=[UNIQID]&amp;c=68170efc8a"><span>Unsubscribe</span></a></p>
<p> We do not sell Bentley or Autodesk products.<br /> MicroStation and InRoads are Bentley products and trademarked as such.<br /> Civil 3D is an Autodesk product and trademarked as such.<br /> We only offer this information as a benefit to our subscribers.</p>
<p>&copy;2009 Envision<br /> 8517 Excelsior Dr, Suite 102, Madison, WI 53717<br /> Phone: (608) 836-3903 Fax: (608) 662-9043</p>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<img src="http://feeds.feedburner.com/~r/EnvisionCAD/~4/zF0buOolEt4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://envisioncad.com/newsletter-archives/envision-newsletter-january-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://envisioncad.com/newsletter-archives/envision-newsletter-january-2010/</feedburner:origLink></item>
	</channel>
</rss>
