hi,
How can I create a dialog box and add a button that when I click I can select an object
hi,
How can I create a dialog box and add a button that when I click I can select an object
Hi Dale,
In C++
Create an MFC dialog that is derived from CRhinoDialog
. Then from a button handler, call PushPickButton
.
Sample:
– Dale
Thanks Dale