guruware
@guruware
New Member
Joined: Feb 14, 2024
Topics: 1 / Replies: 118
Reply
RE: PostMessage does not handle 64-bit arguments properly?

must work, never had problems what you do when receiving WM_TRIGGER_CALLBACK ? or might be this, from MSN: Message numbers in the second range (WM_U…

7 years ago
Forum
Reply
RE: How can I Convert SplineShape to editable poly(c++)

if(pSplineShape->CanConvertToType(polyObjectClassID)) { PolyObject* poly = dynamic_cast<PolyObject*>(pSplineShape->ConvertToType(0, po…

7 years ago
Forum
Reply
RE: 3DSMAX SDK Q : How to get array Index value of selected item in the listbox ?

int sel = SendDlgItemMessage(hWnd, IDC_LISTBOX, LB_GETCURSEL, 0, 0); if(sel != LB_ERR) { INode* node = pblock->GetINode(pb_list, 0, sel); if(node…

8 years ago
Forum
Reply
RE: 3DSMAX SDK Q : How to get array Index value of selected item in the listbox ?

if (HIWORD(wParam)==LBN_SELCHANGE) { if(LOWORD(wParam)==IDC_LISTBOX) //your listbox control’s name { int sel = SendDlgItemMessage(hWnd, IDC_LISTB…

8 years ago
Forum
Reply
RE: 3DSMAX SDK Q : How to get array Index value of selected item in the listbox ?

is your listbox a single- or multi-select box ? if single: int sel = sendDlgItemMessage(hWnd, IDC_LISTBOX, LB_GETCURSEL, 0, 0) if(sel != LB_ERR) { …

8 years ago
Forum
Reply
RE: [SDK] VS Project Property: "Enable Large Addresses" for plugins…

LAA you only need for 32-bit apps/dlls, so the can use more than 2GB but shouldn’t be a problem for 64-bit dlls if it’s set you are compiling for Max…

8 years ago
Forum
Reply
RE: Get the right MacAddress

if people would just donate for things they like and got for free, there would be less need for protection, because you need to sell something to get …

8 years ago
Forum
Reply
RE: SDK: Output string variables to the maxscript listener?

when you compile this, is “Character Set” to Unicode ? (in general properties) ? then both should work, L”” and _T using _T : you can compile for max…

8 years ago
Forum
Reply
RE: User 3dsmax dir path in SDK c++

MSTR appDir = IPathConfigMgr::GetPathConfigMgr()->GetDir(APP_MAXDATA_DIR); gives “C:\Users\<USER>\AppData\Local\Autodesk\3dsMax\2017 – 64bit…

8 years ago
Forum
Reply
RE: getVert Get weird Coordinates

mariomorais: the vertID is correct…Thanks sure about that? MXS is using 1-based indices SDK is using 0-based indices

8 years ago
Forum
Reply
RE: BitArray Properties in Plugin (SDK)

TYPE_BITARRAY cannot be used with paramblocks only for published function parameter types see paramtype.h

8 years ago
Forum
Reply
RE: SDK: Problem with ParamBlockDesc2 in 32-bit builds?

Malkalypse: I was taught not to include p_accessor in a ParamBlockDesc2 why is that ? – never had a problem with p_accessor 1.0E30, that doesnt …

8 years ago
Forum
Reply
RE: SDK: Create window outside of Max?

anything you create with sdk wiil be gone on a max crash so you need to create a standalone mini-app, and do some interprocess communication easiest …

9 years ago
Forum
Reply
RE: SDK GetObjectTM from SimpleObject2

tm = iNode->GetObjectTM(t); assuming you have no iNode-pointer available somewhere in your code, this is what i did in one of my plugins: in your…

9 years ago
Forum
Reply
RE: SDK InterpCurve3D

try this: Point3 pnt = shape->InterpCurve3D(t, 0, perc, PARAM_NORMALIZED); just guessing… guruware

9 years ago
Forum
Page 4 / 8