• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

create custom cards

  • Thread starter Thread starter Adahm
  • Start date Start date

Adahm

Guest
good start week to all,

I have a question for super experts.
Does anyone know how to create custom cards?

Thank you!
 

Attachments

  • Cattura.webp
    Cattura.webp
    19.2 KB · Views: 9
It's a topic I've never looked into, but I remember that in the help I saw this:
Code:
sub dockablewindow()
    dim ouserinterfacemgr as userinterfacemanager
    set ouserinterfacemgr = thisapplication.userinterfacemanager

    ' create a new dockable window
    dim owindow as dockablewindow
    set owindow = ouserinterfacemgr.dockablewindows.add("sampleclientid", "testwindowinternalname", "test window")

    ' get the hwnd of the dialog to be added as a child
    ' change this value!
    dim hwnd as long
    hwnd = 4851096

    ' add the dialog as a child to the dockable window
    call owindow.addchild(hwnd)

    ' don't allow docking to top and bottom
    owindow.disableddockingstates = kdocktop + kdockbottom

    ' make the window visible
    owindow.visible = true
end sub
I imagine you've already found it, but for a sculptor. . .

I think there's something useful here, too.
 
ciao @catcher, yes I found the example, I'm doing some evidence.
thanks for the additional material.
I'll have something to study in the next few days.
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top