<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Matthew Ashby's Activities</title><link>https://communities.bentley.com/members/63faacc8_2d00_f365_2d00_49c0_2d00_9123_2d00_91eb946e647a</link><description>Matthew Ashby's recent activity</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>ORD Drawing Production - Nesting Depth Value 99</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/207187/ord-drawing-production---nesting-depth-value-99</link><pubDate>Thu, 10 Dec 2020 16:52:43 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:937da09e-3c8d-4ea2-8d94-d53d333e40bf</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;I am using OpenRoads Designer CONNECT Edition - 2020 Release 2 Update 8 - Version 10.08.01.33.&lt;/p&gt;
&lt;p&gt;When using the Drawing Production tools to generate plan sheets, it seems that the nesting depth parameter of the resulting Drawing model and Sheet model are arbitrarily &lt;span style="text-decoration:underline;"&gt;hard-coded&lt;/span&gt; to a value of 99. I would have expected that the nesting depth value should have been &amp;quot;passed through&amp;quot; from the DGNLIB that is being used to generate the sheets. Here are some screen grab images.&lt;/p&gt;
&lt;p&gt;The left side image is from the DGNLIB and the right image is from the resulting plan &lt;strong&gt;drawing model&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/5922/001.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The left side image is from the DGNLIB and the right image is from the resulting plan &lt;strong&gt;sheet model&lt;/strong&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/5922/002.jpg" /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Can someone please confirm that no matter what value is used in the DGNLIB file that the resulting drawing model and sheet model will always have a value of 99? Is there something special about this value of 99 that is being used?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If the nesting depth value cannot be controlled in the DGNLIB file, then is there perhaps a Configuration Variable setting that dictates the value in the resulting drawing model and sheet model files?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;So far, the only work-around I have been able to come up with is to create a VBA macro to post-process the cut sheet files to adjust the nesting depth values in the drawing model and sheet model to values of 1 and 2. This macro is pretty sluggish, but I might try to revise it to run in a background thread of MicroStation as opposed to having to open each DGN file and model.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>ORD crashes when running simple VBA macro</title><link>https://communities.bentley.com/products/programming/microstation_programming/f/microstation-programming---forum/240106/ord-crashes-when-running-simple-vba-macro</link><pubDate>Tue, 03 Jan 2023 21:25:38 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:2c879e27-89ee-47e1-9897-dc1ae426cdee</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;I have the following versions of MSCE and ORD installed on my computer.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MSCE - MicroStation CONNECT Edition Update 16 (version 10.16.03.11)&lt;/li&gt;
&lt;li&gt;ORD - OpenRoads Designer CE - 2021 Release 2 Update 10 (version 10.10.21.04)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;ORD crashes anytime I try to run a VBA macro that uses the &lt;strong&gt;ReplaceCurrentElement&lt;/strong&gt; method found within the MVBA SDK. For example: here is a simple code that can be copied into an MVBA module.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;Option Explicit

Private Const cCellID As String = &amp;quot;1261&amp;quot;

Public Sub Main()
    Dim oCell As CellElement
    
    Set oCell = ActiveDesignFile.GetElementByID(DLongFromString(cCellID))
    
    If Not oCell Is Nothing Then
        UpperAllText oCell
        CommandState.LastView.Redraw
        ShowMessage &amp;quot;Cell Updated!&amp;quot;
    End If
End Sub

Private Sub UpperAllText(eleCell As CellElement)
    eleCell.Redraw msdDrawingModeErase

    eleCell.ResetElementEnumeration
    Do While eleCell.MoveToNextElement(True)
        Dim eleTemp As Element

        Set eleTemp = eleCell.CopyCurrentElement
        If eleTemp.IsTextElement Then
            With eleTemp.AsTextElement
                .Text = StrConv(.Text, vbUpperCase)
            End With
            eleCell.ReplaceCurrentElement eleTemp
        End If
    Loop
    eleCell.Redraw
    eleCell.Rewrite
