[CONNECT C++] link errors
Hi, I got following errors. I can not find out why.1>LINK : fatal error LNK1181: cannot open input file 'C:\Program.obj'1> BMAKE: call trace1> line: 404,...
View ArticleRE: [V8i SS2 VBA] color chooser control
[quote user="minion"]I'm wondering if this page has been discontinued or relocated[/quote]Bentley Systems posted the ActiveX controls many years ago 'unsupported'. I'm sure that many of would like to...
View ArticleRE: [CONNECT C++] link merge objects files
Did you not already ask this question here? communities.bentley.com/.../123264
View ArticleRE: [CONNECT C++] link merge objects files
There are a number of examples having multiple .cpp files in the MicroStation CONNECT MDL SDK. Though any of them can be used as a guide, please take a look at the file below specifically with respect...
View ArticleRE: [CONNECT C++] link merge objects files
[quote user="Zhen Li"]Where I can specify the object files for linker?[/quote]Didn't I answer that same question from you yesterday? Maury noticed the similarity ...I agree that make file syntax is...
View ArticleRE: [CONNECT C++] link merge objects files
Thank you very much! I figured it out. I am in hurry to get my project done. I did not think a lot of more about your reply. I spend 2 weeks to get my old MDL application compiled by new CONNECT MDL....
View Article[CONNECT C++] link merge objects files
Hi,I generated two object files. But link can not find second object file. How can I fix it? where I can specify the object files for linker?Thank you so much!
View ArticleRE: [V8i SS2 VBA] color chooser control
Hi Jon, Unfortunately there is a power outage at work, so I couldn't try out those common dialogs. On the other hand, a userform for choosing a color from the color table doesn't look too difficult to...
View ArticleRE: [V8i SS2 VBA] color chooser control
[quote user="minion"]A userform for choosing a color from the color table doesn't look too difficult to make if you can find out the RGB value for the color table entries[/quote]Get a ColorTable...
View Article[V8i SS2 VBA] color chooser control
Hi,I wanted to jazz up my program a little by adding the color picker/chooser control talked about in this link:www.la-solutions.co.uk/.../MVBA-Tips.htmwhich links...
View Article[V8i SS3 C#] ChangeTracking and Element-Templates
Hi,I would like to track when the users changes the template of an element or creates elements with an template. My problem is that the event is fired before the template is written (as an XAttribute...
View ArticleRE: Passing in Point3D with late binding
[quote user="Mark Smith"]My understanding is that Point3D is 3 doubles in sequence[/quote]More correctly, a User Defined Type (UDT). You'll find it in VBA help.[quote user="Mark Smith"]I'm not sure if...
View ArticlePassing in Point3D with late binding
Hello. I have a VBA project in Excel that is working when I have references turned on.However this caused issues for some users that did not have Microstation installed, so I decided to convert it to...
View ArticleRE: [CONNECT C++] unresolved external symbol
What lib files do you have linked? I think you need the toolsubs.lib to get the mdlTextFile functions. HTH, mark anderson
View ArticleRE: [CONNECT C++] unresolved external symbol
Hi Mark Thank you very m much for your reply. But I can not find "toolsubs.lib" file in CONNECT SDK folder. How about functions like: mdlImage_resize and mdlImage_readFileToRGB? Thank you!
View ArticleRE: [CONNECT C++] unresolved external symbol
Hi Zhen,it's not so difficult to find a proper .lib file ... and in fact it's quite common situation in C++ development if it's not clear in what lib or dll a particular function is published. You can...
View ArticleRE: [CONNECT C++] unresolved external symbol
[quote user="Mark Anderson"] I think you need the toolsubs.lib to get the mdlTextFile functions[/quote]The MDL documentation for V8i specified which .lib file to link.The MicroStationAPI documentation...
View Article[CONNECT C++] unresolved external symbol
Hi,Which library has following functions:unresolved external symbol "__declspec(dllimport) struct _iobuf * __cdecl mdlTextFile_open(wchar_t const *,int)" unresolved external symbol...
View ArticleRE: Passing in Point3D with late binding
To summarize VBA does not seem to like doing stuff with UDT's:Trying to pass as dynamic arrayDim latePoint3d() As Double ReDim latePoint3d(0 To 2) elSphere.Move latePoint3d ' Type mismatch Call...
View ArticleRE: Passing in Point3D with late binding
Apparently i have now answered my own question :DFor anybody else stuck like me, this now works with late binding:Private Sub testSphere() Dim latePoint3dX As Double Dim latePoint3dY As Double Dim...
View Article