“System.Xml” is an assembly but not an XML file. It contains code for the System.Xml namespace. See the “assembly” directory in the WINDOWS path. The …
dotNet.loadAssembly only works with dll files. Why are you trying to load an XML file as an assembly ? By the way, this custom ListView control looks…
To be able to edit objects properties in 3ds Max, I think the most interesting control from .NET is the PropertyGrid. It allows to edit an object prop…
MAXScript isn’t an object oriented language so you cannot inherit anything. You have to add these properties to your struct or hold a node object in i…
Have you tried to set the focus to this custom control ? if not control.Focused then control.Focus() Put this code in the open rollout event handler…
Hi Adriano, If you are under Max 2008, I think it would be a good idea to use the MaxForm class from the new .NET SDK added in this version. In your …
It’s already exposed in MaxCustomControls.dll (from 3ds Max .NET SDK – Max 2008): ( dotNet.loadAssembly “MaxCustomControls.dll” rollout Explor…
You can’t do that with standard .NET. But maybe a custom TreeView control doing that could be found on the web. The bitmap solution should work by tr…
As Shane said and as I said before, the best and easiest solution for your problem is to create a .NET class library. Implement the core methods of yo…
Tesctassa: Actually it’s not .Net code that I need to execute, but my application methods. I cannot see the difference; your application is .NET….
To be able to call your .NET code with MAXScript, you’ll need to build an assembly/class library (if it’s not done) containing the core operations of …
Here is how to do that with .NET, the code is pretty small and easy to understand: process = dotNetObject “System.Diagnostics.Process” process.Enable…
Does a2 contains indices or values to delete ? If it contains indices, Kameleon code will work. If a2 contains values to delete here is the code: a1…
I think you should use Load() instead ’cause the bitmap already exists.: Bitmap *lBiMap = TheManager->Load(&bi);
acubic_bitmap_names is of type TYPE_FILENAME_TAB but in your second GetValue you try to retrieve the tab element as a PBBitmap. If you want to get the…