End Sub&lt;/pre&gt;&lt;a href="https://communities.bentley.com/cfs-file/__key/communityserver-discussions-components-files/343173/0121.Replace-Cell-Text.dgn"&gt;communities.bentley.com/.../0121.Replace-Cell-Text.dgn&lt;/a&gt;&lt;a href="https://communities.bentley.com/cfs-file/__key/communityserver-discussions-components-files/343173/3175.Replace-Cell-Text.mvba"&gt;communities.bentley.com/.../3175.Replace-Cell-Text.mvba&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I am including the attached DGN file that has a simple cell with the text &amp;quot;hello world&amp;quot;. The MVBA macro simply finds the cell and then converts the text to all uppercase.&lt;/p&gt;
&lt;p&gt;I can run the macro in MSCE and it works brilliantly. When I run the macro in ORD, it crashes the software. I think this is a defect, but I would appreciate it if someone else can test/verify it it also crashes their ORD software.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;Matt&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>What is the source of the drawing model seed file in Power InRoads SS10 when generating static cross sections?</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/238832/what-is-the-source-of-the-drawing-model-seed-file-in-power-inroads-ss10-when-generating-static-cross-sections</link><pubDate>Tue, 29 Nov 2022 16:51:39 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:88938a49-5c12-47d7-baff-f740cd89d803</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;I am using Power InRoads V8i (SELECTseries 10) Version 08.11.09.918.&lt;/p&gt;
&lt;p&gt;As noted by the subject of this post, my question is the following: What is the source of the drawing model &amp;quot;seed&amp;quot; file that is used by Power InRoads SS10 when the user generates static cross sections?&lt;/p&gt;
&lt;p&gt;For clarification, I am not talking about dynamic cross sections or the dynamic cross section viewer. Instead, I am talking about static cross sections that an individual would use to print a set of cross section sheets or to generate earthwork end-area volumes, etc.&lt;/p&gt;
&lt;p&gt;Is there a specific civil configuration variable that &amp;quot;points&amp;quot; to a DGN seed file that contains the Drawing Model from which Power InRoads then locates, and copies this model into the active DGN file that is being used to generate the cross sections? Or alternatively, does Power InRoads somehow makes a copy of the 2D model from the DGN file that is being used to generate the cross sections, then with the copy of the 2D model the software then &amp;quot;converts&amp;quot; the model from a Design Model to a Drawing Model, meanwhile the software also detaches any references, deletes all elements within the Drawing Model file, and then this Drawing Model is what is used to generate and store the static cross sections within it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>OpenRoads Sheet Index can not find sheet</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/177226/openroads-sheet-index-can-not-find-sheet</link><pubDate>Wed, 27 Mar 2019 05:27:39 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:637c8006-434d-4517-a74a-fd42df92b29e</guid><dc:creator>Kevin Shao</dc:creator><description>&lt;p&gt;Hi, all&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;does anyone&amp;nbsp;know why&amp;nbsp;the sheet does not show up when trying to add sheet into existing sheet index? it only goes to the dgn file and does not show the sheet in it, so&amp;nbsp;can not add the sheet into sheet index.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Keyin to Minimize/Maximize the Ribbon?</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/225285/keyin-to-minimize-maximize-the-ribbon</link><pubDate>Tue, 01 Feb 2022 17:24:37 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:6027b432-7076-4c64-8577-17d547b87b86</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;Does anyone know if there is a keyin to minimize and maximize the ribbon? This is the little &amp;quot;carrot&amp;quot; arrow in the top right of the screen next to the Search Ribbon and just below the universal file close &amp;quot;X&amp;quot; button.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Discussion Starter I</title><link>https://communities.bentley.com/achievements/21025ab1-febb-4fb4-a872-d32a921cb45c</link><pubDate>Mon, 03 Jan 2022 16:32:15 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:7652d890-55ea-45bc-8231-7afe7f27d6e1</guid><dc:creator /><description>Start a discussion in a forum that receives 5 replies.</description></item><item><title>ORD CE - 2020 Release 2 - Update 8 (v10.08.01.33) - VBA  --- How to center VBA form with multiple monitors</title><link>https://communities.bentley.com/products/programming/microstation_programming/f/microstation-programming---forum/218426/ord-ce---2020-release-2---update-8-v10-08-01-33---vba-----how-to-center-vba-form-with-multiple-monitors</link><pubDate>Fri, 20 Aug 2021 20:16:05 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:4bd7c5f1-1d91-4163-9264-b69b4bbecff4</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;This issue applies to&amp;nbsp;either ORD CE - 2020 Release 2 - Update 8 (v10.08.01.33) or MicroStation CONNECT Edition Update 14 (v10.14.02.01). I have three Dell monitors. The majority of the time I run MicroStation from my middle monitor. I am struggling to figure out the correct VBA code to have the UserForm show in the center of the MicroStation application window.&lt;/p&gt;
&lt;p&gt;In V8i I had nothing but outstanding success using the following code snippet.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;With frm
    .Top = Application.TopPosition + (Application.Height / 2) - (.Height / 2)
    .Left = Application.Width / 2
    .Show
