• LineElement with TextString

    Mario AYLWIN
    Mario AYLWIN
    Bonjour, I use the Geospatial Administrator de Register my feature with Oracle. The register feature create my Collections/SubFeatures correctly. I need the add a label automatically over my feature (like QGis with Label or ArcGis symbology) to…
    • 3 months ago
    • OpenCities Map
    • OpenCities Map Forum
  • XML Fragments and Criteria

    Adam Jamison
    Adam Jamison
    I've been implementing a stricter data standard across our spatial information and managed to get Bentley OpenCities to have a fairly complex (for me anyhow) feature definition set using XML Fragments. I have a few questions regarding the way in which…
    • over 1 year ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: Selecting elements by elevation

    Jeff Bielefeld
    Jeff Bielefeld
    Greetings Turkay, This type of data manipulation is best done programmatically. If you could provide a sample design file and details on what elevations should be moved to which levels, I would gladly craft a sample VBA application which could be used…
    • over 6 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: convert lot of txt elements to xfm

    Jeff Bielefeld
    Jeff Bielefeld
    I reviewed the provided text2xfm v1.5 application and it appears the ability to process multiple text elements still exists. If a " Fence " is active when the " Process " button is pressed then all of the text or text node elements in the fence contents…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: convert lot of txt elements to xfm

    Jeff Bielefeld
    Jeff Bielefeld
    The original text2xfm VBA sample application could convert multiple text elements to XFM text features using a fence, selection set or the entire design file. If you could upload a copy of the text2xfm.mvba version you are using we can verify whether…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: Bentley Map SS4 change feature name

    Jeff Bielefeld
    Jeff Bielefeld
    Bjorn, Yes, features can be renamed programmatically using code that updates the .name and .alias properties on the feature instance then calls the .write method. Attached is a VBA example which illustrates one way in which this can be done. rename_features1…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: [BM SS4] User Data Linkages and Group Hole Elements

    Jeff Bielefeld
    Jeff Bielefeld
    Bruce, I appreciate the additional sample data. I've been out of the office for the past few days travelling on business but earlier today using the new data I ran the attached promote2.mvba process which created 4 new polygon collection feature instances…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: [BM SS4] User Data Linkages and Group Hole Elements

    Jeff Bielefeld
    Jeff Bielefeld
    Bruce, thank you for that confirmation. If you could send me one more sample design file that contains shapes, complex shapes and grouped holes connecting to at least 3 different MSLINK values then I will complete verification testing of my revised code…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: [BM SS4] User Data Linkages and Group Hole Elements

    Jeff Bielefeld
    Jeff Bielefeld
    Bruce, After a quick review, I believe your use of the DFS rules file is causing the observed difference when running the promote1.mvba process. I will perform some additional verification testing and update you with my findings. Question, I noticed…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • RE: [BM SS4] What happens to User Data Linkages?

    Jeff Bielefeld
    Jeff Bielefeld
    Bruce, Please zip up and send me via private message... Your modified MVBA file. A sample design file containing the original MicroStation shape elements. A current copy of your Bentley Geospatial Administrator schema file. ...and I will…
    • over 7 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Using VBA to query features

    Jeff Bielefeld
    Jeff Bielefeld
    Stefan, In the "xfmOracleExtensions" sample available in the online " Bentley Map - Development and Product Customization Guide ", take a look at the editInstance() method for an example of using XftCmdMgr.ActivateMethod() to open the "Edit" dialog…
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: StringLibrary "Variable Not Defined" in NetworkAnalyzer

    Jeff Bielefeld
    Jeff Bielefeld
    Charlie, You should have a module named StringLibrary as seen in the following:
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: set subfeature text to Align

    Charlie327
    Charlie327
    Success! Although I did not have much luck with PlaceAnnotation2 (It seemed aimed at interactive placement, and I could never quite get the subfeature to rotate), I adapted a function provided by Bentley services. The main deal was to set the rotation…
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: XFT.ILocateOpEvents

    Jeff Bielefeld
    Jeff Bielefeld
    ...in VBA you can use the XFT.ILocateOpEvents interface as follows. First declare a new XFT locate operation object and set desired criteria. Private Sub CommandButton1_Click() Dim oLocateOp As New xft.locateOP oLocateOp.IncludeOnlyFeatures = True…
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Gdi import from oracle spatial ommits compound polygons geometry (gtype=1003,elem_info=1005)

    Jeff Bielefeld
    Jeff Bielefeld
    Jiri, For you adhoc connection (e.g. without a schema) code, you will need to add the following highlighted lines to the connectAdhoc method: public void connectAdhoc(string userName, string password, string serviceName) { GDI.GDIExplorerOracleImportsNode…
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Problem with using LocateOp with in A feature numerator from a previous LocateOp

    wirring
    wirring
    Hi I have a problem with making a locate while running through a feature enumerator from a previos made scan, PowerMap crashes when going to the second item in the outer loop. I have made this very simple application to show the problem (The application…
    • LocateTest.zip
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Gdi import from oracle spatial ommits compound polygons geometry (gtype=1003,elem_info=1005)

    Jeff Bielefeld
    Jeff Bielefeld
    ...not familiar with that particular error, but at this time I would recommend the use of Visual Studio 2005 Edition when developing applications for the Bentley Map V8 i (SELECTseries 1) platform. Also when adding/replacing references to accomodate your…
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Point XFM features becomes invisible after converting to new XFM format

    Jeff Bielefeld
    Jeff Bielefeld
    Erik, For polygon collections you can handle them just as you always have, working with a root (collection/container) feature and then the subfeature (member) geometries. You continue to use the MicroStation object library to create and manipulate…
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Is there any method to set ArcModes programly?

    cdalesandro
    cdalesandro
    Hello sphinxo, The Road feature placement code is available in ..\Workspace\Projects\Examples\Geospatial\geo_example\designer\vba\example.mvba. See PlaceRoad subroutine in SimpleExamples module. (You may already have seen this, but thought I would…
    • over 14 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Find feature by uuid

    Jeff Bielefeld
    Jeff Bielefeld
    ...the network API is not formally documented at this time. Please forward questions regarding it's use directly to me. I would recommend that you search the MicroStation SDK or VBA documentation for the term "transient" to get a better idea of how they…
    • over 13 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: User Interface --> Tools

    Jeff Bielefeld
    Jeff Bielefeld
    Yes, in addition to MDL (e.g. native C/C++) libraries, Bentley Map provides the XFM Feature Toolkit (XFT) COM object for development using VBA or .NET (e.g. C# or Visual Basic.NET) languages. Depending on your applications functional requirements, you…
    • over 10 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: VBA - accessing linkages

    Jeff Bielefeld
    Jeff Bielefeld
    ...okay very good, thank you for that update. I would also recommend that before calling the .GetSubFeature(0) method, your code performs a check to ensure that the .SubFeatureCount property has a value greater than 0.
    • over 12 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Centroid und Feature Collection

    Jeff Bielefeld
    Jeff Bielefeld
    Jens, Thank you for that confirmation. Please refer to this wiki article for information on the " Bentley Geospatial Desktop Platform Extranet " and the " Bentley Map - Development and Product Customization Guide " which includes the following VBA…
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Databrowser do not show properties all though they are defined in the FeatureClass definition cache

    wirring
    wirring
    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…
    • over 10 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • Re: Dynamic where clause in Interoperability?

    Jeff Bielefeld
    Jeff Bielefeld
    Krister, I've posted a complete example here which includes a sample COM server written in C# which demonstrates one approach to calling the Bentley Map Interoperability managed API methods from VBA. The following sample VBA form should give you some…
    • over 11 years ago
    • OpenCities Map
    • OpenCities Map Forum
  • View related content throughout OpenCities Map
  • More
  • Cancel
>