Drawing on a DataModule in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T02:16:00Z http://stackoverflow.com/feeds/question/1056472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi 6 Drawing on a DataModule in Delphi Alister 2009-06-29T03:40:14Z 2009-07-01T02:51:56Z <p>I wonder how difficult it would be to be able to have a custom background or be able to draw on the datamodule canvas somehow so that the relationships of all the datasets can be nicely represented with arrows and stuff. Way back in Delphi 7 or so I seem to remember some sort of datamodule designer which has disappeared (I always found it annoying anyway).</p> <p>Does anyone know if this is possible through some sort of IDE plugin or something?</p> http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1056489#1056489 14 Answer by Nick Hodges for Drawing on a DataModule in Delphi Nick Hodges 2009-06-29T03:47:11Z 2009-06-29T03:47:11Z <p>TDataModule is a direct descendant of TComponent, and as such, it doens't have a Canvas or any such painting provisioned in it. As is, there is no way to draw or paint on it.</p> <p>It is conceivable that you could create a descendent that has a TCanvas, but you'd have to really hack into the IDE to get it to be drawn on at design-time. It is an interesting idea, however. </p> <p>There used to be a "Diagram" tab on the designer for Datamodules. It did have the ability to put notes, boxes with text, and data relations. It was not very understood or used, and the feature was dropped, I guess. (Before my time at CodeGear...)</p> http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1057397#1057397 4 Answer by PA for Drawing on a DataModule in Delphi PA 2009-06-29T09:29:02Z 2009-06-29T09:29:02Z <p>Or, you may change the datamodule to a form. Leave it visible during development, for testing, documentation and debugging; and turn it it invisible for production. On the form you may put a visio viewer component and some datagrids, accessed thru a tab rack, for quick browsing of the data.</p> http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1067064#1067064 1 Answer by Fabricio Araujo for Drawing on a DataModule in Delphi Fabricio Araujo 2009-07-01T02:51:56Z 2009-07-01T02:51:56Z <p>I believe that some way to organize the components in visible groups on screen could be nice... I have a report DM which have tons of datasets, dataset providers and Rave DataSources (circa 40 components).... If I could create some groups to differentiate which is used in what report.</p> <p>But this in DM designer itself, not on a separate drawing space...</p>