End With
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;This no longer seems to work with ORD or MicroStation CONNECT. The VBA form shows up centered on my left-most monitor and at the very right-side edge.&lt;/p&gt;
&lt;p&gt;Does anyone have suggestions or example code of how they are successfully launching non-modal VBA forms for users that have multiple monitors?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Launching Autoturn in Connect</title><link>https://communities.bentley.com/products/microstation/f/microstation-forum/174122/launching-autoturn-in-connect</link><pubDate>Wed, 23 Jan 2019 13:49:22 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:f0c96b4a-047e-470a-91bf-490a2d05afb7</guid><dc:creator>Robert Thornton</dc:creator><description>&lt;p&gt;I have Microstation Connect and so far, the only way I have found to launch the plugin AutoTURN is to type &amp;quot;Path&amp;quot; (or another AT command) in the Search box. I know there has to be a better way to launch the plugin. When we had V8i it was located in MSAdditions but there doesn&amp;#39;t seem to be that option for Connect. Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Assistance with Creating Custom DLL Function to Call from MVBA</title><link>https://communities.bentley.com/products/programming/microstation_programming/f/microstation-programming---forum/212200/assistance-with-creating-custom-dll-function-to-call-from-mvba</link><pubDate>Wed, 07 Apr 2021 18:28:04 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:75816421-1f88-4e63-a036-3be41fada0c6</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am attempting to upgrade an older V8i .MA macro so that it can be used with MicroStation CONNECT. Before diving into the specific details, here is a summary of my software and computer information.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MicroStation CONNECT Edition - Update 14 - version 10.14.02.01&lt;/li&gt;
&lt;li&gt;MicroStation CONNECT Edition SDK - version 10.14.00.109&lt;/li&gt;
&lt;li&gt;Visual Studio 2017, .NET Framework 4.6.2&lt;/li&gt;
&lt;li&gt;Operating System - Microsoft Windows 10 Pro - 10.0.17134&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Processor - Intel(R) Core(TM) i7-8700K CPU @3.70GHz&lt;/li&gt;
&lt;li&gt;Memory - 32768MB RAM&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I have been able to build all the example code provided in the SDK. I saved my older .MC file to a .CPP file, and I have attempted, probably unsuccessfully, to update some of the code. I modified one of the .MKE files provided in the SDK, and then was able to use the MicroStation CONNECT SDK command prompt to &amp;quot;build&amp;quot; or compile my program. During the build process it generates a .DLL file but fails to create a .MA file, and provides this message:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MicroStation Resource Librarian 03.19.02 - At least one input file must be specified.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here is my .CPP file.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;
/*----------------------------------------------------------------------+
|                                                                       |
|   Include Files                                                       |
|                                                                       |
+----------------------------------------------------------------------*/
#include &amp;lt;Mstn/MdlApi/MdlApi.h&amp;gt;

