RE: insert statement kills my opencursorWithID
John,Please try the steps listed in order from this post: mdlDB_fetchRowByID and let us know if that helps resolve the issue. If not, here is another search for a couple other threads ( 8 ) related to...
View ArticleRE: insert statement kills my opencursorWithID
Thanks Bob, mdlDB_activeAutoCommitMode(FALSE) did the trick! Thanks for the info I was going crazy!
View ArticleRE: VBA UserForm Palette
Hi,[quote user="DilipB"]What is wrong?[/quote]You did not write any information what MicroStation version do you use and what Windows.I tried it (MicroStation V8i SS4 and Windows 10) and I see the same...
View ArticleRE: VBA UserForm Palette
[quote user="DilipB"]In Microstation 8i VBA , the UserForm backColor, BorderColor, etc. palette is blank[/quote]I recall seeing that problem a few years ago. Currently, with Windows 7 Pro SP1 and...
View ArticleVBA UserForm Palette
In Microstation 8i VBA , the UserForm backColor, BorderColor, etc. palette is blank. I don't see the color palette, but I can choose a color blindly. What is wrong?
View ArticleRE: VBA UserForm Palette
Jon/Jan, I have Windows 7 with SP1 and Microstation 8i version 8.11.09.357. Yes, when I move the cursor over the blank palette, I do get the color, but since I don't see the palette color I don't know...
View ArticleRE: VBA UserForm Palette
Hi Dilip, this is an issue we could reproduce with MicroStation V8i on Windows 7, 8 and 10. Other VBA installations with MicroStation versions 8.5 or CONNECT Edition on the same machine were not...
View ArticleRE: [CONNECT C++] Missing DgnGCS struct exports from lib files?
Here are the dependencies:bentley.libmdlbltin.libBentleyGeom.libDgnPlatform.libDgnView.libBentleyAllocator.libBaseGeoCoord.liband here are the linker messages:1>CoordSystems.obj : error LNK2001:...
View ArticleRE: [CONNECT C++] Missing DgnGCS struct exports from lib files?
[quote user="Bruce Reeves SRNS"]Here are the dependencies...[/quote]How about Bentley.GeoCoord.lib?
View ArticleRE: VBA UserForm Palette
[quote user="Artur Goldsweer"] We have filed a Defect # 404237 to address this issue.[/quote]Just to clarify, I reported this on 20th April SR Ticket No.7000489983 and Defect # 404237 was filed on...
View ArticleRE: [CONNECT C++] Missing DgnGCS struct exports from lib files?
[quote user="Jon Summers"]How about Bentley.GeoCoord.lib?[/quote] Added that also, and the results are the same - "unresolved external symbol..." Thanks,Bruce
View ArticleRE: [CONNECT C++] deffiles.h missing #include
Consider including <Mstn\MdlApi\MdlApi.h> as the first include for your source code projects. Doing so you should not experience any dependency order issues unless possibly due to a "publishing...
View ArticleRE: [CONNECT C++] Is UNICODE defined?
Most MicroStation applications that utilize Windows functionality requiring UNICODE and _UNICODE to be defined simply place the follow at the top of their source code files:#define UNICODE 1 #define...
View ArticleRE: [CONNECT C++] Is UNICODE defined?
You can also define UNICODE for a project in the BMake file. In the project's .mke file, add these lines to pass the UNICODE macro to the C++ compiler...nameToDefine=_UNICODE %include...
View ArticleRE: [CONNECT C++] Is UNICODE defined?
Correct. Sorry, I was originally going to include that as well. :)
View ArticleRE: [CONNECT ++] Unable to Create Text Element
UPDATE:I guess #include <Mstn\MdlApi\MdlApi.h> does NOT bring in the TextHandlers,h file. Once I also #include <dgnPlatform\TextHandlers.h>, things look better...
View ArticleRE: [CONNECT ++] Unable to Create Text Element
[quote user="Bruce Reeves SRNS"]I can't find "TextHandlerBase"[/quote]class TextHandlerBase is in header file <DgnPlatform\TextHandlers.h>. It's an abstract base class, and you can read this...
View Article[CONNECT ++] Unable to Create Text Element
I must not have a correct "using" reference, but I can't figure out the correct one. I'm trying to create a text item. I AM able to "query" an existing Text item, and get it's TextBlock. However, I...
View ArticleRE: CONNECT Edition FlyThru have a bug to run mvba
[quote user="Paggy Chiu 邱珮玦"]I have test your method to run mvba. But It only show microstation default directory and Masterfile name[/quote]Please post the VBA project (.mvba file) that contains your...
View ArticleRE: Connect VBA GetTotalTextSize
Here's a simple test function: Function TextTest() Dim oText As TextElement Dim dblTXWidth As Double, dblTXHeight As Double Set oText = CreateTextElement1(Nothing, "This is a test", Point3dOne,...
View Article