Data Module in Dll with delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:23:44Z http://stackoverflow.com/feeds/question/1139102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1139102/data-module-in-dll-with-delphi 0 Data Module in Dll with delphi? Tobassum Munir 2009-07-16T17:33:56Z 2009-07-16T19:51:11Z <p>Hello all friends..</p> <p>I am Tobassum Munir from Pakistan. I created a database program which has a problem. I used Borland Delphi 7.x</p> <p><strong>My Question is</strong></p> <p>"<strong><em>How to create a data module in Dll (Dynamic Link Library) With Delphi?</em></strong> </p> http://stackoverflow.com/questions/1139102/data-module-in-dll-with-delphi/1139237#1139237 1 Answer by Bruce McGee for Data Module in Dll with delphi? Bruce McGee 2009-07-16T17:54:44Z 2009-07-16T17:54:44Z <p>Open your DLL project in the IDE. Under the File|New menu, do you see an option for Data Module?</p> http://stackoverflow.com/questions/1139102/data-module-in-dll-with-delphi/1139900#1139900 2 Answer by Robert Love for Data Module in Dll with delphi? Robert Love 2009-07-16T19:51:11Z 2009-07-16T19:51:11Z <p>You can create the code from the data module, just like you would in a normal application. File|New|Data Moudle</p> <p>But I am guessing that you want to create an instance of a data module in a DLL.</p> <p>DataModules are no different other classes and components, and can be created in code.</p> <pre><code>var DM : TMyDataModule; begin DM := TMyDataModule.Create(nil); try // Then... DM.MyDataSet.First; etc... finally DM.Free; end; end; </code></pre>