User gabr - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T17:36:45Zhttp://stackoverflow.com/feeds/user/4997http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779600/how-do-i-wait-for-a-ttimer-to-finish/1781747#17817471Answer by gabr for How do I wait for a TTimer to finish?gabr2009-11-23T08:17:13Z2009-11-23T08:17:13Z<p>A fellow Slovenian Delphi programmer wrote just the code you're looking for - <a href="http://www.cromis.net/blog/2008/12/active-sleep-procedure-aftermath/" rel="nofollow">Active Sleep</a>.</p>
http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776138#17761382Answer by gabr for Can I create an object of the same type as itself?gabr2009-11-21T17:36:25Z2009-11-21T18:45:26Z<p>As others had said, there's nothing wrong with that but there may be better ways.</p>
<p>Variant 1: Change this into class method and give it a meaningful name.</p>
<pre><code>class function TMyObject.CreateSpecialized: TMyObject;
begin
Result := TMyObject.Create;
//initialize Result
end;
anObj := TMyObject.CreateSpecialized;
</code></pre>
<p>Variant 2: Use a constructor. You can have multiple constructors in a class.</p>
<pre><code>constructor TMyObject.CreateSpecialized;
begin
Create; // make sure everything is initialized correctly
// now do custom initialization
end;
anObj := TMyObject.CreateSpecialized;
</code></pre>
<p>Usage is same in both examples but in second case your intentions are clearer to a random reader.</p>
<p>If you want to take one object and create another one based on first object's fields, use a constructor with parameter.</p>
<pre><code>constructor TMyObject.CreateSpecialized(obj: TMyObject);
begin
Create;
intField := obj.IntField * 2;
end;
anObj := TMyObject.CreateSpecialized(otherObj);
</code></pre>
http://stackoverflow.com/questions/1766626/copy-file-in-a-thread/1769183#17691835Answer by gabr for copy file in a threadgabr2009-11-20T08:58:19Z2009-11-20T16:00:28Z<p>Just for comparison - that's how you'd do it with <a href="http://otl.17slon.com/" rel="nofollow">OmniThreadLibrary</a>.</p>
<pre><code>uses
OtlCommon, OtlTask, OtlTaskControl;
type
TForm3 = class(TForm)
...
FCopyTask: IOmniTaskControl;
end;
procedure BackgroundCopy(const task: IOmniTask);
begin
CopyFile(PChar(string(task.ParamByName['Source'])), PChar(string(task.ParamByName['Dest'])), true);
//Exceptions in CopyFile will be mapped into task's exit status
end;
procedure TForm3.BackgroundCopyComplete(const task: IOmniTaskControl);
begin
if task.ExitCode = EXIT_EXCEPTION then
ShowMessage('Exception in copy task: ' + task.ExitMessage);
FCopyTask := nil;
end;
procedure TForm3.Button3Click(Sender: TObject);
begin
FCopyTask := CreateOmniTask(BackgroundCopy)
.SetParameter('Source', ExtractFilePath(ParamStr(0)) + sourcePath + fileSource)
.SetParameter('Dest', ExtractFilePath(ParamStr(0)) + destPath + fileDest)
.SilentExceptions
.OnTerminate(BackgroundCopyComplete)
.Run;
end;
procedure TForm3.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
CanClose := true;
if assigned(FCopyTask) then
begin
if MessageDlg('The file is being copied. Do you want to quit?', mtWarning,
[mbYes, mbNo],0) = mrNo then
CanClose := false
else
FCopyTask.Terminate;
end;
end;
</code></pre>
http://stackoverflow.com/questions/1740561/how-to-search-for-a-file-in-all-drives/1740605#17406053Answer by gabr for how to search for a file in all drivesgabr2009-11-16T07:23:04Z2009-11-16T07:23:04Z<p>First you have to get a list of valid drives. This was <a href="http://stackoverflow.com/questions/1644242/get-drive-information-free-space-etc-for-drives-on-windows-and-populate-a-mem/1644261#1644261">discussed previously</a> on the StackOverflow.</p>
<p>The you have to call FindFirst/FindNext/FindClose on the root folder of each drive. Get a list of files and directories. Check the list of files. Repeat this for each directory. Until you run out of directories. Search for "[delphi] findfirst" on StackOverflow to find more information.</p>
http://stackoverflow.com/questions/1735566/delphi-thread-that-waits-for-data-processes-it-then-resumes-waiting/1735603#17356037Answer by gabr for Delphi thread that waits for data, processes it, then resumes waitinggabr2009-11-14T21:09:54Z2009-11-14T21:09:54Z<p>OmniThreadLibrary can definitely help you here. Test 5 from the OTL distribution should help you started. </p>
<p>In this demo, "Start" button creates the thread and sets some parameters and timer (which you can remove in your code if not needed). "Change message" sends a message to the thread and this message is processed in thread's OMChangeMessage method. Thread then sends some information back to the client (OMSendMessage in this demo, but you can do this in the same message you'll be doing your work in) and main thread receives this message via the OmniEventMonitor component. "Stop" button stops the worker thread.</p>
<p>If more messages arrive while your thread is busy, they will be queued and processed as soon as your worker method has completed its work. When there's nothing to do, thread will wait for the next message using zero CPU cycles in the process.</p>
http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730768#17307685Answer by gabr for What are the ways of interchanging string data between clients and a server in Delphi?gabr2009-11-13T17:31:34Z2009-11-13T17:31:34Z<p>TCP, definitely. But I'd like to give a vote for <a href="http://www.overbyte.be/eng/products/ics.html" rel="nofollow">ICS</a>. Never liked Indy ...</p>
http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1679694#16796945Answer by gabr for Quick padding of a string in Delphigabr2009-11-05T10:39:33Z2009-11-05T10:39:33Z<p>Another thought - if this is Delphi 2009 or 2010, disable "String format checking" in Project, Options, Delphi Compiler, Compiling, Code Generation.</p>
http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1679464#16794643Answer by gabr for Quick padding of a string in Delphigabr2009-11-05T09:50:29Z2009-11-05T09:58:24Z<p>StringOfChar is very fast and I doubt you can improve this code a lot. Still, try this one, maybe it's faster:</p>
<pre><code>function cwLeftPad(aString:string; aCharCount:integer; aChar:char): string;
var
i,vLength:integer;
origSize: integer;
begin
Result := aString;
origSize := Length(Result);
if aCharCount <= origSize then
Exit;
SetLength(Result, aCharCount);
Move(Result[1], Result[aCharCount-origSize+1], origSize * SizeOf(char));
for i := 1 to aCharCount - origSize do
Result[i] := aChar;
end;
</code></pre>
<p>EDIT: I did some testing and my function is slower than your improved cwLeftPad. But I found something else - there's no way your CPU needs 5 seconds to execute 35k cwLeftPad functions except if you're running on PC XT or formatting gigabyte strings.</p>
<p>I tested with this simple code</p>
<pre><code>for i := 1 to 35000 do begin
a := 'abcd1234';
b := cwLeftPad(a, 73, '.');
end;
</code></pre>
<p>and I got 255 milliseconds for your original cwLeftPad, 8 milliseconds for your improved cwLeftPad and 16 milliseconds for my version.</p>
http://stackoverflow.com/questions/1642220/getting-size-of-a-file-in-d2010/1644626#16446261Answer by gabr for Getting size of a file in D2010?gabr2009-10-29T15:40:44Z2009-10-29T15:40:44Z<p>You can also use DSiFileSize from <a href="http://gp.17slon.com/gp/dsiwin32.htm" rel="nofollow">DSiWin32</a>. Works in "all" Delphis. Internally it calls CreateFile and GetFileSize.</p>
http://stackoverflow.com/questions/1600575/iterate-through-items-in-an-enumeration-in-delphi/1600600#160060016Answer by gabr for Iterate through items in an enumeration in Delphigabr2009-10-21T12:49:06Z2009-10-21T12:49:06Z<p>Simple:</p>
<pre><code>type
TWeekdays = (wdMonday, wdTuesday, wdWednesday, wdThursday, wdFriday);
procedure Test;
var
el: TWeekdays;
begin
for el := Low(TWeekdays) to High(TWeekdays) do
; //
end;
</code></pre>
http://stackoverflow.com/questions/57124/how-to-detect-true-windows-version/57130#5713011Answer by gabr for How to detect true Windows versiongabr2008-09-11T17:25:30Z2009-10-09T18:16:42Z<p>The best approach I know is to check if specific API is exported from some DLL. Each new Windows version adds new functions and by checking the existance of those functions one can tell which OS the application is running on. For example, Vista exports <a href="http://msdn.microsoft.com/en-us/library/ms724451%28VS.85%29.aspx" rel="nofollow">GetLocaleInfoEx</a> from kernel32.dll while previous Windowses didn't.</p>
<p>To cut the long story short, here is one such list containing only exports from kernel32.dll.</p>
<pre>
> *function: implemented in*
> GetLocaleInfoEx: Vista
> GetLargePageMinimum: Vista, Server 2003
GetDLLDirectory: Vista, Server 2003, XP SP1
GetNativeSystemInfo: Vista, Server 2003, XP SP1, XP
ReplaceFile: Vista, Server 2003, XP SP1, XP, 2000
OpenThread: Vista, Server 2003, XP SP1, XP, 2000, ME
GetThreadPriorityBoost: Vista, Server 2003, XP SP1, XP, 2000, NT 4
IsDebuggerPresent: Vista, Server 2003, XP SP1, XP, 2000, ME, NT 4, 98
GetDiskFreeSpaceEx: Vista, Server 2003, XP SP1, XP, 2000, ME, NT 4, 98, 95 OSR2
ConnectNamedPipe: Vista, Server 2003, XP SP1, XP, 2000, NT 4, NT 3
Beep: Vista, Server 2003, XP SP1, XP, 2000, ME, 98, 95 OSR2, 95
</pre>
<p>Writing the function to determine the real OS version is simple; just proceed from newest OS to oldest and use <a href="http://msdn.microsoft.com/en-us/library/ms683212.aspx" rel="nofollow">GetProcAddress</a> to check exported APIs. Implementing this in any language should be trivial.</p>
<p>The following code in Delphi was extracted from the free <a href="http://gp.17slon.com/gp/dsiwin32.htm" rel="nofollow">DSiWin32</a> library):</p>
<pre><code>TDSiWindowsVersion = (wvUnknown, wvWin31, wvWin95, wvWin95OSR2, wvWin98,
wvWin98SE, wvWinME, wvWin9x, wvWinNT3, wvWinNT4, wvWin2000, wvWinXP,
wvWinNT, wvWinServer2003, wvWinVista);
function DSiGetWindowsVersion: TDSiWindowsVersion;
var
versionInfo: TOSVersionInfo;
begin
versionInfo.dwOSVersionInfoSize := SizeOf(versionInfo);
GetVersionEx(versionInfo);
Result := wvUnknown;
case versionInfo.dwPlatformID of
VER_PLATFORM_WIN32s: Result := wvWin31;
VER_PLATFORM_WIN32_WINDOWS:
case versionInfo.dwMinorVersion of
0:
if Trim(versionInfo.szCSDVersion[1]) = 'B' then
Result := wvWin95OSR2
else
Result := wvWin95;
10:
if Trim(versionInfo.szCSDVersion[1]) = 'A' then
Result := wvWin98SE
else
Result := wvWin98;
90:
if (versionInfo.dwBuildNumber = 73010104) then
Result := wvWinME;
else
Result := wvWin9x;
end; //case versionInfo.dwMinorVersion
VER_PLATFORM_WIN32_NT:
case versionInfo.dwMajorVersion of
3: Result := wvWinNT3;
4: Result := wvWinNT4;
5:
case versionInfo.dwMinorVersion of
0: Result := wvWin2000;
1: Result := wvWinXP;
2: Result := wvWinServer2003;
else Result := wvWinNT
end; //case versionInfo.dwMinorVersion
6: Result := wvWinVista;
end; //case versionInfo.dwMajorVersion
end; //versionInfo.dwPlatformID
end; { DSiGetWindowsVersion }
function DSiGetTrueWindowsVersion: TDSiWindowsVersion;
function ExportsAPI(module: HMODULE; const apiName: string): boolean;
begin
Result := GetProcAddress(module, PChar(apiName)) <> nil;
end; { ExportsAPI }
var
hKernel32: HMODULE;
begin { DSiGetTrueWindowsVersion }
hKernel32 := GetModuleHandle('kernel32');
Win32Check(hKernel32 <> 0);
if ExportsAPI(hKernel32, 'GetLocaleInfoEx') then
Result := wvWinVista
else if ExportsAPI(hKernel32, 'GetLargePageMinimum') then
Result := wvWinServer2003
else if ExportsAPI(hKernel32, 'GetNativeSystemInfo') then
Result := wvWinXP
else if ExportsAPI(hKernel32, 'ReplaceFile') then
Result := wvWin2000
else if ExportsAPI(hKernel32, 'OpenThread') then
Result := wvWinME
else if ExportsAPI(hKernel32, 'GetThreadPriorityBoost') then
Result := wvWinNT4
else if ExportsAPI(hKernel32, 'IsDebuggerPresent') then //is also in NT4!
Result := wvWin98
else if ExportsAPI(hKernel32, 'GetDiskFreeSpaceEx') then //is also in NT4!
Result := wvWin95OSR2
else if ExportsAPI(hKernel32, 'ConnectNamedPipe') then
Result := wvWinNT3
else if ExportsAPI(hKernel32, 'Beep') then
Result := wvWin95
else // we have no idea
Result := DSiGetWindowsVersion;
end; { DSiGetTrueWindowsVersion }
</code></pre>
<p>--- updated 2009-10-09</p>
<p>It turns out that it gets very hard to do an "undocumented" OS detection on Vista SP1 and higher. A look at the <a href="http://msdn.microsoft.com/en-us/library/aa383687%28VS.85%29.aspx" rel="nofollow">API changes</a> shows that all Windows 2008 functions are also implemented in Vista SP1 and that all Windows 7 functions are also implemented in Windows 2008 R2. Too bad :(</p>
<p>--- end of update</p>
<p>FWIW, this is a problem I encountered in practice. We (the company I work for) have a program that was not really Vista-ready when Vista was released (and some weeks after that ...). It was not working under the compatibility layer either. (Some DirectX problems. Don't ask.)</p>
<p>We didn't want too-smart-for-their-own-good users to run this app on Vista at all - compatibility mode or not - so I had to find a solution (a guy smarter than me pointed me into right direction; the stuff above is not my brainchild). Now I'm posting it for your pleasure and to help all poor souls that will have to solve this problem in the future. Google, please index this article!</p>
<p>If you have a better solution (or an upgrade and/or fix for mine), please post an answer here ...</p>
http://stackoverflow.com/questions/57124/how-to-detect-true-windows-version9How to detect true Windows versiongabr2008-09-11T17:21:31Z2009-10-09T18:16:42Z
<p>I know I can call the GetVersionEx Win32 API function to retrieve Windows version. In most cases returned value reflects the version of my Windows, but sometimes that is not so.</p>
<p>If a user runs my application under the compatibility layer, then GetVersionEx won't be reporting the real version but the version enforced by the compatibility layer. For example, if I'm running Vista and execute my program in "Windows NT 4" compatibility mode, GetVersionEx won't return version 6.0 but 4.0.</p>
<p>Is there a way to bypass this behaviour and get true Windows version?</p>
http://stackoverflow.com/questions/1480216/delphi-2009-ide-structure-view-collapse-function/1480784#14807845Answer by gabr for Delphi 2009 IDE Structure View Collapse function...gabr2009-09-26T08:35:16Z2009-09-26T08:35:16Z<p>Select root node (Classes) and press / (divide sign) on the numerical keypad. That will collaps everything. Then press + (plus) key on the numerical keypad and first level will expand.</p>
<p>You can also play with - (minus, collapses everything but + will expand everyhing, not only the first sublevel) and * (multiply, expands everything).</p>
<p>Left arrow key works the same as - and right arrow key works the same as +.</p>
<p>Those shortcuts work the same in Windows native tree control (for example the one in the Registry Editor) and are pretty much universally useful for Windows applications that are displaying tree structure.</p>
http://stackoverflow.com/questions/1448785/delphi-issues-on-windows-7-x64/1449587#14495873Answer by gabr for Delphi issues on windows 7 x64 ?gabr2009-09-19T21:30:04Z2009-09-19T21:30:04Z<p>As Mason Wheeler stated, there's a problem with the 2007/2009 debugger and 64-bit platforms but it can easily be <a href="http://anotherlab.rajapet.net/2009/08/work-around-for-delphi-20072009-with.html" rel="nofollow">fixed</a>.</p>
<p>I'm using D2007 (with this fix) on Windows 7 64-bit on a daily basis and it works just great.</p>
http://stackoverflow.com/questions/1443268/how-can-i-detect-a-debugger-or-other-tool-that-might-be-analysing-my-software/1443500#1443500-1Answer by gabr for How can I detect a debugger or other tool that might be analysing my software?gabr2009-09-18T09:38:52Z2009-09-18T09:38:52Z<p>You can also do</p>
<pre><code>if DebugHook <> 0 then ...
</code></pre>
http://stackoverflow.com/questions/1438870/in-delphi-is-there-a-function-to-convert-xml-date-and-time-to-tdatetime/1439091#14390912Answer by gabr for In Delphi is there a function to convert XML date and time to TDateTimegabr2009-09-17T14:03:20Z2009-09-17T14:03:20Z<p><a href="http://www.omnixml.com" rel="nofollow">OmniXML</a>'s unit OmniXMLUtils contains bunch of funcions to do XML to date and date to XML conversions.</p>
<pre><code>function XMLStrToDateTime(nodeValue: XmlString; var value: TDateTime): boolean; overload;
function XMLStrToDateTime(nodeValue: XmlString): TDateTime; overload;
function XMLStrToDateTimeDef(nodeValue: XmlString; defaultValue: TDateTime): TDateTime;
function XMLStrToDate(nodeValue: XmlString; var value: TDateTime): boolean; overload;
function XMLStrToDate(nodeValue: XmlString): TDateTime; overload;
function XMLStrToDateDef(nodeValue: XmlString; defaultValue: TDateTime): TDateTime;
function XMLStrToTime(nodeValue: XmlString; var value: TDateTime): boolean; overload;
function XMLStrToTime(nodeValue: XmlString): TDateTime; overload;
function XMLStrToTimeDef(nodeValue: XmlString; defaultValue: TDateTime): TDateTime;
function XMLDateTimeToStr(value: TDateTime): XmlString;
function XMLDateTimeToStrEx(value: TDateTime): XmlString;
function XMLDateToStr(value: TDateTime): XmlString;
function XMLTimeToStr(value: TDateTime): XmlString;
</code></pre>
http://stackoverflow.com/questions/1394114/error-in-free-tstringlist-object/1398240#13982400Answer by gabr for Error in Free TStringList Objectgabr2009-09-09T08:14:17Z2009-09-09T08:14:17Z<p>Other people already pointed to the problem in your code so I'll just add one tidbid of information. If you just want to store integers in a list, use TGpIntegerList or TGpInt64List from my <a href="http://gp.17slon.com/gp/gplists.htm" rel="nofollow">GpLists</a> unit. Free, no strings attached.</p>
http://stackoverflow.com/questions/1381544/convert-byte-array-to-integer-in-delphi/1382653#13826531Answer by gabr for Convert Byte Array to Integer in Delphigabr2009-09-05T06:46:48Z2009-09-05T13:43:37Z<p>If the data is being transmitted in "network" order (highest byte first) and not in "Intel" order (lowest byte first), you can do some byte shufling yourself.</p>
<pre><code>uses
SysUtils;
var
b: B02;
w: word; //two bytes represent a word, not an integer
socket.ReadBuffer(b, 2);
WordRec(w).Hi := b[1];
WordRec(w).Lo := b[2];
</code></pre>
<p>Mghie suggested following approach in comments (and I agree with him):</p>
<pre><code>uses Winsock;
var
w: word;
socket.ReadBuffer(w, 2);
w := ntohs(w);
</code></pre>
http://stackoverflow.com/questions/1372073/single-user-source-control/1372532#13725322Answer by gabr for Single-user source control?gabr2009-09-03T10:02:29Z2009-09-03T13:14:27Z<p>I would suggest using SVN server on a separate machine (either VisualSVN as suggested before or <a href="http://www.open.collab.net/downloads/subversion/" rel="nofollow">CollabNET Subversion Server</a>) and TortoiseSVN with JVCL integration expert (also as suggested before).</p>
<p>Besides getting all the good stuff from the version control, you'll also automatically have backup on a different computer, which is always a good thing.</p>
http://stackoverflow.com/questions/985531/structure-validation-for-binary-files4Structure validation for binary filesgabr2009-06-12T07:59:23Z2009-08-21T13:31:11Z
<p>I'm looking into ways of formally specifying format for various binary streams and using a tool to check streams for compliance with specification. Something like XSD+any of validation tools for XML. Or like extremely complicate grep expression working on a binary level (preferably not - that would really be hard to read).</p>
<p>Does anybody know of a specification/tool that would be useful?</p>
<p>[Rationale: We are receiving many 3rd party generated binary files on a daily basis and many times they are using bad tools that produce invalid files. We want to give them a tool which they could use as a validator and we don't want to write a specific tool for each format.]</p>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/109024#1090247Answer by gabr for What is your single favorite development tool?gabr2008-09-20T19:04:42Z2009-08-21T13:12:40Z<p><a href="http://en.wikipedia.org/wiki/CodeGear%5FDelphi" rel="nofollow">Delphi</a></p>
http://stackoverflow.com/questions/1159008/with-delphi-are-you-more-likely-to-re-use-temporary-variables-than-with-other-lan/1159056#11590562Answer by gabr for With Delphi are you more likely to re-use temporary variables than with other languages?gabr2009-07-21T13:05:46Z2009-07-21T13:05:46Z<p>Declaring variables is very simple - some times they would get automatically created ('for' loop template), other times you can just use 'Declare Variable' refactoring (or 'Add Local Var' if you are using MMX - as you should).</p>
http://stackoverflow.com/questions/1139087/possible-to-block-form-fillers/1139193#11391930Answer by gabr for Possible to block form fillers?gabr2009-07-16T17:46:28Z2009-07-16T17:46:28Z<p>I don't think there's a way to differentiate between keyboard events generated inside the device driver and keyboard events generated from another program by using the keybd_event function. </p>
<p>If the form filler is just using copy&paste then it's simple - just block WM_PASTE message.</p>
http://stackoverflow.com/questions/1136036/need-xml-component-supporting-d2009/1136102#11361025Answer by gabr for Need xml component supporting D2009gabr2009-07-16T08:08:18Z2009-07-16T08:08:18Z<p>As far as I know <a href="http://www.omnixml.com" rel="nofollow">OmniXML</a> fully supports D2009.</p>
http://stackoverflow.com/questions/1131646/subversion-exclusive-checkout-and-subversion-plugin-for-delphi/1131723#11317238Answer by gabr for Subversion Exclusive Checkout and Subversion Plugin for Delphigabr2009-07-15T14:24:08Z2009-07-15T14:40:45Z<p>SVN has a concept of "<a href="http://svnbook.red-bean.com/en/1.2/svn.advanced.locking.html" rel="nofollow">locking</a>" which roughly corresponds to the exclusive checkout. For example, in <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> this is exposed via Get lock and Release lock menu entries.</p>
<p><a href="http://sourceforge.net/projects/jcl/" rel="nofollow">JCL</a> contains a SVN version control expert which works quite fine. Besides other things, tt gives you access to the locking functionality from the IDE.</p>
http://stackoverflow.com/questions/1119920/d2009-tstringlist-ansistring/1120250#11202508Answer by gabr for D2009 TStringlist ansistringgabr2009-07-13T15:41:08Z2009-07-13T15:41:08Z<p><a href="http://sourceforge.net/projects/jcl/" rel="nofollow">JCL</a> implements TAnsiStrings and TAnsiStringList in the JclAnsiStrings unit.</p>
http://stackoverflow.com/questions/1116745/is-this-algorithm-for-lock-free-fifo-queue-management-any-good/1119532#11195321Answer by gabr for Is this Algorithm for lock-free fifo queue management any good?gabr2009-07-13T13:45:34Z2009-07-13T13:45:34Z<p>At a quick glance, it doesn't solve the <a href="http://en.wikipedia.org/wiki/ABA%5Fproblem" rel="nofollow">ABA</a> problem.</p>
<p>Similar implementation that solves the ABA problem can be found <a href="http://17slon.com/blogs/gabr/2008/07/working-lock-free-stack-implementation.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1116136/how-to-declare-a-pointerbyte/1116182#11161821Answer by gabr for How to declare a pointer(byte^)?gabr2009-07-12T15:05:09Z2009-07-12T17:18:09Z<p>Jqno got it right. Plus you can always use PByte instead of ^byte.</p>
http://stackoverflow.com/questions/1114883/how-do-i-put-some-formatted-text-into-the-clipboard/1115495#11154953Answer by gabr for How do I put some formatted text into the Clipboard?gabr2009-07-12T07:38:52Z2009-07-12T07:38:52Z<p>In <a href="http://gp.17slon.com/gp/dsiwin32.htm" rel="nofollow">DSiWin32</a> we have:</p>
<pre><code>var
GCF_HTML: UINT;
{:Checks if HTML format is stored on the clipboard.
@since 2008-04-29
@author gabr
}
function DSiIsHtmlFormatOnClipboard: boolean;
begin
Result := IsClipboardFormatAvailable(GCF_HTML);
end; { DSiIsHtmlFormatOnClipboard }
{:Retrieves HTML format from the clipboard. If there is no HTML format on the clipboard,
function returns empty string.
@since 2008-04-29
@author MP002, gabr
}
function DSiGetHtmlFormatFromClipboard: string;
var
hClipData : THandle;
idxEndFragment : integer;
idxStartFragment: integer;
pClipData : PChar;
begin
Result := '';
if DSiIsHtmlFormatOnClipboard then begin
Win32Check(OpenClipboard(0));
try
hClipData := GetClipboardData(GCF_HTML);
if hClipData <> 0 then begin
pClipData := GlobalLock(hClipData);
Win32Check(assigned(pClipData));
try
idxStartFragment := Pos('<!--StartFragment-->', pClipData); // len = 20
idxEndFragment := Pos('<!--EndFragment-->', pClipData);
if (idxStartFragment >= 0) and (idxEndFragment >= idxStartFragment) then
Result := Copy(pClipData, idxStartFragment + 20, idxEndFragment - idxStartFragment - 20);
finally GlobalUnlock(hClipData); end;
end;
finally Win32Check(CloseClipboard); end;
end;
end; { DSiGetHtmlFormatFromClipboard }
{:Copies HTML (and, optionally, text) format to the clipboard.
@since 2008-04-29
@author MP002, gabr
}
procedure DSiCopyHtmlFormatToClipboard(const sHtml, sText: string);
function MakeFragment(const sHtml: string): string;
const
CVersion = 'Version:1.0'#13#10;
CStartHTML = 'StartHTML:';
CEndHTML = 'EndHTML:';
CStartFragment = 'StartFragment:';
CEndFragment = 'EndFragment:';
CHTMLIntro = '<sHtml><head><title>HTML clipboard</title></head><body><!--StartFragment-->';
CHTMLExtro = '<!--EndFragment--></body></sHtml>';
CNumberLengthAndCR = 10;
CDescriptionLength = // Let the compiler determine the description length.
Length(CVersion) + Length(CStartHTML) + Length(CEndHTML) +
Length(CStartFragment) + Length(CEndFragment) + 4*CNumberLengthAndCR;
var
description : string;
idxEndFragment : integer;
idxEndHtml : integer;
idxStartFragment: integer;
idxStartHtml : integer;
begin
// The sHtml clipboard format is defined by using byte positions in the entire block
// where sHtml text and fragments start and end. These positions are written in a
// description. Unfortunately the positions depend on the length of the description
// but the description may change with varying positions. To solve this dilemma the
// offsets are converted into fixed length strings which makes it possible to know
// the description length in advance.
idxStartHtml := CDescriptionLength; // position 0 after the description
idxStartFragment := idxStartHtml + Length(CHTMLIntro);
idxEndFragment := idxStartFragment + Length(sHtml);
idxEndHtml := idxEndFragment + Length(CHTMLExtro);
description := CVersion +
SysUtils.Format('%s%.8d', [CStartHTML, idxStartHtml]) + #13#10 +
SysUtils.Format('%s%.8d', [CEndHTML, idxEndHtml]) + #13#10 +
SysUtils.Format('%s%.8d', [CStartFragment, idxStartFragment]) + #13#10 +
SysUtils.Format('%s%.8d', [CEndFragment, idxEndFragment]) + #13#10;
Result := description + CHTMLIntro + sHtml + CHTMLExtro;
end; { MakeFragment }
var
clipFormats: array[0..1] of UINT;
clipStrings: array[0..1] of string;
hClipData : HGLOBAL;
iFormats : integer;
pClipData : PChar;
begin { DSiCopyHtmlFormatToClipboard }
Win32Check(OpenClipBoard(0));
try
//most descriptive first as per api docs
clipStrings[0] := MakeFragment(sHtml);
if sText = '' then
clipStrings[1] := sHtml
else
clipStrings[1] := sText;
clipFormats[0] := GCF_HTML;
clipFormats[1] := CF_TEXT;
Win32Check(EmptyClipBoard);
for iFormats := 0 to High(clipStrings) do begin
if clipStrings[iFormats] = '' then
continue;
hClipData := GlobalAlloc(GMEM_DDESHARE + GMEM_MOVEABLE, Length(clipStrings[iFormats]) + 1);
Win32Check(hClipData <> 0);
try
pClipData := GlobalLock(hClipData);
Win32Check(assigned(pClipData));
try
Move(PChar(clipStrings[iFormats])^, pClipData^, Length(clipStrings[iFormats]) + 1);
finally GlobalUnlock(hClipData); end;
Win32Check(SetClipboardData(clipFormats[iFormats], hClipData) <> 0);
hClipData := 0;
finally
if hClipData <> 0 then
GlobalFree(hClipData);
end;
end;
finally Win32Check(CloseClipboard); end;
end; { DSiCopyHtmlFormatToClipboard }
initialization
GCF_HTML := RegisterClipboardFormat('HTML Format');
</code></pre>
http://stackoverflow.com/questions/1115421/how-to-increase-the-startup-speed-of-the-delphi-app/1115488#111548810Answer by gabr for How to increase the startup speed of the delphi app?gabr2009-07-12T07:29:46Z2009-07-12T07:29:46Z<p>Three things happen before your form is shown:</p>
<ol>
<li>All 'initialization' blocks in all units are executed in "first seen" order.</li>
<li>All auto-created forms are created (loaded from DFM files and their OnCreate handler is called)</li>
<li>You main form is displayed (OnShow and OnActivate are called).</li>
</ol>
<p>As other have pointed out, you should auto-create only small number of forms (especially if they are complicated forms with lots of component) and should not put lenghty processing in OnCreate events of those forms. If, by chance, your main form is very complicated, you should redesign it. One possibility is to split main form into multiple frames which are loaded on demand.</p>
<p>It's also possible that one of the initialization blocks is taking some time to execute. To verify, put a breakpoint on the first line of your program (main 'begin..end' block in the .dpr file) and start the program. All initialization block will be executed and then the breakpoint will stop the execution.</p>
<p>In a similar way you can step (F8) over the main program - you'll see how long it takes for each auto-created form to be created.</p>
http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800604#1800604Comment by gabr on How Should I Implement a Huge but Simple Indexed StringList in Delphi?gabr2009-11-26T09:04:50Z2009-11-26T09:04:50ZActually, I have no idea how GpStructuredStorage would behave on such big set but you're certainly welcome to try :) http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776138#1776138Comment by gabr on Can I create an object of the same type as itself?gabr2009-11-22T18:51:20Z2009-11-22T18:51:20Z@mghie: Agree, but sometimes they are useful. In those cases I like to name them Clone.http://stackoverflow.com/questions/1776621/is-it-possible-advisable-to-use-a-tstringlist-inside-a-record/1776695#1776695Comment by gabr on Is it possible/advisable to use a TStringList inside a record?gabr2009-11-22T10:16:02Z2009-11-22T10:16:02ZThere are workarounds. An interface inside a record will be managed correctly. You can than hook TStringList destruction to destruction of the object implementing this interface.http://stackoverflow.com/questions/1775962/can-i-create-an-object-of-the-same-type-as-itself/1776420#1776420Comment by gabr on Can I create an object of the same type as itself?gabr2009-11-22T08:57:14Z2009-11-22T08:57:14ZWouldn't that require Create to be virtual?http://stackoverflow.com/questions/1766626/copy-file-in-a-thread/1769183#1769183Comment by gabr on copy file in a threadgabr2009-11-20T16:04:59Z2009-11-20T16:04:59Z@Greener: Yes, you can use OTL in commercial and noncommercial software. It is licensed under BSD license which basically only requires you to reproduce my copyright if you redistribute the library itself - if you compile it into the code you are not required to mention this in any form.http://stackoverflow.com/questions/1766626/copy-file-in-a-thread/1769183#1769183Comment by gabr on copy file in a threadgabr2009-11-20T16:02:37Z2009-11-20T16:02:37ZFixed the code. First approximation was typed in Notepad, hence the errors :)http://stackoverflow.com/questions/1766626/copy-file-in-a-thread/1768491#1768491Comment by gabr on copy file in a threadgabr2009-11-20T08:59:27Z2009-11-20T08:59:27Z@Rob: Exactly so.http://stackoverflow.com/questions/1735566/delphi-thread-that-waits-for-data-processes-it-then-resumes-waiting/1735603#1735603Comment by gabr on Delphi thread that waits for data, processes it, then resumes waitinggabr2009-11-16T07:13:23Z2009-11-16T07:13:23ZYes I know, I know ... :(
Documentation is first thing on the list after the 1.04 release.http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1730768#1730768Comment by gabr on What are the ways of interchanging string data between clients and a server in Delphi?gabr2009-11-14T21:03:25Z2009-11-14T21:03:25ZICS is completely asynchronous and that fits the TCP/IP model better.http://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725506#1725506Comment by gabr on When did my application start running?gabr2009-11-13T06:55:02Z2009-11-13T06:55:02ZAnd the simplest way to use it is DSiGetProcessTimes from DSiWin32, <a href="http://gp.17slon.com/gp/dsiwin32.htm" rel="nofollow">gp.17slon.com/gp/dsiwin32.htm</a>.http://stackoverflow.com/questions/1679360/quick-padding-of-a-string-in-delphi/1679464#1679464Comment by gabr on Quick padding of a string in Delphigabr2009-11-05T10:47:39Z2009-11-05T10:47:39Z8 ms is 35.000 string assignments (from a constant - very fast, I presume) and 35.000 cwLeftPad calls.http://stackoverflow.com/questions/1611461/how-i-can-generate-a-random-new-guid-inside-of-the-dephi-ide/1611466#1611466Comment by gabr on How i can generate a random new GUID inside of the Dephi IDE.gabr2009-10-23T06:00:44Z2009-10-23T06:00:44Z+1 for pointing out the < kbd > formatting :)http://stackoverflow.com/questions/1480216/delphi-2009-ide-structure-view-collapse-function/1480784#1480784Comment by gabr on Delphi 2009 IDE Structure View Collapse function...gabr2009-09-28T08:07:49Z2009-09-28T08:07:49ZGreat. Now you should accept my answer so that others will know it worked for you.http://stackoverflow.com/questions/1482604/how-to-tell-if-a-delphi-app-owns-its-console/1482680#1482680Comment by gabr on How to tell if a Delphi app "owns" its console?gabr2009-09-27T05:15:45Z2009-09-27T05:15:45ZApproximation, but a good one.http://stackoverflow.com/questions/1398295/trunc-function/1398618#1398618Comment by gabr on Trunc() functiongabr2009-09-09T12:48:30Z2009-09-09T12:48:30ZNot every floating number is an approximation. Negative powers of two and their sums (for example 0.5) are represented without approximation.