Ah yes, it cannot work under a 64 bit Max because DirectX Managed is only 32… I have the same error at work. Its development has stopped after version…
Take a look at my AVI player based on DirectX Managed :
Bobo: my version of the VFB requires a “Don’t Panic” sign in large friendly letters, it is that overwhelming We can recognize Bobo touch in these…
Thanks for sharing your solutions Bobo! About the bottom panel, SubRollout solution is a good idea. EDIT: I just noticed the page “Rendered Frame Wi…
That’s a good try Jerry. But, is DataGridView cells number limited ? Have you tried to use dGW->Rows->Add() instead of dGW->Rows[i] ?
It crashes max without any error or message ?
My first try would be to convert the maxscript array to a .NET array. With 10000 objects this can be slow but it’s worse the try! EDIT: For example, …
What you can do in this situation is trying to send to a custom .NET assembly method an array of objects names and the DataGridView control. So this h…
What’s slow ? The processing in MAXScript ? Sending string to DataGridView with MAXScript ? The building of the .NET form ? Maybe your example: myAdd…
MaxCustomControls is a standard .NET assembly so you can add it as a .NET dependency in the Project settings. But I don’t really understand what you’…
Well, I can’t really understand the problem but you don’t need to use the meditMaterials global, you can directly append materials to the currentMater…
You can access the material library by using currentMaterialLibrary global. So you can reset this material table (loadDefaultMatLib() or loadMaterialL…
If you want to speed up these things you can write an intermediate assembly in VB.NET or C# that will do some time consumings or hard tasks. This can …