USING_NAMESPACE_BENTLEY
USING_NAMESPACE_BENTLEY_DGNPLATFORM
USING_NAMESPACE_BENTLEY_MSTNPLATFORM
USING_NAMESPACE_BENTLEY_MSTNPLATFORM_ELEMENT

/*----------------------------------------------------------------------+
|                                                                       |
|   Private Global variables                                            |
|                                                                       |
+----------------------------------------------------------------------*/

static SymbolSet *pSymbolSet;       // pointer to SymbolSet area
static RscFileHandle	rscFileH;

 /*----------------------------------------------------------------------
 *  insertAssocFunction_MSCE
 *----------------------------------------------------------------------*/

DLLEXPORT UInt32 insertAssocFunction_MSCE
(
ElementRefP     elSourceRef,
ElementRefP     elTargetRef,
DgnModelRefP    pModel,
int             pointNum,
int             maxPoints,
int             vertex,
int				nVertex,
int             numerator,
int             divisor
)
    {
    AssocPoint      			pointA;
    MSElement       			el;
    UInt32          			filePos;
    DgnPlatform::ElementId      elID;
    UInt32          			status; 

	status = ERROR;

    elID = elementRef_getElemID (elSourceRef);
    status = mdlAssoc_createKeypoint (&amp;amp;pointA,vertex,nVertex,numerator,divisor,NULL,elID);

    if  (SUCCESS==status)
        {
        filePos = elementRef_getFilePos (elTargetRef);
    
        mdlElement_read (&amp;amp;el,pModel,filePos);

        status = mdlAssoc_insertPoint (&amp;amp;el,&amp;amp;pointA,pointNum,maxPoints);

        if  (SUCCESS == status)
            mdlElement_rewrite (&amp;amp;el,NULL,filePos);
        }

    return  status;
    }

 /*----------------------------------------------------------------------
 *  Main entry point
 *----------------------------------------------------------------------*/
DLLEXPORT  int MdlMain
(
void
)
    {	
    mdlResource_openFile (&amp;amp;rscFileH, NULL, RSC_READONLY);

    //  The VBA interface looks for symbol sets marked VISIBILITY_CALCULATOR
    //  or VISIBILITY_DIALOG_BOX
    pSymbolSet = mdlCExpression_initializeSet (VISIBILITY_CALCULATOR, 0, TRUE);

 //Expose these Methods to the outside world
 
    mdlCExpression_symbolPublish (pSymbolSet, &amp;quot;insertAssocFunction_MSCE&amp;quot;, SYMBOL_CLASS_FUNCTION, 0, insertAssocFunction_MSCE);
    
    return SUCCESS;
    }&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Here is my .MKE file.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#--------------------------------------------------------------------------------------
#
#     $Source: C:/Program Files/Bentley/MicroStationCONNECTSDK/myProjects/insertAssocFunction_MSCE/insertAssocFunction_MSCE.mke $
#
#  $Copyright: (c) 2021 Bentley Systems, Incorporated. All rights reserved. $
#
#--------------------------------------------------------------------------------------

PolicyFile = MicroStationPolicy.mki
DEFAULT_TARGET_PROCESSOR_ARCHITECTURE=x64
MDLMKI = $(MSMDE)mki/
mdlLibs = $(MSMDE)library/
dirToSearch = $(MDLMKI)
genSrc = $(o)
%include $(MDLMKI)mdl.mki
%include $(MDLMKI)cincapnd.mki

appName     = insertAssocFunction_MSCE
sAppName    = insertAssocFunction_MSCE

privateInc      = $(baseDir)
langSpec        = $(baseDir)transkit/

