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…
if(pSplineShape->CanConvertToType(polyObjectClassID)) { PolyObject* poly = dynamic_cast<PolyObject*>(pSplineShape->ConvertToType(0, po…
int sel = SendDlgItemMessage(hWnd, IDC_LISTBOX, LB_GETCURSEL, 0, 0); if(sel != LB_ERR) { INode* node = pblock->GetINode(pb_list, 0, sel); if(node…
if (HIWORD(wParam)==LBN_SELCHANGE) { if(LOWORD(wParam)==IDC_LISTBOX) //your listbox control’s name { int sel = SendDlgItemMessage(hWnd, IDC_LISTB…
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) { …
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…
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 …
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…
MSTR appDir = IPathConfigMgr::GetPathConfigMgr()->GetDir(APP_MAXDATA_DIR); gives “C:\Users\<USER>\AppData\Local\Autodesk\3dsMax\2017 – 64bit…
mariomorais: the vertID is correct…Thanks sure about that? MXS is using 1-based indices SDK is using 0-based indices
TYPE_BITARRAY cannot be used with paramblocks only for published function parameter types see paramtype.h
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 …
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 …
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…
try this: Point3 pnt = shape->InterpCurve3D(t, 0, perc, PARAM_NORMALIZED); just guessing… guruware