ypuech
@ypuech
New Member
Joined: Feb 14, 2024
Topics: 9 / Replies: 440
Reply
RE: DotNet Loading Assembly

“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 …

17 years ago
Forum
Reply
RE: DotNet Loading Assembly

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…

17 years ago
Forum
Reply
RE: SpreadSheet Editor reborn?

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…

17 years ago
Forum
Reply
RE: Can struct object inherit Node

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…

17 years ago
Forum
Reply
RE: dotNet Form problem

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…

17 years ago
Forum
Reply
RE: dotNet Form problem

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 …

17 years ago
Forum
Reply
RE: Extra columns of Check boxes in a Listview?

It’s already exposed in MaxCustomControls.dll (from 3ds Max .NET SDK – Max 2008): ( dotNet.loadAssembly “MaxCustomControls.dll” rollout Explor…

17 years ago
Forum
Reply
RE: DotNet TreeView: Checkboxes only on top level?

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…

17 years ago
Forum
Reply
RE: Integrate extern application in Max

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…

17 years ago
Forum
Reply
RE: Integrate extern application in Max

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….

17 years ago
Forum
Reply
RE: Integrate extern application in Max

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 …

17 years ago
Forum
Reply
RE: Opening a Windows Explorer Window through .Net?

Here is how to do that with .NET, the code is pretty small and easy to understand: process = dotNetObject “System.Diagnostics.Process” process.Enable…

17 years ago
Forum
Reply
RE: deleting items in one array from another

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…

17 years ago
Forum
Reply
RE: Cube Map exportation

I think you should use Load() instead ’cause the bitmap already exists.: Bitmap *lBiMap = TheManager->Load(&bi);

17 years ago
Forum
Reply
RE: Cube Map exportation

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…

17 years ago
Forum
Page 8 / 30