<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://communities.bentley.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>MicroStation V8i</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/default.aspx</link><description>This is where you can find and contribute to discussions, ideas, and other information about MicroStation V8i.</description><dc:language>en</dc:language><generator>Telligent Community 5.5.134.17017 (Build: 5.5.134.17017)</generator><item><title>Forum Post: Re: Can't write to a DGN using C#</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19569/p/74334/198985.aspx#198985</link><pubDate>Sat, 11 Feb 2012 05:58:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198985</guid><dc:creator>Joerg Teresniak</dc:creator><description>&lt;p&gt;[quote user=&amp;quot;kenwilliams5&amp;quot;]I still get a &amp;quot;File is read-only&amp;quot; error on the line that tries to add the line[/quote]&lt;/p&gt;  &lt;p&gt;I have created a new Console Application project using your code. It runs, the line element was created.&lt;br /&gt;You should check your designfile.&lt;/p&gt;</description></item><item><title>Forum Post: How to add fields in Text Element using VBA objects</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19570/p/74382/198984.aspx#198984</link><pubDate>Sat, 11 Feb 2012 05:34:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198984</guid><dc:creator>Graham</dc:creator><description>&lt;p&gt;I want to do what this subject says. At the moment I can only do it using CadInputQueue, which I got when recording a macro.&lt;/p&gt;  &lt;p&gt;Here&amp;#39;s the only way I know to do it so far:&lt;/p&gt;  &lt;p&gt;This is the code to put a field into a Text Element,&amp;nbsp;using CadInputQueue (it&amp;#39;s all one line of code):&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CadInputQueue.SendMessageToApplication &amp;quot;WORDPROC&amp;quot;, &amp;quot;1 insertField 243 &amp;lt;Evaluator&amp;gt;ElemProp&amp;lt;/Evaluator&amp;gt;&amp;lt;Expression&amp;gt;&amp;lt;Class&amp;gt;&amp;lt;String&amp;gt;MstnText&amp;lt;/String&amp;gt;&amp;lt;/Class&amp;gt;&amp;lt;Access&amp;gt;&amp;lt;String&amp;gt;TextString&amp;lt;/String&amp;gt;&amp;lt;/Access&amp;gt;&amp;lt;Enabler&amp;gt;&amp;lt;String&amp;gt;MstnProp&amp;lt;/String&amp;gt;&amp;lt;/Enabler&amp;gt;&amp;lt;/Expression&amp;gt;&amp;lt;Dependents&amp;gt;&amp;lt;Element0&amp;gt;&amp;lt;ID&amp;gt;&amp;quot; &amp;amp; LCase(DLongToHexString(oEl.ID)) &amp;amp; &amp;quot;&amp;lt;/ID&amp;gt;&amp;lt;/Element0&amp;gt;&amp;lt;/Dependents&amp;gt; 127&amp;gt;&amp;quot;&lt;/p&gt;  &lt;p&gt;However to use it I have to (in code) open the word processor, run the above line of code, then simulate a data click to place the text. The user will see the Word processor open while the code runs, things flash around, it runs slow and looks bad.&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;Is there a VBA object that I can use to do the same thing? Further, I would like to know what all the arguments are to be able to control the contents of the field (eg, display the length of a line&amp;nbsp;or the area of a shape).&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;If it helps, below is a small procedure to place new text elements below all existing text elements in the drawing. The new elements contain a field that displays the text of the existing elements.&lt;/p&gt;  &lt;p&gt;Regards,&lt;/p&gt;  &lt;p&gt;Graham&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;Sub CreateFields()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim startPoint As Point3d&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oEnum As ElementEnumerator&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oEl As Element&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CadInputQueue.SendCommand &amp;quot;CHOOSE ALL&amp;quot;&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oEnum = ActiveModelReference.GetSelectedElements&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; oEnum.Reset&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;do While oEnum.MoveNext&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oEl = oEnum.Current&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If oEl.IsTextElement Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CadInputQueue.SendCommand &amp;quot;WORDPROCESSOR PLACE TEXT ICON&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CadInputQueue.SendMessageToApplication &amp;quot;WORDPROC&amp;quot;, &amp;quot;1 insertField 243 &amp;lt;Evaluator&amp;gt;ElemProp&amp;lt;/Evaluator&amp;gt;&amp;lt;Expression&amp;gt;&amp;lt;Class&amp;gt;&amp;lt;String&amp;gt;MstnText&amp;lt;/String&amp;gt;&amp;lt;/Class&amp;gt;&amp;lt;Access&amp;gt;&amp;lt;String&amp;gt;TextString&amp;lt;/String&amp;gt;&amp;lt;/Access&amp;gt;&amp;lt;Enabler&amp;gt;&amp;lt;String&amp;gt;MstnProp&amp;lt;/String&amp;gt;&amp;lt;/Enabler&amp;gt;&amp;lt;/Expression&amp;gt;&amp;lt;Dependents&amp;gt;&amp;lt;Element0&amp;gt;&amp;lt;ID&amp;gt;&amp;quot; &amp;amp; LCase(DLongToHexString(oEl.ID)) &amp;amp; &amp;quot;&amp;lt;/ID&amp;gt;&amp;lt;/Element0&amp;gt;&amp;lt;/Dependents&amp;gt; 127&amp;gt;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39;CadInputQueue.SendMessageToApplication &amp;quot;WORDPROC&amp;quot;, &amp;quot;1 insertField 243 &amp;lt;Evaluator&amp;gt;ElemProp&amp;lt;/Evaluator&amp;gt;&amp;lt;Expression&amp;gt;&amp;lt;Class&amp;gt;&amp;lt;String&amp;gt;MstnText&amp;lt;/String&amp;gt;&amp;lt;/Class&amp;gt;&amp;lt;Access&amp;gt;&amp;lt;String&amp;gt;TextString&amp;lt;/String&amp;gt;&amp;lt;/Access&amp;gt;&amp;lt;Enabler&amp;gt;&amp;lt;String&amp;gt;MstnProp&amp;lt;/String&amp;gt;&amp;lt;/Enabler&amp;gt;&amp;lt;/Expression&amp;gt;&amp;lt;Dependents&amp;gt;&amp;lt;Element0&amp;gt;&amp;lt;ID&amp;gt;&amp;quot; &amp;amp; LCase(DLongToHexString(oEl.ID)) &amp;amp; &amp;quot;&amp;lt;/ID&amp;gt;&amp;lt;/Element0&amp;gt;&amp;lt;/Dependents&amp;gt; 127 ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????&amp;gt;????0&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; startPoint = oEl.AsTextElement.Origin&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; startPoint.Y = startPoint.Y - oEl.AsTextElement.TextStyle.Height * 1.5&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CadInputQueue.SendDataPoint startPoint, 1&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CadInputQueue.SendReset&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Loop&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommandState.StartDefaultCommand&lt;br /&gt;End Sub&lt;/p&gt;</description></item><item><title>Forum Post: Dimension Driven Design, Generative Components, Parametric Cell Studio, Dependencies, none of the above?</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/74381/198982.aspx#198982</link><pubDate>Sat, 11 Feb 2012 03:40:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198982</guid><dc:creator>jharkless</dc:creator><description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;Disclaimer&lt;/strong&gt;: I hate nothing more than a really vague post/question. So, at the risk of doing so myself, here goes...&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Are these all not very similar concepts?&lt;/strong&gt; I haven&amp;#39;t used any of them but understand that DDD has been around the longest but I hear maybe not very user friendly and not great in 3D (just heresay)? Since I&amp;#39;m looking for simple primitive geometry than complex (solids, etc), I&amp;#39;m thinking GC is probably overkill for my needs (which I may explain further later if I so feel the need) and DDD is what I plan on investing time into getting to know (starting with the 26 part video series I came across).&lt;/p&gt;  &lt;p&gt;But before I do spend said time, I was hoping to know:&lt;/p&gt;  &lt;ol&gt;  &lt;li&gt;What is the future of DDD?&amp;nbsp;&lt;/li&gt;  &lt;li&gt;Has it been updated to make use of the new dependency engine on which V8i uses?&lt;/li&gt;  &lt;/ol&gt;  &lt;p&gt;A much less important question but one to ask nonetheless: why are there so many variations of complex solutions and more importantly, why can&amp;#39;t a catch all solution just exist natively in the platform? Maybe there is a lot of programmatic overhead with the more complicated (GC) stuff, but make a user turn it on first- that should solve that issue.&lt;/p&gt;</description></item><item><title>Forum Post: Re: MicroStation VBA Element Type - Smart Solid/Surface</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19570/p/74297/198979.aspx#198979</link><pubDate>Sat, 11 Feb 2012 00:49:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198979</guid><dc:creator>Quirky</dc:creator><description>&lt;p&gt;Appreciate the advice on Smart second class VBA citizens (MicroStation V8i SS1), hopefully I can determine if a cell element has smart element characteristics... Thanks&lt;/p&gt; </description></item><item><title>Forum Post: Reference Reprojection Problem</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/74377/198971.aspx#198971</link><pubDate>Fri, 10 Feb 2012 21:09:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198971</guid><dc:creator>R22YU</dc:creator><description>&lt;p&gt;Hi All,&lt;/p&gt;  &lt;p&gt;I am having trouble with v8i reprojecting a reference that it should not be. My drawing and reference file were both created from the same seed file, so they have all the same settings and GeoCS. I am working on a plan and profile drawing.&lt;/p&gt;  &lt;p&gt;I attach the reference file by &amp;quot;Coincident World,&amp;quot; and the plan portion falls into the correct spot. I then attach that very same reference file to the drawing for the profile portion, again by &amp;quot;Coincident World,&amp;quot; except that Microstation will not let me move/rotate the reference so that I can place the profile properly under the plan view.&lt;/p&gt;  &lt;p&gt;When I try to move the profile I get a message stating &amp;quot;Reference geographically reprojected, can&amp;#39;t be user-transformed.&amp;quot; I don&amp;#39;t understand what is going wrong here? This is something I have done thousands of times in the last 5 years, but for some reason it stopped working.&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;Help anyone?&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;I am running V8i (SELECTseries 2) 08.11.07.443&lt;/p&gt;</description></item><item><title>Forum Post: Re: crCount problem with TextNode</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19569/p/74329/198962.aspx#198962</link><pubDate>Fri, 10 Feb 2012 18:41:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198962</guid><dc:creator>DanPaul</dc:creator><description>&lt;p&gt;Still does not work correctly... looks like mdlText_extractStringsFromDscrWide adds new line after every node component...&lt;/p&gt; &lt;p&gt;Any suggestion?&lt;/p&gt; &lt;p&gt;Dan&lt;/p&gt; </description></item><item><title>Forum Post: Re: Trying to get parentdevdir name of Reference attachments attached with relative path</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19570/p/74368/198950.aspx#198950</link><pubDate>Fri, 10 Feb 2012 17:38:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198950</guid><dc:creator>Jon Summers</dc:creator><description>&lt;p&gt;[quote user=&amp;quot;Barry Lothian&amp;quot;]My code needs to be able to determine the value of&amp;nbsp;parentdevdir for each of my reference attachments[/quote]&lt;/p&gt;  &lt;p&gt;Add a VBA reference to the Windows &lt;a title="Windows Scripting Runtime" href="http://www.la-solutions.co.uk/content/MVBA/MVBA-FilesAndFolders.htm"&gt;Scripting Runtime&lt;/a&gt; DLL.&amp;nbsp; &lt;a title="Windows Scripting Runtime" href="http://www.la-solutions.co.uk/content/MVBA/MVBA-FilesAndFolders.htm"&gt;Scripting Runtime&lt;/a&gt; provides the invaluable &lt;span style="font-family:courier new,courier;"&gt;FileSytemObject&lt;/span&gt; (FSO).&lt;/p&gt;  &lt;p&gt;The FSO gives you what you need to work with files and folders.&amp;nbsp; The &lt;span style="font-family:courier new,courier;"&gt;File&lt;/span&gt; object has methods to extract bits of a file path and reassemble them.&amp;nbsp; Our article provides some &lt;a title="FileSystemObject examples" href="http://www.la-solutions.co.uk/content/MVBA/MVBA-FilesAndFolders.htm"&gt;examples&lt;/a&gt;.&amp;nbsp; You&amp;#39;ll find more on Microsoft news groups.&lt;/p&gt;</description></item><item><title>Forum Post: Re: all my MVBA does not start anymore : error code: 0x800a02c9</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19570/p/74316/198943.aspx#198943</link><pubDate>Fri, 10 Feb 2012 17:15:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198943</guid><dc:creator>Mark.Anderson</dc:creator><description>&lt;p&gt;Are your projects using any controls that are not part of MicroStation? &amp;nbsp;Here is some information that we have been gathering related to this type of stuff:&lt;/p&gt; &lt;p&gt;1. &amp;nbsp; &amp;nbsp; &amp;nbsp; Open your VBA project and verify the references. &amp;nbsp;The ones in particular would be 3rd party controls like mscomctrl is suggested. &amp;nbsp;One posting below stated that detach and re-attach resolved the issue. &amp;nbsp;There are other things to try in that link, but I would start there. &lt;/p&gt; &lt;p&gt;ERROR: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;Object library invalid or contains references to object definitions that could not be found&amp;quot; or &amp;quot;Element not found&amp;quot; &lt;/p&gt; &lt;p&gt;ARTICLE: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;Object library invalid or contains references to object definitions that could not be found&amp;quot; or &amp;quot;Element not found&amp;quot; &lt;/p&gt; &lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/b/ericwhite/archive/2009/07/22/object-library-invalid-or-contains-references-to-object-definitions-that-could-not-be-found-or-element-not-found.aspx"&gt;blogs.msdn.com/.../object-library-invalid-or-contains-references-to-object-definitions-that-could-not-be-found-or-element-not-found.aspx&lt;/a&gt; &lt;/p&gt; &lt;p&gt;2. &amp;nbsp; &amp;nbsp; &amp;nbsp; At the beginning of the article there is mention to Microsoft article 960715 (Update Rollup for Active X Kill Bits) causing the problem. &amp;nbsp;This is the more common reason for VBA projects to not load after updating Microsoft security patches or Office products. &amp;nbsp;I recommend using Microsoft Procmon to capture the full load of an application that has a failing VBA project. &amp;nbsp;Then filter for the ActiveX kill bit paths and review those that have errors loading (the kill bit is a data value of 1024) and selectively decide to backup and remove those component kill bit keys from the registry. &amp;nbsp;Once you know which ones are the problem you can create a registry file to remove those keys everytime a new Microsoft update attempts to re-activate “known bad controls” through a security update (Microsoft or your IT policies delploy), or Office Upgrade/patches roll out &lt;/p&gt; &lt;p&gt;I think this might be related to the Internet Explorer update.&lt;/p&gt; &lt;p&gt;HTH,&lt;/p&gt; </description></item><item><title>Forum Post: Re: DGNLIB - Custom Line Styles</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/42792/198940.aspx#198940</link><pubDate>Fri, 10 Feb 2012 16:44:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198940</guid><dc:creator>Chuck Meuser</dc:creator><description>&lt;p&gt;Thanks for the reply John,&lt;/p&gt; &lt;p&gt;No offense, this is just another reason why NOT to have LS&amp;#39;s in a DGNLIB file. &amp;nbsp;I also filed a change request.&lt;/p&gt; &lt;p&gt;Chuck&lt;/p&gt; </description></item><item><title>Forum Post: Re: How to add Levels to PDF?</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19568/p/74351/198927.aspx#198927</link><pubDate>Fri, 10 Feb 2012 16:05:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198927</guid><dc:creator>Frank_Klein</dc:creator><description>&lt;p&gt;Hi Sandeep,&lt;/p&gt;  &lt;p&gt;A more safe way using a editor for free is notepad++. You get some xml tools to provide well syntaxed xml.&lt;br /&gt;And PDF settings looks like this if you edit your .pltcfg file. Please watch your V8i Versions, because newer versions&lt;br /&gt;create newer print configurations files that are not backward compatible.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://communities.bentley.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/19568/5875.PrinterCfg_5F00_PDF_5F00_notepad_2B002B00_.JPG" alt="" border="0" /&gt;&lt;/p&gt;</description></item><item><title>Forum Post: Re: Drawing inversion on screen lock and mouse pointer disappearing</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/74336/198920.aspx#198920</link><pubDate>Fri, 10 Feb 2012 15:24:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198920</guid><dc:creator>Russell Smith</dc:creator><description>&lt;p&gt;I agree with Frank... Check the graphics driver first. It&amp;#39;s always best to do a clean install, too.&lt;/p&gt; &lt;p&gt;NVIDIA just released a new driver yesterday for Quadro 2000/4000... 276.52. Here&amp;#39;s the link for the Win7 64-bit, English version:&lt;/p&gt; &lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.nvidia.com/object/quadro-tesla-win7-winvista-64bit-276.52-whql-driver.html"&gt;www.nvidia.com/.../quadro-tesla-win7-winvista-64bit-276.52-whql-driver.html&lt;/a&gt;&lt;/p&gt; </description></item><item><title>Forum Post: Re: PowerDraft installation issue</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/74202/198912.aspx#198912</link><pubDate>Fri, 10 Feb 2012 14:56:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198912</guid><dc:creator>John Cannon</dc:creator><description>&lt;p&gt;\Buttons, \Fkeys, \MicroStation and \PowerDraft.&lt;/p&gt; &lt;p&gt;I uninstalled/re-installed and did not copy in my .upf and now it&amp;#39;s working. &amp;nbsp;The projects, fkeymenu and btnmenu that I copied in from MS seem to be working. &amp;nbsp;The custom toolbox I use in MS must have some tools in it that PD doesn&amp;#39;t support. &amp;nbsp;I can create a new on in PD - I was just trying to avoid this step. &amp;nbsp;Sometime soon I&amp;#39;m going to have to get a couple of users running on PD but I&amp;#39;ve never used it before. &amp;nbsp;I&amp;#39;ll be back if I have any more problems.&lt;/p&gt; </description></item><item><title>Forum Post: Edge vs Fill</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/74360/198908.aspx#198908</link><pubDate>Fri, 10 Feb 2012 14:31:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198908</guid><dc:creator>José Pinho</dc:creator><description>&lt;div class="post-content user-defined-markup"&gt;  &lt;p&gt;&lt;span&gt;Hi all,&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;I&amp;#39;ve been reading some posts that shows that many people have the same problem than me.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;I&amp;#39;m struggling with the presentation of 3d references to 2d models for layouts in the end of the line with plans, elevations &amp;amp; sections.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;I always believe that Autodesk has something to learn with Bentley and vice-versa, and in this case in Acad we can have a edge (boundary)&amp;nbsp;&lt;/span&gt;with a different level, color &amp;amp; tickness, than the fill.&lt;/p&gt;  &lt;p&gt;&lt;br /&gt;&lt;span&gt;I don&amp;#39;t know if with this variables in element templates this even work... It&amp;#39;s something that needs to work with display styles menu...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Is Bentley concerned about this and working on to resolve this issue so we can do the same in Microstation?&lt;/span&gt;&lt;br /&gt;&lt;span&gt;If this isn&amp;#39;t realizable, Microstation users will have a lots of work to present layout the way they supposed to...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Thanks.&lt;/span&gt;&lt;/p&gt;  &lt;/div&gt;</description></item><item><title>Forum Post: Re: matching attributes</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19569/p/74332/198904.aspx#198904</link><pubDate>Fri, 10 Feb 2012 14:19:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198904</guid><dc:creator>Jon Summers</dc:creator><description>&lt;p&gt;I don&amp;#39;t see the need to be embarassed. &amp;nbsp;Not everybody wants to write VBA, and not everybody needs to be a VBA developer (if you were, then you&amp;#39;d put people like me out of a job, so maybe I&amp;#39;m biassed).&lt;/p&gt; &lt;p&gt;But there is a VBA Forum, should you feel that way inclined &amp;nbsp;8-)&lt;/p&gt; </description></item><item><title>Forum Post: Re: MS_DEF vs MS_RFDIR</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/74241/198895.aspx#198895</link><pubDate>Fri, 10 Feb 2012 13:34:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198895</guid><dc:creator>Larry Whitt</dc:creator><description>&lt;p&gt;I think there used to be an mdl application (for MS/J) that provided the ability to use wildcards to represent sub-folders. &amp;nbsp;Maybe if that could be updated for V8 and up and incorporated into the product, some configuration could be greatly simplified.&lt;/p&gt; </description></item><item><title>Forum Post: Re: LineStyle Scale of Custom LineStyles</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19567/p/74216/198887.aspx#198887</link><pubDate>Fri, 10 Feb 2012 12:09:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198887</guid><dc:creator>caddcop</dc:creator><description>&lt;p&gt;AutoCAD does not support physical (fixed) line type scale. The best that you can do is to make multiple linetypes that are used bylayer and substitute different ones based upon the drawing scale. That&amp;#39;s why they have DASHED, DASHED2, DASHEDX2.&lt;/p&gt; </description></item><item><title>Forum Post: Re: Print Organizer pset settings not being saved.</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19568/p/74330/198838.aspx#198838</link><pubDate>Thu, 09 Feb 2012 22:28:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198838</guid><dc:creator>mwlong</dc:creator><description>&lt;p&gt;It&amp;#39;s been a while since I used PO but, if you have a print driver defined in you plot style and the plot driver has a paper size checked to be the default size (not the 11x17 tabloid) PO will pull that paper size when you open the pset (at least that is the problem I had).&lt;/p&gt; &lt;p&gt;I stopped using PO because it was not versatile enough for my use. The old batch printing is limited but it serves my purposes much better than PO. I&amp;#39;m looking forward to the new release.&lt;/p&gt; </description></item><item><title>Forum Post: Re: Batch process 3D to 2D</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19565/p/20661/198810.aspx#198810</link><pubDate>Thu, 09 Feb 2012 19:25:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198810</guid><dc:creator>slehner</dc:creator><description>&lt;p&gt;We recently upgraded to V8i and the &amp;quot;msbatch&amp;quot; is in a different directory. (The old folder names don&amp;#39;t match.)&lt;/p&gt; &lt;p&gt;I also want to point out that &amp;quot;msbatch&amp;quot; is just a switch. The folder names used in the command are just GUI for the user. So really you can do &amp;quot;IN&amp;quot; and &amp;quot;OUT&amp;quot; folders. What ever you put into the &amp;quot;IN&amp;quot; folder goes to the &amp;quot;OUT&amp;quot; folder as the opposite of the original.&lt;/p&gt; &lt;p&gt;_________________________________________&lt;/p&gt; &lt;p&gt;c:&lt;/p&gt; &lt;p&gt;cd &amp;quot;C:\Program Files\Bentley\MicroStation V8i (SELECTseries)\MicroStation&amp;quot;&lt;/p&gt; &lt;p&gt;msbatch cnvdgn inname:C:\3DConv\3D\*.* outname:C:\3DConv\2D\&lt;/p&gt; &lt;p&gt;pause&lt;/p&gt; &lt;p&gt;_________________________________________&lt;/p&gt; &lt;p&gt;c:&lt;/p&gt; &lt;p&gt;cd &amp;quot;C:\Program Files\Bentley\MicroStation V8i (SELECTseries)\MicroStation&amp;quot;&lt;/p&gt; &lt;p&gt;msbatch cnvdgn inname:C:\3DConv\2D\*.* outname:C:\3DConv\3D\&lt;/p&gt; &lt;p&gt;pause &lt;/p&gt;</description></item><item><title>Forum Post: Re: Label Line Question</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19566/p/74327/198796.aspx#198796</link><pubDate>Thu, 09 Feb 2012 17:09:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198796</guid><dc:creator>Inga Morozoff</dc:creator><description>&lt;p&gt;What&amp;#39;s interesting is that it shows find in the preview at the bottom of the dialog. &amp;nbsp;I&amp;#39;ll file a TR for this. &amp;nbsp;In the meantime, you could go to the design file settings and change the label from &lt;em&gt;sf &lt;/em&gt;to &amp;#39;.&lt;/p&gt;  &lt;p&gt;Then set the Label Format to &lt;em&gt;MU Label.&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Thank you for bringing this to our attention.&lt;/p&gt;</description></item><item><title>Forum Post: Re: Label Line Anomalies</title><link>http://communities.bentley.com/products/microstation/microstation_v8i/f/19566/p/72345/198792.aspx#198792</link><pubDate>Thu, 09 Feb 2012 16:46:00 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:198792</guid><dc:creator>John Cannon</dc:creator><description>&lt;p&gt;The key-in &amp;quot;dimcreate element labelline&amp;quot; brings up the new version.&lt;/p&gt; </description></item></channel></rss>
