User Neftalí - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T01:29:46Zhttp://stackoverflow.com/feeds/user/17487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1916084/how-do-i-get-the-handle-for-locking-a-file-in-delphi/1920361#19203610Answer by Neftalí for How do I get the handle for locking a file in Delphi?Neftalí2009-12-17T09:01:12Z2009-12-17T09:01:12Z<p>Hello, you can find a complete sample to use <strong>LockFile</strong> API <a href="http://neftali-mirror.site11.com/?p=172" rel="nofollow">here</a>.
It's used to detect computer in use insede a network. It's compiled in Delphi 6 and source is included.</p>
<p>Excuse-me for my bad english.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/1900845/example-for-devexpress-quantumgrid-master-detail/1900891#19008912Answer by Neftalí for Example for DevExpress QuantumGrid Master-Detail Neftalí2009-12-14T13:21:52Z2009-12-14T13:21:52Z<p>The <a href="http://www.devexpress.com" rel="nofollow">DevExpress QuantumGrid page</a> have a very complex and large collection of samples that you can use.<br>
Visit the <a href="http://www.devexpress.com/Support/Center/KB/" rel="nofollow">Knowledge Base section</a> and search for your question. </p>
<p>it's sure that you find somethig usefull. </p>
<p>Regards.</p>
http://stackoverflow.com/questions/1820448/need-help-on-insert-new-contact-into-access-mdb-from-delphi/1820782#18207821Answer by Neftalí for need help on insert new contact into access mdb from delphiNeftalí2009-11-30T16:17:39Z2009-11-30T16:17:39Z<p>Your code for INSERT must do This: </p>
<pre><code> qryAux.SQL.Text:='INSERT INTO tblContacts(FirstName, LastName) VALUES( ' +
QuotedStr(frmEd.edFirstName.Text) + ',' +
QuotedStr(frmEd.edLastName.Text) + ')';
</code></pre>
<p>Here is correct for insert the two values. </p>
<p>In Edit mode, for retrieve values from DB, you must execute the <strong>Open</strong>, not the <strong>ExecSQL</strong>.
And after do the <strong>Open</strong>, you must test if the record is finded.
See this code:</p>
<pre><code> qryAux.Open;
// Finded?
if not (qryAux.Eof) then begin
frmEd.edFirstName.Text:=qryAux.FieldByName('FirstName').AsString;
frmEd.edLastName.Text:=qryAux.FieldByName('LastName').AsString;
end;
</code></pre>
<p>Regards.</p>
<p><hr></p>
<p>Neftalí -Germán Estévez-</p>
http://stackoverflow.com/questions/1630714/delphi-7-access-windows-x509-certificate-store/1635850#16358500Answer by Neftalí for Delphi 7 access Windows X509 Certificate StoreNeftalí2009-10-28T08:31:25Z2009-10-28T08:31:25Z<p>There are a complex library fom <a href="http://www.eldos.com/" rel="nofollow">ELDOS</a> that add complete support for work with X509 Certificates and more; Read complete description here:<br />
<a href="http://www.eldos.com/sbb/delphi-pki.php" rel="nofollow">components for Public Key Infrastructure (PKI) support</a></p>
<p>See the Reference for the class ElX509CertificateClass <a href="http://www.eldos.com/documentation/sbb/documentation/ref%5Fcl%5Fcertificate.html#declared" rel="nofollow">here</a>.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/1562601/determining-delphi-runtime-packages-to-include/1565427#15654271Answer by Neftalí for Determining Delphi Runtime Packages to IncludeNeftalí2009-10-14T10:20:55Z2009-10-14T10:20:55Z<p>You can evaluate tools like, <a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> (depends) or <a href="http://www.gexperts.org/tour/" rel="nofollow">PE Information</a> (image bellow) included at <a href="http://www.gexperts.org/" rel="nofollow">GExperts</a>.</p>
<p><img src="http://img100.imageshack.us/img100/9318/imagen210.png" alt="PE Information" /></p>
http://stackoverflow.com/questions/1560878/how-to-add-code-inside-a-program-in-runtime-delphi-windows/1565403#15654030Answer by Neftalí for How to add code inside a program in runtime (Delphi/Windows)?Neftalí2009-10-14T10:15:01Z2009-10-14T10:15:01Z<p>I think that the scripting solution it's good for this situation.<br />
There are many scripting packages that you can evaluate:</p>
<ul>
<li><a href="http://www.contextsoft.com/products/ctxscript/" rel="nofollow">Context Scripting Suite</a></li>
<li><a href="http://www.fast-report.com/en/products/fast-script.html" rel="nofollow">Fast Script</a></li>
<li><a href="http://www.remobjects.com/ps.aspx" rel="nofollow">RemObjects Pascal Script</a></li>
<li><a href="http://www.tmssoftware.com/site/scriptstudio.asp" rel="nofollow">TMS Scripter Studio</a></li>
<li><a href="http://eco148-88394.innterhost.net/paxscript/" rel="nofollow">paxScript</a></li>
<li>Other packages that you can find on Torry, DSP, VClComponents,...</li>
</ul>
<p>Regards.</p>
http://stackoverflow.com/questions/1555600/how-to-program-a-plugin-in-windows-delphi/1559064#15590641Answer by Neftalí for How to program a plugin in Windows/Delphi?Neftalí2009-10-13T09:09:12Z2009-10-13T09:09:12Z<p>Hello.<br />
<a href="http://neftali.clubdelphi.com/?p=196" rel="nofollow">Here you can find an article</a> that explain how to make an application with plugins.
You must use dynamic packages and RTTI. </p>
<p>It include the code of a first prototype. </p>
<p>Regards and excuse for my bad english too.
P.D: The article is in spanish. </p>
http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1559042#15590425Answer by Neftalí for Delphi - most successful applications developedNeftalí2009-10-13T09:03:58Z2009-10-13T09:03:58Z<p>Hello.
You can search applications in your PC made in Delphi searhing a "Magic Number" present in all Delphi applications.<br />
It's explained <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=54489" rel="nofollow">here</a>. </p>
<p>You can try with this test application (<a href="http://neftali.clubdelphi.com/temporal/MagicDelphi.zip" rel="nofollow">source</a> or <a href="http://neftali.clubdelphi.com/temporal/MagicDelphiBinary.zip" rel="nofollow">Binary</a>) to searh this number in the application in your PC. It's a simple code made by Seoane that use this:</p>
<pre><code>const
BorlandMagicTimeStamp = $2A425E19;
</code></pre>
<p>Regards.</p>
http://stackoverflow.com/questions/1525429/cloning-a-tstringgrid-component/1525916#15259160Answer by Neftalí for Cloning a TStringGrid ComponentNeftalí2009-10-06T14:25:46Z2009-10-06T14:25:46Z<p><em>"...and the buttons (button1 and button2) of Form1 only work with the first StringGrid but not with the new added one. I did read somewhere that in order to solve this problem..."</em> </p>
<p>There is no generic method for solving this. Delphi offers different tools to solve it.</p>
<ol>
<li>You can create a list of Objects (TObjectList) that containts all the StringGrid; At Button1 Click event you must search what is the grid that you are using at this moment. For example (BIS for the other buttons):</li>
</ol>
<p><hr /></p>
<pre><code>var
index:integer;
sg:TStringGrid;
begin
...
// search the active page
index := pageControl.ActivePageIndex; //0, 1, 2,...
// USe this for search the StringGrid
sg := TStringGrid(OList.Objects[index]);
// the code that you have at the event bus woking with sg
// not stringgrid1, stringgrid2,...
...
sg.Color :=
...
</code></pre>
<p><hr /></p>
<p>If you don't want use ObjectList, there are alternatives. You can use Tag property for all StringGrids. Assign 0, 1, 2, 3,...<br />
Extract the index (active page) and search the TStringGrid that have the property Tag with the same value. You can do this with <strong>FindComponent</strong>. The first methos is better. ;-)</p>
<p>Regards.
P.D: Excuse for my bad english.</p>
http://stackoverflow.com/questions/1502822/delphi-6-alongside-rad-studio-2009/1502859#15028597Answer by Neftalí for Delphi 6 alongside RAD Studio 2009Neftalí2009-10-01T09:19:30Z2009-10-01T09:19:30Z<p>There are no problem to install D6 and RAD 2009 at the same machine.<br />
I think that it's better install first the previos version (first D6 and after D2009), but it's not absolutly necesary.</p>
<p>Regards and excuse for my bad english.</p>
http://stackoverflow.com/questions/1496283/why-does-ado-next-record-processing-slow-down-in-delphi/1496667#14966671Answer by Neftalí for Why does ADO Next record processing slow down in Delphi?Neftalí2009-09-30T07:55:21Z2009-09-30T07:55:21Z<p>Additionally, you can change the <strong>CursorType</strong> property of your Access Component (TADOTable/TADOQuery/...). </p>
<p>Try <strong>ctOpenForwardOnly</strong> to imporve performance; It's possible that you need to disconnect de DBGrid (if you have conected one) and reconnect on exit the loop.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/1264883/converting-notification-area-icon-to-program-icon-in-win7-delphi/1264982#12649823Answer by Neftalí for converting notification area icon to Program icon in Win7 (Delphi)Neftalí2009-08-12T08:44:57Z2009-08-12T08:44:57Z<p><a href="http://www.gumpi.com/Blog/2009/01/20/Alpha1OfWindows7ControlsForDelphi.aspx" rel="nofollow">Here you can find</a> a alfa version of components to work with the new features of Windows 7. </p>
<ul>
<li>Jump Lists - right click your
application entry on the taskbar to
see those</li>
<li>Overlay Icon - show the state of your
application right in the taskbar
(notification icons are hidden by Windows 7 by default, finally)</li>
<li>Progress indicator in the taskbar
button</li>
<li>Taskbar Thumbnails - you application
can be controlled directly from the
taskbar preview window.</li>
</ul>
<p>Download it and check if it is useful for you.</p>
<p><a href="http://www.gumpi.com/Blog/CategoryView,category,Windows%2B7.aspx" rel="nofollow">Here there are some images</a> of the demo program (compiled EXE is included).<br />
The source also is included.</p>
http://stackoverflow.com/questions/1260670/rich-gui-application-in-delphi/1261336#12613364Answer by Neftalí for Rich GUI application in DelphiNeftalí2009-08-11T16:01:00Z2009-08-11T23:46:56Z<p>It's strange. You want to use Delphi but you won't use VCL? </p>
<p>Can you use Skinned controls? There are good skin packages. For Skin packages you can <a href="http://www.torry.net/pages.php?id=1544" rel="nofollow">see here</a> and download some demos.<br />
You can also try the <a href="http://www.tmssoftware.com/site/advsmoothcontrols.asp" rel="nofollow">"Smooth Controls" from TMS</a>.</p>
<p><img src="http://www.tmssoftware.com/site/img/MegaMenu%5Fsmall2.png" alt="alt text" /></p>
<p>Regards.</p>
http://stackoverflow.com/questions/1259849/delphi-how-to-programmatically-adjust-visual-ordering-of-components-with-align/1259958#12599581Answer by Neftalí for Delphi: How to programmatically adjust visual ordering of components with align = alTopNeftalí2009-08-11T12:10:07Z2009-08-11T12:10:07Z<p>If you change the top of the panel the order of visually panel change. </p>
<p>Try this (all the panels aligned <strong>altop</strong> and <strong>with the same Height</strong>):</p>
<p>PANEL0<br />
PANEL1<br />
PANEL2<br />
PANEL3<br />
PANEL4 </p>
<p>At <strong>OnClick</strong> event of <strong>all panels</strong> do this:</p>
<pre><code> TPanel(Sender).Top := TPanel(Sender).Top - TPanel(Sender).Height - 2;
</code></pre>
<p>If you click on a panel it moves up one position.</p>
<p>That's the idea. Change the Top X pixels.<br />
At the same, if you do this:</p>
<pre><code> TPanel(Sender).Top := TPanel(Sender).Top - (TPanel(Sender).Height * 2)- 2;
</code></pre>
<p>The panel up 2 positions.</p>
<p><strong>ADDED:</strong> If you use Drag&Drop, this events return the position (X and Y); With the original position and end position you can calculate the wew top for asign to the panel.</p>
<p>Excuse form my poor english.
regards</p>
http://stackoverflow.com/questions/1221197/are-there-any-good-free-cheap-delphi-grid-controls/1221638#12216382Answer by Neftalí for Are there any good free/cheap Delphi grid controls?Neftalí2009-08-03T10:34:34Z2009-08-03T10:34:34Z<p>Oooppppsss!</p>
<p>It's already added.
Excuse-me.</p>
<p>You can <a href="http://www.scalabium.com/smdbgrid.htm" rel="nofollow">see this</a>, from <a href="http://www.scalabium.com" rel="nofollow">Scalabium</a>.<br />
It's free and Sources included.
See the images at link.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/1211528/options-to-print-label-with-barcode/1211784#12117840Answer by Neftalí for Options to print label with barcode?Neftalí2009-07-31T10:18:08Z2009-07-31T10:18:08Z<p>You can use the standard TRichEdit component. It have the Print method.
Simply:</p>
<pre><code> rich1.Print('title');
</code></pre>
<p>Regards.</p>
http://stackoverflow.com/questions/1194013/how-to-do-mouse-panning-on-a-custom-component-in-delphi-2009/1194325#11943251Answer by Neftalí for How to do mouse panning on a custom component in Delphi 2009.Neftalí2009-07-28T14:05:42Z2009-07-29T01:19:20Z<p>In the same unit that defines TWinControl, you have the implementation of TControl. See how the mouse events and procedures are defined. You can try to capture mouse messages in your component.</p>
<p>Try this:</p>
<p>In private declarations:</p>
<pre><code>procedure WMLButtonDown(var Message: TWMLButtonDown); message WM_LBUTTONDOWN;
procedure WMMouseMove(var Message: TWMMouseMove); message WM_MOUSEMOVE;
procedure WMLButtonUp(var Message: TWMLButtonUp); message WM_LBUTTONUP;
</code></pre>
<p>In implementation you can do something like this</p>
<pre><code>procedure TPanControl.WMLButtonDown(var Message: TWMLButtonDown);
begin
Self.Color := clYellow;
end;
procedure TPanControl.WMLButtonUp(var Message: TWMLButtonUp);
begin
Self.Color := clbtnFace;
end;
procedure TPanControl.WMMouseMove(var Message: TWMMouseMove);
var
State : TKeyboardState;
begin
GetKeyboardState(State);
if ((State[VK_LBUTTON] And $80) <> 0) then begin
Self.Color := clOlive;
end;
end;
</code></pre>
<p>Test some variations.
With this simple code you can catch mouse events. In these procedures you can launch mouse events or do something to create Pan effect.</p>
http://stackoverflow.com/questions/1188829/how-to-add-a-field-programatically-to-a-tadotable-in-delphi/1188989#11889890Answer by Neftalí for How to add a field programatically to a TAdoTable in DelphiNeftalí2009-07-27T15:55:31Z2009-07-27T15:55:31Z<p>You can create new field using SQL. In my opinion is the best chance.
If you don't want use SQL you can see this article for create new fields with ADO using ADOX (originaly in Spanish but at right you can translate the page)
<strong>"Create fields in a table (Access) Code, using ADOX"</strong> <a href="http://neftali.clubdelphi.com/?p=36" rel="nofollow">original</a>/<a href="http://translate.google.com/translate?u=http%3A%2F%2Fneftali.clubdelphi.com%2F%3Fp%3D36&sl=es&tl=en&hl=en&ie=UTF-8" rel="nofollow">translated</a></p>
<p>If must know the field in a table you can access the TADOTable and the method GetFiledDef. Additionaly the method FindField return nil if the field dot not exist.</p>
<p>Additionally some Databases/SGBD's have system tables that you can access with an SQL for know Existent Tables,Fields,Indexes,... </p>
<p>Excuse for my bad english.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/1048982/good-version-control-software-for-delphi-2009/1049260#10492601Answer by Neftalí for good version control software for Delphi 2009Neftalí2009-06-26T13:47:29Z2009-06-26T13:47:29Z<p>We are using since two years <a href="http://jedivcs.sourceforge.net/" rel="nofollow">JediVCS</a> (part of the Jedi Proyject). It's stable and work outside the IDE (standalone application) or Integrated with the Delphi IDE.</p>
<p>Work with a lot of servers:</p>
<ul>
<li>DBISAM 3.x </li>
<li>FlashFiler 2.13 (Open Source version) </li>
<li>Firebird 1.0x, 1.5x, 1.5x embedded (with support for characterset configuration) </li>
<li>Oracle 8.x, 9.x, 10.x </li>
<li>MSSQL 7, 8, 2000 (with both supported security models ("Trusted NT security" or "SQL
based") </li>
<li>MySQL 3.23x, 4.0x, 4.1x</li>
</ul>
<p>NOTE: <a href="http://www.youtube.com/watch?v=KZKRlz1PLOI&eurl=http%3A%2F%2Fsjover.com%2Fdelphi%2F%3Ftag%3Djedi-vcl&feature=player%5Fembedded" rel="nofollow">Here you can see a video</a> of installation process, the integration with Delphi IDE, Check-in and Check-out files process...</p>
<p>Regards.</p>
http://stackoverflow.com/questions/950399/how-can-i-convert-a-html-file-to-a-pdf-file-in-delphi/951050#9510500Answer by Neftalí for How can I convert a Html file to a pdf file in DelphiNeftalí2009-06-04T14:46:24Z2009-06-04T14:46:24Z<p>If you want do this without the user manipulation (transparent for te user) you can read <a href="http://stackoverflow.com/questions/925348/printing-to-pdf/925658#925658">this (PDFFactory)</a>.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/945785/how-can-i-handle-temporary-files/949291#9492910Answer by Neftalí for How can I handle temporary files ?Neftalí2009-06-04T08:37:42Z2009-06-04T08:37:42Z<p>Actually our application create de files in a especific temp folder. When the application Close the fies are deleted. If application not close correctly, the next execution (when close) all files are deleted.</p>
<p>Additionally, you can launch a background process to delete the files that are no longer open. ShellExecute return a Handle (internally associate this handle to a FileName). This background process must test the handle of process that not exist and Delete the associated files.</p>
<p>Excuse for bad english. ;-)</p>
<p>Regards.</p>
http://stackoverflow.com/questions/925897/how-in-a-delphi-dxdbgrid-can-i-change-the-color-of-a-single-row/926241#9262412Answer by Neftalí for How in a Delphi dxDBGrid can I change the color of a single row?Neftalí2009-05-29T14:22:29Z2009-05-29T14:22:29Z<p>You can use styles.
The DevExpres Grid in DBTableView has a event named: OnGetContentStyle in Styles part.</p>
<p>You can create at design two styles and apply the desired style at runtime.</p>
<pre><code>procedure TFormBrBase.DBTableViewStylesGetContentStyle(
Sender: TcxCustomGridTableView; ARecord: TcxCustomGridRecord;
AItem: TcxCustomGridTableItem; out AStyle: TcxStyle);
</code></pre>
<p>With ARecord you can access to the actual record values. With this values you decide and change the value of the AStyle(out) param. This line is painted with this style. </p>
<p>Greetings.</p>
<p><hr /></p>
<p>Neftalí<br />
Germán Estévez</p>
http://stackoverflow.com/questions/925348/printing-to-pdf/925658#9256580Answer by Neftalí for printing to pdfNeftalí2009-05-29T12:00:03Z2009-05-29T12:00:03Z<p>I use <a href="http://www.fineprint.com/products/pdffactory/index.html" rel="nofollow">PDFFactory</a>. Is a software similar to others thar work like a virtual printer.
Is not very expensive.
The particularity is that you can control (using the windows registry) some parámeters to print any document without the user intervention.</p>
<p>I use it in my Delphi application. </p>
<ol>
<li>Select the default printer (PDFFactory)</li>
<li>Write the FileName,... on the registry key</li>
<li>Send to print.</li>
</ol>
<p>The user should not write anything and not view any config window.</p>
<p>Geetings.</p>
<p><hr /></p>
<p>Neftali -Germán Estévez-</p>
http://stackoverflow.com/questions/920560/delphi-how-to-organize-source-code-to-increase-compiler-performance/925574#9255741Answer by Neftalí for Delphi: How to organize source code to increase compiler performance?Neftalí2009-05-29T11:31:30Z2009-05-29T11:31:30Z<p>Hello.</p>
<p>We had the same (or similar) problem.
I of our package has compilation Time about 12 min.
After changes, now we have moved to 32 sg.</p>
<p>After many tests we found that the "problematic situation" was the following:
In a single package:</p>
<ul>
<li><p>The <strong>A unit</strong> uses a large number of units: U1, U2, U3, U4, ... U100 (Uses of Interface) in the same package. This is an important unit that centralizes all the initialization work.</p></li>
<li><p>All units of the package, U1, U2, U3, .., U100 uses <strong>unit A</strong> (use of implementation)</p></li>
</ul>
<p>This "circular reference" does not give compilation errors because the USES are different, but caused a large compile-time.</p>
<p>SOLUTION:
Eliminate the reference to each unit, U1, U2, U3 ,...., U100 in the <strong>A Unit</strong>.</p>
<p>Now, <strong>A unit</strong> use a large number of units: U1, U2 ,...., U100, but the units U1, U2 ,..., U100, does not use the unit A.</p>
<p>After this change the compile-time is down drastically.</p>
<p>If you have a similar situation, you can try this.</p>
<p>Excuse for my bad english.</p>
<p>Greetings.</p>
<p><hr /></p>
<p>Neftalí -Germán Estévez-</p>
http://stackoverflow.com/questions/914288/how-to-make-a-progress-bar-in-turbo-delphi-using-only-tlabel-not-tprogressbar/914656#9146561Answer by Neftalí for How to make a progress bar in Turbo Delphi using ONLY TLabel NOT TProgressBarNeftalí2009-05-27T08:45:07Z2009-05-27T08:45:07Z<p>And this is a variant o Bing solution, that show the percentage inside (middle) of the bar.</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
var
X: Integer;
Total: Integer;
Percent: Integer;
begin
Total := 1000;
for X := 1 to Total do begin
Sleep(5);
Percent := (X * 100) div Total;
Label1.Caption := StringOfChar('|', Percent DIV 2) +
' ' + IntToStr(Percent) + '% ' +
StringOfChar('|', Percent DIV 2);
Label1.Repaint;
Application.ProcessMessages;
end;
end;
</code></pre>
<p>Excuse-me for my bad English.
Regards.</p>
<p><hr /></p>
<p>Neftalí -Germán Estévez-</p>
http://stackoverflow.com/questions/586226/where-can-i-find-newer-looking-glyphs-for-tbitbtn/586654#5866542Answer by Neftalí for Where can I find *newer* looking glyphs for TBitBtn?Neftalí2009-02-25T16:06:16Z2009-02-25T16:06:16Z<p>You can find more free icons, in multiple formats and sizes at:</p>
<ul>
<li><p><a href="http://www.iconlet.com/" rel="nofollow">http://www.iconlet.com/</a></p></li>
<li><p><a href="http://www.iconfinder.net/" rel="nofollow">http://www.iconfinder.net/</a></p></li>
<li><p><a href="http://www.iconlook.com/" rel="nofollow">http://www.iconlook.com/</a></p></li>
</ul>
http://stackoverflow.com/questions/532350/tstringlist-as-field-of-object-does-not-work/532627#5326270Answer by Neftalí for TStringList as field of object does not workNeftalí2009-02-10T14:47:56Z2009-02-10T14:47:56Z<p>You have forgotten to call <strong>inherited</strong> in the constructor of your object (like you have called in destructor). </p>
<pre><code>constructor TMyObject.Create;
begin
inherited;
Fsl := TStringList.Create;
end;
</code></pre>
<p>···························<br />
Neftalí -Germán Estévez-</p>
http://stackoverflow.com/questions/528832/check-class-name/531606#531606-1Answer by Neftalí for Check class nameNeftalí2009-02-10T09:17:31Z2009-02-10T09:17:31Z<p>At first excuse-me for my bad english.<br />
If you can't do the 2 before responses (Adapters and derive from a base class), you can use RTTI to access a procedure by it's name. </p>
<p>The procedure must be declared in the published section. </p>
<p>If you've a declaration like this:</p>
<pre><code> TFirstClass = class(TObject)
published
procedure FirstFunction;
procedure SecondFunction;
end;
TSecondClass = class(TObject)
published
procedure FirstFunction;
procedure SecondFunction;
end
</code></pre>
<p>You can do something like this to execute a method if you have the name:</p>
<pre><code> // Acceso a la rutina; TObject is a Base class for
// TFirstClass and TSecondClass
Routine.Data := Pointer(obj as TObject);
// Devuelve la dirección de un método published; Method for it's name
Routine.Code := (obj as TObject).MethodAddress('SecondFunction');
// Not find
if (Routine.Code = nil) then Exit;
// execute
TExecuteMethod(Routine);
</code></pre>
<p>You can see similar codes here:<br />
* <a href="http://neftali.clubdelphi.com/tips/tip4.html" rel="nofollow">Tip4</a>
* <a href="http://neftali.clubdelphi.com/tips/tip7.html" rel="nofollow">Tip7</a> </p>
<p>Regards.</p>
http://stackoverflow.com/questions/513229/delphi-control-that-could-mimic-add-onsextension-list-of-firefox/515758#5157583Answer by Neftalí for Delphi control that could mimic "Add-ons|Extension list" of Firefox?Neftalí2009-02-05T12:43:00Z2009-02-05T12:43:00Z<p>Hello.
You can do something similar (not exactly) with standard components; TDBCtrlGrid, TSpeedButton,...</p>
<p><img src="http://img8.imageshack.us/img8/9585/imagen29ox3.png" alt="alt text" /> </p>
http://stackoverflow.com/questions/459554/how-do-i-tell-if-one-instance-of-my-program-is-running/461695#4616950Answer by Neftalí for How do i tell if one instance of my program is running?Neftalí2009-01-20T15:13:02Z2009-01-20T15:13:02Z<p>See this unit (using CreateMutex): <a href="http://romansg.net/index.php?pg=uiapp" rel="nofollow">UiApp</a></p>
<p>Additionally at this page, you can read the advantages and disadvantages for to this work with differents methods (mutex, FindWindows,...). </p>
<p>This unit have the solution to activate the previos instance of the application when this is detected. </p>
<p>Regards and excuse-me for my bad english.</p>
<p><hr /></p>
<p>Neftalí -Germán Estévez-</p>
http://stackoverflow.com/questions/1820448/need-help-on-insert-new-contact-into-access-mdb-from-delphi/1820782#1820782Comment by Neftalí on need help on insert new contact into access mdb from delphiNeftalí2009-11-30T16:20:58Z2009-11-30T16:20:58ZNOTE:
Also, you can use parameters in the aryAux Query; Using paramaters it's not needed use QuotedStr.
-> qryAux.SQL.Text:='INSERT INTO tblContacts(FirstName, LastName) VALUES(:fist, :last)';
http://stackoverflow.com/questions/1555600/how-to-program-a-plugin-in-windows-delphi/1559064#1559064Comment by Neftalí on How to program a plugin in Windows/Delphi?Neftalí2009-10-14T10:22:22Z2009-10-14T10:22:22ZEspero en breve añadir la segunda parte que está ya casi concluída.
Un saludo.http://stackoverflow.com/questions/1256071/how-to-use-a-bitmap-on-the-buttonComment by Neftalí on how to use a bitmap on the button?Neftalí2009-08-11T08:19:09Z2009-08-11T08:19:09ZWe do not charge money for the number of words you use. You can use all you want and need.
Regards.http://stackoverflow.com/questions/369903/where-are-all-the-delphi-developers/427557#427557Comment by Neftalí on Where are all the Delphi Developers?Neftalí2009-06-02T08:35:27Z2009-06-02T08:35:27ZBueno, creo que ya somos 2. ;-Dhttp://stackoverflow.com/questions/925348/printing-to-pdf/925658#925658Comment by Neftalí on printing to pdfNeftalí2009-06-02T08:34:32Z2009-06-02T08:34:32ZThis is the link with detailled explanation.
<a href="http://www.fineprint.com/developers/index.html" rel="nofollow">fineprint.com/developers/index.html</a>