Costinbos77 Posted January 22, 2014 Posted January 22, 2014 Hello! A beginner question, how can define a function Form, or stick two Forms as in the DCL example below ? // DCL [color=blue]F2D-3D[/color] : column { . . . } // end F2D-3D [color=blue]FOk-Cancel-Help[/color] : column { . . . } // end FOk-Cancel-Help [color=blue]CERC[/color] : [color=red]dialog [/color]{ label = " Program ZZZZ" ... ... [color=blue]F2D-3D[/color] ; ... [color=blue]FOk-Cancel-Help[/color] ; } // end CERC Thank you. Costin Quote
BlackBox Posted January 22, 2014 Posted January 22, 2014 Well, in .NET you have several options... You can use the built-in AutoCAD Forms, design a custom Form, or instead use a TaskDialog as I've done here, in my Warn Before Exit plug-in, which contextually provides user options when QUIT Command is invoked: Standard QUIT: Same app; QUIT while in Block Editor: HTH Quote
irneb Posted February 18, 2014 Posted February 18, 2014 If you're referring to DCL's method of making re-usable tiles, then you can do something similar in DotNet (though I don't think it's possible in VBA). Here's a tut on making DotNet Custon UI Components: http://www.c-sharpcorner.com/UploadFile/ehtesham.dotnet/how-to-create-a-custom-control/ Note it's a lot more work than naming a collection of DCL tiles so you can reuse them later. But the DotNet custom control is more capable and you can do a lot more with it. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.