User skamradt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T02:43:44Zhttp://stackoverflow.com/feeds/user/9217http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868615/lyrics-flow-delphi-pseudo-code/1869942#18699420Answer by skamradt for Lyrics flow (Delphi / pseudo-code)skamradt2009-12-08T21:24:22Z2009-12-08T21:24:22Z<p>Another option would be to create your own markup that you parse for that contains both the text and the delay timing. While a timer would work, the problem is that its not going to be accurate enough over time to give you reliable results since its fired based on messaging. Instead, I would perform triggers based on how far from the beginning of the music file you want the event to occur. This also allows the system to catch-up if some other app blocking process gets in the way and should help keep things in sync.</p>
<p>Something as simple as:</p>
<pre><code>00:00:15;LYRIC;This is lyric line 1
00:00:18;FADEOUT
</code></pre>
<p>you then can parse this into list of appropriate objects which take the appropriate actions.</p>
http://stackoverflow.com/questions/1865842/wrong-result-after-refresh-pressed-on-dbnavigator-delphi/1868610#18686101Answer by skamradt for Wrong Result after Refresh pressed on DbNavigator Delphiskamradt2009-12-08T17:40:26Z2009-12-08T17:55:47Z<p>Try the following, which will return the age in days.</p>
<pre><code>SELECT *, CINT(Now()-[Birth Date]) as AGE FROM TableName
</code></pre>
<p>For age in years use:</p>
<pre><code>SELECT *, INT((Now()-[Birth Date]) / 365.242199) as AGEYRS from TableName
</code></pre>
<p>(note, CINT rounds, INT doesn't)</p>
<p>The reason that this works is that ACCESS stores its date/time in a similar method as Delphi, as a float where the integer portion is the number of days since a specific day and the fractional part as the fractional portion of that day ( 0.25 = 6 am, 0.50 = noon, etc). Thus if you want to know the differences between two days, just take the differences between the day numbers... for number of years, divide this by the number of days in a year. </p>
http://stackoverflow.com/questions/1859969/detect-twebbrowser-refresh-event-in-delphi-2009/1861851#18618510Answer by skamradt for Detect TWebBrowser refresh event in Delphi 2009skamradt2009-12-07T18:14:12Z2009-12-07T18:14:12Z<p>There is an onRefresh event which is exposed by the TWebBrowser replacement <a href="http://www.bsalsa.com/product.html" rel="nofollow">TEmbeddedWB</a>. This version also exposes many other features which are otherwise hidden by the TWebBrowser component.</p>
http://stackoverflow.com/questions/1851883/how-to-find-list-of-all-tables-in-access-database-matching-certaing-format-in-del/1861585#18615852Answer by skamradt for How to find list of all tables in Access Database matching certaing format in Delphiskamradt2009-12-07T17:38:04Z2009-12-07T17:38:04Z<p>There are two methods available on the connection component which are useful for this kind of work. The first is:</p>
<pre><code>procedure GetTableNames(List: TStrings; SystemTables: Boolean = False);
</code></pre>
<p>which populates a TStrings descendant with a list of all of the tables available in the current database. The next method is:</p>
<pre><code>procedure GetFieldNames(const TableName: string; List: TStrings);
</code></pre>
<p>which populates a list of all fields for a specific table. You then can create a simple routine to loop through all fields for all tables for the specific field you are looking for.</p>
http://stackoverflow.com/questions/1850567/generate-dbf-files/1850828#18508280Answer by skamradt for generate DBF filesskamradt2009-12-05T01:54:37Z2009-12-07T17:18:29Z<p>While I haven't used it, there is a component <a href="http://www.micrel.cz/delphi/index%5Fe.html#jbdbf" rel="nofollow">jdDbf</a> which appears to be recently updated that appears that it will work. Something to be aware of is that the Dbf format has many flavors, however most of the variances appear to be in the index files so if you need to use it with another system you might have to rebuild them.</p>
<p>For a embedded database that works well on a usb drive, I would look at SQLite. There is a Delphi implementation <a href="http://www.yunqa.de/delphi/doku.php/products/sqlite3/index" rel="nofollow">DISQLite3</a> which has a free and pro version that would work well and comes highly recommended. There are many commercial quality programs currently using it, including the likes of <a href="http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223449#223449">FeedDemon</a>. </p>
http://stackoverflow.com/questions/1849303/pre-sorting-analysis-algorithm/1849512#18495120Answer by skamradt for Pre-sorting analysis algorithm?skamradt2009-12-04T20:38:25Z2009-12-04T20:38:25Z<p>You would still have to run through all records to determine if its sorted or not, so to improve performance, start with your first record and run though the rest until you either notice something not properly sorted, or reach the end of the list. If you find miss then only sort items from that position to the end (since the beginning of the list is already sorted). </p>
<p>At each item in the second part, see if the item is < than the last element in the first part and if so use an insertion sort into ONLY the first part. Otherwise Quicksort against all other items in the second part. This way the sort is optimized for the specific case.</p>
http://stackoverflow.com/questions/1848114/how-to-create-calculated-field-in-access-database-using-sql-during-runtime-in-del/1848387#18483871Answer by skamradt for How to create calculated field in Access Database using SQL during runtime in Delphiskamradt2009-12-04T17:14:04Z2009-12-04T17:14:04Z<p>Create a <a href="http://www.w3schools.com/sql/sql%5Fview.asp" rel="nofollow">view</a> (in Access this is called a Query) which returns the calculated data. The SQL Syntax is the same as it is for SQL Server.</p>
<pre><code>CREATE VIEW TABLEVIEW AS
SELECT TABLE.*, DATE() - TABLE.[DATE ADDED] AS AGE
FROM [Table];
</code></pre>
<p>You can also create this in the ACCESS GUI by creating a new Query, which gives you the ability to play/test with the sql until it returns the correct data you are expecting.</p>
<p>When selecting this data, you do it just like you would a normal table:</p>
<pre><code>SELECT * FROM TABLEVIEW WHERE AGE > 30
</code></pre>
http://stackoverflow.com/questions/1841621/delphi-non-visual-ttree-implementation/1842272#18422721Answer by skamradt for Delphi non visual TTree implementationskamradt2009-12-03T19:22:08Z2009-12-03T19:22:08Z<p>You could just use a tStringList and add objects which are other tStringLists... crude, but it works if your data can be represented as only string data.</p>
<pre><code>Child := tStringlist.create;
ParentList.AddObject('Child',Child);
</code></pre>
<p>Of course a better solution would be to create your own objects which contain a tobjectlist of objects. </p>
http://stackoverflow.com/questions/1835161/looking-for-a-local-database-for-d2009/1835942#18359420Answer by skamradt for Looking for a local database for D2009+skamradt2009-12-02T21:29:22Z2009-12-02T21:29:22Z<p>Another option would be to use ADO and a microsoft access database. The only disadvantage is that the user has to have the Jet engine and MDAC installed... which most machines do. The advantage to this is that it makes upsizing to MSSQL easy. Just change the connection string to point to the SQL Server database, and make a few minor query changes.</p>
http://stackoverflow.com/questions/1829511/jvcl-2-10-and-delphi-2010/1829746#18297461Answer by skamradt for JVCL 2.10 and Delphi 2010skamradt2009-12-01T23:42:37Z2009-12-01T23:42:37Z<p>I migrated a Delphi 5 application upwards to Delphi 2009 (and I'm sure it would compile for 2010), including changing to the latest version of the JVCL. It was most likely less painful than attempting to fix all of the libraries that I used. Most of the changes were extremely minor, fixing up events which changed in their declaration (but for the most part stayed the same). A few places I had to change from length(string) to Length(String)*SizeOf(Char). If you start with a project with no warnings ... or known warnings you can compare against, then work your way to eliminate all of them in Delphi 2010. </p>
<p>My suggestion is to install VMWare Workstation or VirtualPC, install Delphi 2010 there and do your port separate from your existing development environment. Make frequent backups (or extend your file backup in Delphi Editor Options to 99 and save often) and experiment a little. The history tab is fantastic at allowing you to roll back to a previous version or to compare what WAS working in the last version.</p>
http://stackoverflow.com/questions/1828185/how-to-put-a-relative-path-for-a-dll-statically-loaded/1828823#18288231Answer by skamradt for How to put a relative path for a DLL statically loaded?skamradt2009-12-01T20:50:42Z2009-12-01T20:50:42Z<p>If you place the path to the DLL in your system path, then it doesn't matter where you put it. Just be aware that you will have to reboot if you make the change for a service before it may take effect.</p>
<p>To edit the path variable, go to the advanced tab for system properties (right click properties from "My Computer") and press the "Environment Variables..." button. Change the system variable "Path" to include the directory where you want to store your DLL.</p>
<p>When resolving a DLL, the system first checks the current directory where the process is started, followed by the path variable from left to right, and will use the DLL found in the first directory it runs across... which is why it works when you place it in C:\Windows\System32. </p>
http://stackoverflow.com/questions/1823542/how-to-send-a-http-post-request-in-delphi-using-wininet-api/1827571#18275710Answer by skamradt for How to send a HTTP POST Request in Delphi using WinInet api.skamradt2009-12-01T17:06:00Z2009-12-01T17:06:00Z<p>Personally I prefer to use the <a href="http://synapse.ararat.cz/doku.php/download" rel="nofollow">synapse</a> library for all of my TCP/IP work. For example, a simple HTTP post can be coded as:</p>
<pre><code>uses
httpsend;
function testpost;
begin
stm := tStringstream.create('param=value');
try
HttpPostBinary('http://example.com',Stm);
finally
stm.free;
end;
end;
</code></pre>
<p>The library is well written and very easy to modify to suit your specific requirements. The latest subversion release works without any problems for both Delphi 2009 and Delphi 2010. This framework is not component based, but rather is a series of classes and procedures which well in a multi-threaded environment. </p>
http://stackoverflow.com/questions/1804464/database-versioning-in-installed-applications-using-delphi/1821195#18211950Answer by skamradt for Database versioning in installed applications using Delphi.skamradt2009-11-30T17:29:08Z2009-11-30T17:29:08Z<p>I'm Using ADO for my databases. I also use a version number scheme, but only as a sanity check. I have a program I developed which uses the Connection.GetTableNames and Connection.GetFieldNames to identify any discrepancy against an XML document which describes the "master" database. If there is a discrepancy, then I build the appropriate SQL to create the missing fields. I never drop additional ones.</p>
<p>I then have a dbpatch table, which contains a list of patches identified by a unique name. If there are specific patches missing, then they are applied and the appropriate record is added to the dbpatch table. Most often this is new stored procs, or field resizing, or indexes </p>
<p>I also maintain a min-db-version, which is also checked since I allow users to use an older version of the client, I only allow them to use a version that is >= min-db-version and <= cur-db-version.</p>
http://stackoverflow.com/questions/1803658/multiple-database-access-with-delphi/1821139#18211390Answer by skamradt for Multiple Database Access with Delphiskamradt2009-11-30T17:17:35Z2009-11-30T17:17:35Z<p>For me ADO makes the best choice for MS SQL. It was developed by Microsoft and is very stable. You could spend time going to a more native approach, but I have found that my projects built with ADO do not require many (if any) changes to support the various versions of MSSQL Server. ADO also has support for ODBC drivers, so legacy databases can also be accessed. It is even possible to take a comma delimited file and query it as if it was a table using ADO (although performance is horrible, since every query becomes a full table scan).</p>
http://stackoverflow.com/questions/1803583/how-can-i-disconnect-any-process-from-the-internet-using-delphi/1821086#18210860Answer by skamradt for How can I disconnect any process from the Internet using Delphi?skamradt2009-11-30T17:06:18Z2009-11-30T17:06:18Z<p>You could kill the process itself, or disconnect the network card from the network (the later would effect all processes on the machine though). AFIK most current software firewalls do not allow apply rule changes to existing connections, just when new connections are requested. </p>
http://stackoverflow.com/questions/1800485/atch-the-start-applications/1800755#18007551Answer by skamradt for Сatch the start applications skamradt2009-11-25T23:51:09Z2009-11-26T00:00:05Z<p>the <a href="http://msdn.microsoft.com/en-us/library/ms644977%28VS.85%29.aspx" rel="nofollow">WH_CBT hook</a> is most likely the one you are after. It allows you to be notified by the OS whenever a window is created or destroyed. You will want to use this hook to grab the handle and from the handle get the process id using <a href="http://msdn.microsoft.com/en-us/library/ms633522%28VS.85%29.aspx" rel="nofollow">GetWindowThreadProcessId</a>. You can then pass this handle to the function <a href="http://msdn.microsoft.com/en-us/library/ms683223%28VS.85%29.aspx" rel="nofollow">GetProcessTimes</a> (suggested by RRUZ) to get the times. An example (although dated, the concepts are still the same) is available in the <a href="http://gp.17slon.com/gp/gpsyshook.htm" rel="nofollow">GpSysHook</a> source.</p>
http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800192#18001921Answer by skamradt for How Should I Implement a Huge but Simple Indexed StringList in Delphi?skamradt2009-11-25T21:48:45Z2009-11-25T22:02:12Z<p>Since your data is more than 3GB, you will need to make sure what ever database engine you select either handles tables that large, or split things up into multiple tables, which I would suggest doing no matter what the maximum size of a single table. If you perform the split, perform it as evenly as possible on a logical key break so that its easy to determine which table to use by the first or first two characters of the key. This will greatly reduce the search times by eliminating any records which could never match your query to start with.</p>
<p>If you just want raw performance, and will only be performing read only lookups into the data, then your better served by an ordered index file(s) using a fixed size record for your keys which points to your data file. You can then perform a <a href="http://en.wikipedia.org/wiki/Binary%5Fsearch" rel="nofollow">binary search</a> easily on this data and avoid any database overhead. For even more of a performance gain, you can pre-load/cache the midpoints into memory to reduce repetitive reads.</p>
<p>A simple fixed size record for your specs might look like:</p>
<pre><code>type
rIndexRec = record
KeyStr : String[15]; // short string 15 chars max
DataLoc : integer; // switch to int64 if your using gpHugeFile
end;
</code></pre>
<p>For initial loading, use the Turbo Power sort found in the <a href="http://sourceforge.net/projects/tpsystools/" rel="nofollow">SysTools</a>, which the latest version for Delphi 2009/2010 can be downloaded on the <a href="http://www.songbeamer.com/delphi/" rel="nofollow">songbeamers</a> website. The DataLoc would be the stream position of your datastring record, which writing/reading might look like the following:</p>
<pre><code>function WriteDataString(aDataString:String;aStream:tStream):integer;
var
aLen : integer;
begin
Result := aStream.Position;
aLen := Length(aDataString);
aStream.Write(aLen,sizeOf(aLen));
aStream.Write(aDataString[1],aLen*sizeOf(Char));
end;
function ReadDataString(aPos:Integer;aStream:tStream):String;
var
aLen : integer;
begin
if aStream.Position <> aPos then
aStream.Seek(aPos,soFromBeginning);
result := '';
aStream.Read(aLen,SizeOf(aLen));
SetLength(Result,aLen);
if aStream.Read(Result[1],aLen*sizeOf(Char)) <> aLen*SizeOf(Char) then
raise Exception.Create('Unable to read entire data string');
end;
</code></pre>
<p>When you are creating your index records, the dataloc would be set to datastring record position. It doesn't matter the order in which records are loaded, as long as the index records are sorted. I used just this technique to keep a 6 billion record database up to date with monthly updates, so it scales to the extreme easily.</p>
<p><strong>EDIT</strong>:
Yes, the code above is limited to around 2GB per datafile, but you can extend it by using <a href="http://17slon.com/gp/gp/gphugefile.htm" rel="nofollow">gpHugeFile</a>, or segmenting. I prefer the segmenting into multiple logical files < 2gb each, which will take up slightly less disk space.</p>
http://stackoverflow.com/questions/1796981/delphi-extract-text-from-word-or-pdf-based-on-format-font-name-and-size/1798340#17983400Answer by skamradt for [Delphi] extract text from word or pdf based on format (font name and size)skamradt2009-11-25T16:54:51Z2009-11-25T17:27:48Z<p>The other option is to code it yourself. The <a href="http://www.adobe.com/devnet/acrobat/pdfs/pdf%5Freference%5F1-7.pdf" rel="nofollow">file specification</a> is available online, and if your only trying to rip the text out of the document this should guide you most of the way. </p>
<p>The only thing to be careful of are documents which are built entirely from images. In that scenario (no matter what you use to read the file) you will also need an OCR type of application. To see if this is the case or not, open a sample of the type of file you are wanting to "extract" text from, select the text to copy then try to paste into notepad.</p>
http://stackoverflow.com/questions/1797625/frames-and-browse-history-in-delphi/1798440#17984400Answer by skamradt for Frames and Browse History in Delphiskamradt2009-11-25T17:12:09Z2009-11-25T17:12:09Z<p>Another option would be to use my <a href="http://code.google.com/p/delphiwizardframework/" rel="nofollow">wizard framework</a>, which does this with TForms but can easily also be adjusted to use frames. The concept is that each summary form knows how to create its appropriate details. In your case the framework is more of an example of how to do it, rather than a plug and play solution. </p>
http://stackoverflow.com/questions/1789997/focus-an-intraweb-iwtreeview-on-a-selected-item/1791348#17913480Answer by skamradt for Focus an IntraWeb IWTreeView on a selected itemskamradt2009-11-24T16:47:51Z2009-11-24T16:47:51Z<p>The javascript function <code>window.scrollTo(x,y)</code> allows you to scroll a window, will that work for your control?</p>
http://stackoverflow.com/questions/1776621/is-it-possible-advisable-to-use-a-tstringlist-inside-a-record/1784575#17845750Answer by skamradt for Is it possible/advisable to use a TStringList inside a record?skamradt2009-11-23T17:09:38Z2009-11-23T17:09:38Z<p>Another issue to be aware of, if you use sizeof to determine the memory footprint of the record, it will only include the size of a pointer for the TStringList. If you attempt to stream it out, the pointer which is stored will NOT be available to later instances, so you would have to ignore the pointer on the load and have another method to load the Tstringlist.</p>
<p>For example:</p>
<pre><code>Procedure SaveRecToStream(Rec: TItemDetails ; Stream:tStream);
var
i : integer;
begin
Stream.Write(Rec,SizeOf(Rec)-SizeOf(tSTringList));
Rec.List.saveToStream(Stream);
end;
Procedure LoadRecFromStream(Rec: TItemDetails ; Stream:tStream);
var
i : integer;
begin
FillMemory(@Rec,SizeOf(Rec),0);
i := Stream.Read(rec,SizeOf(Rec)-SizeOf(tStringList));
if i <> SizeOf(Rec)-SizeOf(tStringList) then
Raise Exception.create('Unable to load record');
Rec.List := tStringlist.create;
Rec.List.LoadFromStream(Stream);
end;
</code></pre>
<p>This assumes that each stream contains exactly one record, and that the record variable passed to LoadRecFromStream does not contain a live tStringlist (if it was previously used it must be freed prior to the call or a leak occurs). </p>
http://stackoverflow.com/questions/1773546/how-can-i-get-msbuild-to-do-a-full-build-of-a-delphi-project-equivalent-to-dcc32/1773984#17739840Answer by skamradt for How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?skamradt2009-11-21T00:06:45Z2009-11-21T00:06:45Z<p>Another option is to delete the DCU's of the compiled units after your first build is complete and before you start your next one.</p>
http://stackoverflow.com/questions/1772411/adding-validator-symbol-next-to-control-on-a-delphi-form/1772587#17725871Answer by skamradt for Adding validator symbol next to control on a Delphi form.skamradt2009-11-20T19:00:02Z2009-11-20T19:00:02Z<p>Something I have done in the past in my validate method was to change the control color to $00C4C4FF for any value which fails validation, or clWindow if it passes. (I use a constant clInvalidEdit). On projects where I am also using Raize controls with a flat border, I also adjust the border to clRed. My required fields generally have a color of $00B0FFFF (again a constant clRequiredEdit).</p>
<p>Most often, I'll create a method named ValidateForm which returns a boolean if the form is valid, or false if its not. The validateform checks every field for validity and adjusts colors where needed, and set the active control to the first field which fails.</p>
http://stackoverflow.com/questions/1767126/print-fastreport-directly/1767412#17674124Answer by skamradt for Print FastReport directlyskamradt2009-11-19T23:45:36Z2009-11-19T23:45:36Z<p>Just call PrepareReport followed by Print. You don't have to show the preview.</p>
<pre><code>frxReport1.PrepareReport;
frxReport1.Print;
</code></pre>
http://stackoverflow.com/questions/1757638/how-to-get-the-size-of-an-image-in-bytes-with-delphi/1757909#17579091Answer by skamradt for How to get the size of an image in bytes with Delphi?skamradt2009-11-18T18:01:37Z2009-11-18T18:01:37Z<p>You can use the following function to perform a search for the file and return the size. </p>
<pre><code>function FindFileSize(Filename:string):integer;
var
sr : TSearchRec;
begin
if FindFirst(filename,faAnyFile-faDirectory,sr) = 0 then
Result := sr.Size
else
raise EFileNotFoundException.Create(filename+' not found.');
FindClose(sr);
end;
</code></pre>
http://stackoverflow.com/questions/1752830/how-much-can-sqlite-store-on-the-iphone/1752881#17528810Answer by skamradt for How much can SQLite store on the iPhone?skamradt2009-11-18T00:38:24Z2009-11-18T00:38:24Z<p>You are only limited by the amount of free space on the device. </p>
http://stackoverflow.com/questions/1746163/what-principles-should-be-followed-to-make-a-dll-created-using-delphi-works-well/1750274#17502742Answer by skamradt for What principles should be followed to make a DLL created using Delphi works well in other Delphi version?skamradt2009-11-17T17:00:20Z2009-11-17T17:00:20Z<p>Stick with only fundamental types. If you use interfaces, create them using the type library editor so your constrained by the compatible types by the start. A good rule of thumb is to look at the windows API and try to emulate its calling conventions.</p>
<p>You can use classes in your DLL, you just can't expose them as such. A good idiom that works well for DLL's is the handle concept. Your DLL creates an object and returns a handle to that object. When you need to work with that object again, you pass a function in the DLL a handle. Just remember that your DLL needs to be completely responsible for the memory and lifetime of the object. Its a trivial process to create DLL functions to expose the pieces of the class that you will need access too. </p>
<p>From the Delphi side, you can then write a proxy wrapper which hides the handle from the user. For events you can use a callback method. Basically you pass non object function pointers to the dll, which then invokes the function on the event. A quick overview of this process is available on <a href="http://www.delphi3000.com/articles/article%5F2362.asp" rel="nofollow">Delphi 3000</a>. </p>
http://stackoverflow.com/questions/1742900/tidhttp-in-indy-10/1743518#17435182Answer by skamradt for TIdHTTP in Indy 10skamradt2009-11-16T17:11:19Z2009-11-16T17:11:19Z<p>Another option, would be to use <a href="http://synapse.ararat.cz/doku.php/start" rel="nofollow">synapse</a>. This is all that is needed to retrieve a webpage using this library:</p>
<pre><code>uses
...,HTTPSEND;
var
Result : TStrings;
if HTTPGetText('http://www.google.com',Result) then
// do something with result
</code></pre>
<p>Synapse is a lightweight TCPIP library. The library is being actively maintained and the current version runs fine in Delphi 2009/2010. It is NOT a component based framework, so it is very easy to use with other threading techniques (<a href="http://code.google.com/p/omnithreadlibrary/" rel="nofollow">OmniThreadLibrary</a> or <a href="http://andy.jgknet.de/blog/?page%5Fid=100" rel="nofollow">AsyncCalls</a> for example).</p>
http://stackoverflow.com/questions/1743303/how-can-i-sort-an-ado-table-on-a-fieldname-containing-a-space/1743320#17433205Answer by skamradt for How Can I Sort an ADO Table on a Fieldname Containing a Space? skamradt2009-11-16T16:38:15Z2009-11-16T16:38:15Z<p>Have you tried surrounding the fieldname by square brackets? for example:</p>
<pre><code>ArticlesTable.Sort := '[LAST NAME]';
</code></pre>
http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730606#17306065Answer by skamradt for What are the ways of interchanging string data between clients and a server in Delphi?skamradt2009-11-13T17:05:08Z2009-11-13T17:05:08Z<p>I use the <a href="http://www.synapse.ararat.cz/doku.php" rel="nofollow">Synapse</a> library for such a simple server. Its lightning fast, very light, and threads easily. The demo Echo in the main synapse install is a fantastic start for what your trying to do. If you are going to be performing database access inside each request/response thread then I strongly also suggest looking at the <a href="http://edn.embarcadero.com/article/30027" rel="nofollow">connection pool example</a> by Cary Jensen to keep your database connections in check.</p>
http://stackoverflow.com/questions/1852134/how-to-generate-an-unique-computer-id-on-delphi/1852688#1852688Comment by skamradt on How to generate an unique computer id on Delphi?skamradt2009-12-07T17:40:37Z2009-12-07T17:40:37Zproblem here is that it is not machine specific and calling Createguid again will create a different id. I believe the user wanted the ID to be the same each time it is requested.http://stackoverflow.com/questions/1850842/comparing-a-guid-so-i-can-sort-by-guid/1854182#1854182Comment by skamradt on comparing a GUID so I can sort by GUIDskamradt2009-12-07T17:31:09Z2009-12-07T17:31:09ZOuch...string comparisons are VERY expensive. Better to sort against the TGUID elements individually, or cast to an array of [1..8] integer and compare the arrahttp://stackoverflow.com/questions/1850842/comparing-a-guid-so-i-can-sort-by-guid/1850878#1850878Comment by skamradt on comparing a GUID so I can sort by GUIDskamradt2009-12-07T17:24:57Z2009-12-07T17:24:57ZThis is the best option if < Delphi 2009 as a string comparison too expensive. Just have your routine bail early as soon as a missmatch is found since for a majority of these it won't be necessary to sort much past the first or second element.http://stackoverflow.com/questions/1849303/pre-sorting-analysis-algorithm/1849573#1849573Comment by skamradt on Pre-sorting analysis algorithm?skamradt2009-12-04T21:40:43Z2009-12-04T21:40:43Zbut the sample fails if 1 record in every N is sorted, but +1 record in every N isn't. you may still have to read every record to see if ONE of them not sampled is out of order. http://stackoverflow.com/questions/1828185/how-to-put-a-relative-path-for-a-dll-statically-loaded/1828307#1828307Comment by skamradt on How to put a relative path for a DLL statically loaded?skamradt2009-12-01T20:52:30Z2009-12-01T20:52:30ZI believe it processes only the current directory and the path...which is why %SystemRoot%\system32 is added to the path by default.http://stackoverflow.com/questions/1812479/setting-ttabcontrol-color-after-xpmanifest-in-delphi/1812542#1812542Comment by skamradt on Setting TTabControl color after XPManifest in Delphiskamradt2009-11-30T17:53:40Z2009-11-30T17:53:40Z@Tofig: Correct, OwnerDraw instructs the control that it needs to call OnDrawTab to draw itself.http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphiComment by skamradt on How Should I Implement a Huge but Simple Indexed StringList in Delphi?skamradt2009-11-25T21:11:07Z2009-11-25T21:11:07ZDo you only need read only access to the data? Or will you randomly be adding records also?http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component/1773107#1773107Comment by skamradt on Where should I begin when building a component?skamradt2009-11-21T00:09:26Z2009-11-21T00:09:26Z+1 for a much easier solution, and one I forgot about.http://stackoverflow.com/questions/1772911/where-should-i-begin-when-building-a-component/1773053#1773053Comment by skamradt on Where should I begin when building a component?skamradt2009-11-20T21:15:52Z2009-11-20T21:15:52ZAgreed, but if your just needing re-use in a project, its a quick way to get started.http://stackoverflow.com/questions/1744763/passing-objects-as-parameters-cannot-nil-an-objectComment by skamradt on Passing objects as parameters - Cannot NIL an objectskamradt2009-11-16T20:59:31Z2009-11-16T20:59:31ZWhat is Cub compared to fCub?http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730606#1730606Comment by skamradt on What are the ways of interchanging string data between clients and a server in Delphi?skamradt2009-11-15T08:54:42Z2009-11-15T08:54:42ZI have used it with both Delphi 2009 and 2010 without any problems. Support is available via email and is very responsive.http://stackoverflow.com/questions/1680281/deploy-delphi-isapi-dlls-compiled-with-runtime-packages/1682119#1682119Comment by skamradt on Deploy Delphi ISAPI dlls compiled with runtime packagesskamradt2009-11-06T16:42:50Z2009-11-06T16:42:50ZIt is solved by not using runtime packages.http://stackoverflow.com/questions/1680281/deploy-delphi-isapi-dlls-compiled-with-runtime-packagesComment by skamradt on Deploy Delphi ISAPI dlls compiled with runtime packagesskamradt2009-11-06T16:42:03Z2009-11-06T16:42:03ZWhile a pluggable application strategy makes sense for a windows program, it doesn't for a ISAPI one. Each request should be server stateless in order to scale, and each request atomic. Adding another DLL to the mix shouldn't be a problem. http://stackoverflow.com/questions/1680281/deploy-delphi-isapi-dlls-compiled-with-runtime-packagesComment by skamradt on Deploy Delphi ISAPI dlls compiled with runtime packagesskamradt2009-11-05T17:12:05Z2009-11-05T17:12:05ZIs there a specific reason why you are building with runtime packages?http://stackoverflow.com/questions/1663166/persistent-objects-in-windows-xp-delphi-7/1663329#1663329Comment by skamradt on Persistent Objects in Windows XP/Delphi 7skamradt2009-11-04T16:52:44Z2009-11-04T16:52:44ZYou can use a tObjectList to hold onto your multiple objects and iterate thru the list for writing.