Data Module in Dll with delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T22:23:44Zhttp://stackoverflow.com/feeds/question/1139102http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1139102/data-module-in-dll-with-delphi0Data Module in Dll with delphi?Tobassum Munir2009-07-16T17:33:56Z2009-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#11392371Answer by Bruce McGee for Data Module in Dll with delphi?Bruce McGee2009-07-16T17:54:44Z2009-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#11399002Answer by Robert Love for Data Module in Dll with delphi?Robert Love2009-07-16T19:51:11Z2009-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>