#----------------------------------------------------------
# Create needed output directories in case they don&amp;#39;t exist
#----------------------------------------------------------
always:
    !~@mkdir $(o)
    !~@mkdir $(rscObjects)
    !~@mkdir $(reqdObjs)

#------------------------------------------------
#   Set up to use dlmcomp.mki and dlmlink.mki
#------------------------------------------------
dlmObjs = \
$(o)$(appName)$(oext)

DLM_NAME                = $(appName)
DLM_DEST                = $(mdlapps)
DLM_OBJECT_FILES        = $(dlmObjs)
DLM_OBJECT_DEST         = $(o)
DLM_SPECIAL_LINKOPT     = -fixed:no     # Notify linker this library does not require a fixed base address to load
DLM_NO_DLS              = 1             # USE DLLEXPORT IN .CPP
DLM_NO_DEF              = 1
DLM_NOENTRY             = 1
DLM_NO_MANIFEST         = 1             # If not set linker embeds your current (developer) patched MSVCRT version manifest in output dll.  This is not desirable and produces side-by-side CLIENT ERROR: 14001)
DLM_NO_SIGN             = 1             # If not set and no certificate found, ERROR: &amp;#39;singleton&amp;#39; is not recognized as an internal or external command
LINKER_LIBRARIES        = $(mdlLibs)bentley.lib $(mdlLibs)BentleyAllocator.lib

#----------------------------------------------------------------------
#   Compile the source files for the DLM
#----------------------------------------------------------------------

$(o)$(appName)$(oext)       : $(baseDir)$(appName).cpp 

%include $(MDLMKI)dlmlink.mki


$(mdlapps)$(appName).ma     : $(rscObjList)
    $(msg)
    &amp;gt; $(o)make.opt
    -o$@ 
    $(rscObjList)
    &amp;lt;
    $(RLibCmd) @$(o)make.opt
    ~time
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Any suggestions as to why the .MA fails to get created during the build process?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>concept Station ( An error has occurred in the script on this page)</title><link>https://communities.bentley.com/products/road___site_design/f/geopak-inroads-mx-openroads-forum/178045/concept-station-an-error-has-occurred-in-the-script-on-this-page</link><pubDate>Thu, 11 Apr 2019 07:22:12 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:2ee862db-0f8d-4671-a0b6-45b22e447a3f</guid><dc:creator>Ahmed Mostafa</dc:creator><description>&lt;p&gt;When i tried to&amp;nbsp;click new to create new &amp;nbsp;file in concept station open roads ver.10000727&amp;nbsp;i received the below error, can someone please advise.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/5922/pastedimage1554967138506v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Can PW PS be used as a non-PW Administrator?</title><link>https://communities.bentley.com/products/projectwise/f/projectwise-powershell-extensions-forum/173924/can-pw-ps-be-used-as-a-non-pw-administrator</link><pubDate>Sat, 19 Jan 2019 12:16:05 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:57252a8c-5fa6-476a-962b-113069618bef</guid><dc:creator>Matthew Ashby</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am a long time MicroStation (MS) user, but a brand new ProjectWise (PW) user. My current PW work tasks are being performed as a non-PW administrator for a PW workspace/datasource hosted by a state DOT. Here&amp;#39;s my question: As a non-PW administrator, is it still possible to use some of the PW PS&lt;span&gt;&amp;nbsp;Cmdlets? For example, I am interested in discovering a method for easily checking-out&amp;nbsp;multiple DGN files to my local computer,&amp;nbsp;which I can then work on, and then when I am done, using an easy method to check-in all these DGN files.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks,&lt;br /&gt;Matt&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Ask A Question I</title><link>https://communities.bentley.com/achievements/460ac7df-7ccc-4c42-a204-9e05eef3be09</link><pubDate>Sat, 19 Jan 2019 06:02:58 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:8eecf3b7-b7ce-4d42-a860-43e59f0e950c</guid><dc:creator /><description>Ask a question in a forum.</description></item></channel></rss>