What issues were you having with DosCommand?
You still didn’t say what the error or problem was. Are you using the correct resource ID in this line? SphereParams->SetValue(rad,TimeValue(0), …
Hard to say without more information. What are the symptoms? Does it crash? Is AdjSPINRadius initialized before you dereference it? Is it a NULL poi…
Yep, its a simple overflow issue. Excel uses arbitrary precision for its integer arithmetic, so you don’t run into such issues there. Also, float and…
I dunno, maybe you can configure doxygento generate maxscript docs… Not sure.
ok, so if I understand this correctly, the problem is how maxshade parses the default values for the arguments? It doesn’t treat the decimal point as …
How does the importing code process numerical data in these shaders? Are the shaders your average .sl type of shaders? Where does it get numbers any…
What’s OSGExp and IVE? Couldn’t find it anywhere in the SDK docs.
I’m pretty sure you want to be looking at encryptScript, not encryptFile for your purposes. And, no, you shouldn’t hard code absolute paths, if that …
Yeah, that should work. If you’re going to add controls (child windows) dynamically, you can use CreateWindow, specifying the child style, and passin…
A rollup panel is really just a dialog child window, with special behaviours that are managed by its parent, the rollup window. All you need to do is…
Just wondering, why couldn’t this be achieved by making multiple toolbars? E.g. Make one toolbar for “Studio tools”, and users can make their own cust…
No worries, hope you find it useful. I sure have.
Whoa, that’s quite a lot to chew. I foresee some major headaches if you’re learning all that at one time. Good luck, anyhow.
Look up ShowWindow() on the MSDN. It sounds like you’re relatively new to the Win32 API. Might I recommend a great resource on general Win32 UI progr…