ypuech
@ypuech
New Member
Joined: Feb 14, 2024
Topics: 9 / Replies: 440
Reply
RE: directx fx shader UI manipulation

Hi, You’re talking about FX code or MAXScript code ? Can you post the code please ? It seems that you’re having a problem with DXSAS annotations bet…

19 years ago
Forum
Reply
RE: Windows Registry: Read / Write

Hi, There’s no built-in MAXScript methods to access Windows Registry. But I think you can access it with .NET if you’re using Max 9.

19 years ago
Forum
Reply
RE: When to use .NET instead of ActiveX

Hi Jon, MAXScript help is not a .NET reference. You have a tab control in .NET : System.Windows.Forms.TabControl I think that if you’re using Max 9 …

19 years ago
Forum
Reply
RE: Adding nodes to a NodeTab

Hi Alex, Why are you setting node to NULL ?

19 years ago
Forum
Reply
RE: Adding nodes to a NodeTab

Hi Alex, Have you tried to use a regular STL list<> instead of Tab<>. Tab class seems dated and bugged. It’s possible to use STL with 3ds…

19 years ago
Forum
Reply
RE: Adding nodes to a NodeTab

Hi Alex, Have you take a look at maxsdk samples ? Maybe some plugins use Tab class. Also search Sparks forum at

19 years ago
Forum
Reply
RE: Adding nodes to a NodeTab

Hi Alex, ZeroCount() sets the number of used items to zero. So, if you want to modify the number of elements you have Resize(int num). But it seems …

19 years ago
Forum
Reply
RE: Adding elements to a ComboBox

OK, the height is the last number. The four numbers are : xpos ypos width height

19 years ago
Forum
Reply
RE: Adding elements to a ComboBox

Hi Alex, Maybe your problem comes from the resource (RC) : I’ve set the ComboBox style to “Drop List”. I’ve open the resource file and set “45” for …

19 years ago
Forum
Reply
RE: Adding elements to a ComboBox

Hi, Try using LONG cast : SendDlgItemMessage(HWND, IDC_COMBO, CB_ADDSTRING, 0 , (LONG)”b”); Excuse me but I cannot test win32 code on the PC I am :…

19 years ago
Forum
Reply
RE: MaxScript Listener — how to mark…

Hi, Rene, excuse me for the confusion. Thanks for the tip Bobo , very useful this one :).

19 years ago
Forum
Reply
RE: MaxScript Listener — how to mark…

Yes :), but print is better than MAXScript debugger that does nothing interesting!

19 years ago
Forum
Reply
RE: MaxScript Listener — how to mark…

Hi Rene, Thanks for the explanation. I’ve found some functions to interact with the listener : see “Controlling the Listener Contents and the Insert…

19 years ago
Forum
Reply
RE: MaxScript Listener — how to mark…

Hi, If you cannot locate the error, maybe the error comes from an undefined value : search for values state using print (I love print debug in MAXSc…

19 years ago
Forum
Reply
RE: System Time

Hi, You can call timeStamp() returning the number of milliseconds since 00:00 hours that day : millisecs = timeStamp()

19 years ago
Forum
Page 25 / 30