• RE: Export to SHP from Bentley Map

    Hi, the attached ZIP file includes a VBA text2xfm.mvba with documentation that loads a business property from a text string. Finally you will be able to export text string to a (point) SHP file, a XFM schema is not needed. Kind regards, Kees text2xfm…
  • Re: Schema - "complex" criteria

    COMPARE function allows passing a delimeter string in the last parameter to compare a value against a delimited list of possible values. For example... From "Performance Notes" paragraph in the XFM Overview section of the Bentley Map Customization…
  • Re: Schema - "complex" criteria

    For your example # 2: COMPARE("[attributea]","True","") && ([attributeb]>0) Ensure that attributeb has a value or the expression evaluation will fail. You could accomplish this by specifying a default value in the expression: ([attributeb|0]>0) …
  • Geospatial Administrator and Microsoft Visio

    Hello all, Those anyone knows if is possible to design an XFM schema using the UML language in MS Visio? Thanks all. Narcis
  • Schema - "complex" criteria

    Wise forum folks, One more question for you. XFM Schema appears to have difficulty with interpreting "complex" criteria (e.g., criteria that reference more than one attribute), such as: ([attribute1]>0) && ([attribute2]<100) Or even better: …
  • Memory issues when re-formatting XFM features

    Hi wise forum folks, I'm building a workflow to import a large shapefile as a point-text XFM feature. Because the schema won't allow us to specify text height and width at the specified drawing scale (this varies depending on which .dgn we're working…
  • Databrowser do not show properties all though they are defined in the FeatureClass definition cache

    I have got a problem that at least did not exist in BentleyMap SS2. I have veryfied that it exist in Bentley Map SS3 built 95 and sadly enough also in the new service release with built no 107. In short: I have a small Mvba app that defines a new…
  • Re: How to attach existing subfeature to another root feature?

    Rysiek, I suggest using xfmFeature_create to build a new subfeature and copy geometry and properties(perhaps filtering/changing uniqueId properties) from the old sub-feature. Ensure that the geometry does not have the original elementRef by calling…
  • Schema - ability to place multiple XFM features per shapefile object?

    I'm trying to do something akin to this: Criteria A = ([attribute1]<=0) Criteria B = COMPARE("[attribute2]","True","") Place cell "Alpha" for Criteria A Place cell "Beta" for Criteria B ...Knowing that the two aren't mutually exclusive…