User Alexander - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:53:11Zhttp://stackoverflow.com/feeds/user/92713http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1593535/passing-static-arrays-as-parameters-for-dynamic-arrays-in-delphi/1593855#15938550Answer by Alexander for Passing Static arrays as parameters for Dynamic arrays in DelphiAlexander2009-10-20T11:07:35Z2009-10-20T11:07:35Z<p>May be you should use <a href="http://rvelthuis.de/articles/articles-openarr.html" rel="nofollow">open arrays</a> instead?</p>
http://stackoverflow.com/questions/1524776/premature-string-destruction-and-how-to-avoid-it/1525066#15250663Answer by Alexander for Premature string destruction and how to avoid it?Alexander2009-10-06T11:37:29Z2009-10-06T11:37:29Z<p>Just use:</p>
<pre><code>DoSomething(PAnsiChar(Str));
</code></pre>
<p>General rule is simple: <strong>do not use PChar until at the very last moment</strong>. This way you don't need to think too much about memory management issues (well, mostly).</p>
<p>See also <a href="http://rvelthuis.de/articles/articles-pchars.html" rel="nofollow">this great article</a>.</p>
http://stackoverflow.com/questions/1433877/getwindowtext-not-retrieving-text/1437062#14370620Answer by Alexander for getwindowtext not retrieving textAlexander2009-09-17T06:38:31Z2009-09-17T06:38:31Z<p>Can it be, that you have <a href="http://blogs.msdn.com/oldnewthing/archive/2003/08/21/54675.aspx" rel="nofollow">this issue</a>?</p>
http://stackoverflow.com/questions/1420515/possible-reasons-for-ilink32-error-error-unresolved-external-fastcall-syste3Possible reasons for [ILINK32 Error] Error: Unresolved external '__fastcall System::TObject::NewInstance(System::TMetaClass *)' referenced from XXX.obj?Alexander2009-09-14T09:28:29Z2009-09-16T15:53:55Z
<p>Can you suggest what factors can cause an C++ Builder's 2009 linker error "Unresolved external '__fastcall System::TObject::NewInstance(System::TMetaClass *)' referenced from XXX.obj"?</p>
<p>We have a set of Delphi files (pas) and set of C++ Builder files (hpp and obj), which was generated from these pas files.</p>
<p>Set of files is copied to another machine. Both machine has the very same C++ Builder 2009 version with the same updates (latest: 3+4) installed.</p>
<p>When I create an empty VCL application in C++ Builder on other machine and include one obj file from this set to the active project, I get the above mentioned error at linking stage.</p>
<p>The strange things about this error are:</p>
<ol>
<li>This error can be reproduced not on every machine or C++ Builder installation (I've checked at least 5 of them). </li>
<li>If you remove obj-file and instead add corresponding pas file to the project - the error will dissappear.</li>
<li>But if you remove pas-file and include obj-file again - there will be no error. </li>
<li>None of the obj of pas files gets modified in the process. I.e. if you delete this set of files from the machine and bring them from the first machine again (where they were created) - you still will have no error.</li>
<li>Once you do that sequence on one particular machine (include/exclude pas-file from the project) - you can not longer get this error on that machine, no matter how hard you try (move files between folders, playing with settings, etc, etc). Actually, I already have no machines, where I can reproduce this error right now :(</li>
</ol>
<p>I do not see, how situation "after" is different from situation "before" (after/before inclusion of pas-file), so error is visible only before and not after.</p>
<p>The only mention of this error (or a very similar error) on the internet is <a href="http://www.programmersheaven.com/mb/bcbuilder/368431/368431/ilink-errors-in-cppb2007/?S=B10000" rel="nofollow">this</a>. But there is no solution. There are no "+" chars in the path nor spaces (" ").</p>
<p>Am I missing something? Right now it looks like C++ Builder bug to me.</p>
<p>Any ideas would be appreciated.</p>
<p>P.S. We can not use "just include pas-file" solution, as we need to deploy only hpp+obj (no pas-files) at certain machines.</p>
http://stackoverflow.com/questions/1420515/possible-reasons-for-ilink32-error-error-unresolved-external-fastcall-syste/1433858#14338581Answer by Alexander for Possible reasons for [ILINK32 Error] Error: Unresolved external '__fastcall System::TObject::NewInstance(System::TMetaClass *)' referenced from XXX.obj?Alexander2009-09-16T15:53:55Z2009-09-16T15:53:55Z<p>OKay, I've found answer: the reason was some wrong IDE's or project's settings (I do not know for sure).</p>
<p>I have several versions of C++ Builders and Delphis installed. And for some reason C++ Builder's 2009 linker picked up wrong obj files - the ones, which should be used for another version (possible 2007). </p>
<p>The reason for the error was that NewInstance was changed between 2007 and 2009 versions - see here: <a href="https://forums.codegear.com/thread.jspa?messageID=161105" rel="nofollow">https://forums.codegear.com/thread.jspa?messageID=161105</a></p>
http://stackoverflow.com/questions/1358066/cancel-abort-creating-a-new-form-in-delphi-cbuilder/1358149#13581491Answer by Alexander for Cancel / abort creating a new form in Delphi / C++Builder?Alexander2009-08-31T16:04:22Z2009-08-31T16:04:22Z<p>Just raise an exception in OnCreate.
You'll need also redefine behavior of HandleCreateException method (as default is to display an error message, and not to cancel creation).</p>
http://stackoverflow.com/questions/1335027/delphi-stringlist-delimiter-is-always-a-space-character-even-if-delimiter-is-set/1335764#13357647Answer by Alexander for Delphi: StringList Delimiter is always a space character even if Delimiter is setAlexander2009-08-26T15:56:17Z2009-08-26T15:56:17Z<pre><code>sl.DelimitedText := '"' + StringReplace(S, sl.Delimiter, '"' + sl.Delimiter + '"', [rfReplaceAll]) + '"';
</code></pre>
http://stackoverflow.com/questions/1334103/application-started-by-user-or-another-application/1335163#13351631Answer by Alexander for Application started by user or another application?Alexander2009-08-26T14:36:26Z2009-08-26T14:36:26Z<p>Did you see <a href="http://stackoverflow.com/questions/185254/how-can-a-win32-process-get-the-pid-of-its-parent">this question</a>?
I'm not sure that I see problem right now. </p>
http://stackoverflow.com/questions/1334103/application-started-by-user-or-another-application/1334930#13349302Answer by Alexander for Application started by user or another application?Alexander2009-08-26T14:04:44Z2009-08-26T14:04:44Z<p><strong>Every single running application has a parent application</strong>, which launched it (except for root system process).</p>
<p>It is not possible to tell, whenever it is user who directly clicked on application to lauch it or not.</p>
<p>Example: take Explorer shell (not Internet Explorer). </p>
<ol>
<li><p>You can double click on any application to launch it. The parent process will be explorer.exe. </p></li>
<li><p>You can right-click on any file and a bunch of context menu extenders will load. Some of them may launch external applications to, say, create a preview of video-file (I saw this, swear!). The parent process will be explorer.exe, but user didn't indended to lauch any application. He just wants to view file's properties. He didn't even know, that applications were lauched!</p></li>
</ol>
<p>Example: take Total Commander or any other two-panel file managers, which supports plugins for archives.</p>
<ol>
<li>You can double click on any
application to launch it. The parent
process will be totalcmd.exe.</li>
<li>You may enter archive file and copy
(extract) few files from it to your
Documents folders. Corresponding
plugin may handle extraction by
itself or run invisible process to
handle all work. All you see is
progress bar in Total Commander. But
there is a new proces and its parent
is totalcmd.exe again.</li>
</ol>
<p>There are no differences between cases 1 and 2 in both examples.</p>
<p>BTW, the definition "started by user" is unclear. You even may say that nothing can happen without user's command. All those background processes in cases #2 were launched because user asked for it. Well, user didn't asked for lauch explicitly, but he asked for operation itself.</p>
http://stackoverflow.com/questions/1333516/delphi-2006-system-delete-for-widestrings/1333604#13336043Answer by Alexander for Delphi 2006 system.delete for widestrings?Alexander2009-08-26T10:00:15Z2009-08-26T10:00:15Z<p>Internal RTL functions like Delete, Insert, Length, etc works both for Ansi and Wide strings.</p>
<p>For example, Delete call on WideString is transformed into WStrDelete call (see System.pas).</p>
http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows/1212291#12122910Answer by Alexander for Is there programmatical way to get short day names in windows?Alexander2009-07-31T12:31:12Z2009-08-04T05:44:32Z<p>Delphi's routines does nothing special - they just ask OS.
Here is how to to it: <a href="http://msdn.microsoft.com/en-us/library/dd319114%28VS.85%29.aspx" rel="nofollow">Retrieving Time and Date Information</a>. I looked through MSDNs docs and found <a href="http://msdn.microsoft.com/en-us/library/dd373890%28VS.85%29.aspx" rel="nofollow">this</a>. </p>
<p>Note, that there is no really such thing as "2 character day-name" or "3 character day-name" here. There are: native ("long" in Delphi), abbreviated ("short" in Delphi) or short (Vista and above, not present in Delphi) formats.</p>
<p>For example, abbreviated name of the day of the week for Monday: Mon (3 chars, en-US), Пн (2 chars, ru-RU).</p>
<p>So, you probably look for <a href="http://msdn.microsoft.com/en-us/library/dd373890%28VS.85%29.aspx" rel="nofollow">LOCALE_SSHORTESTDAYNAMEX</a> format (which is called "short" by MSDN and doesn't appear in Delphi), but it is availavle only on Vista and above.</p>
<p>For example, the following code:</p>
<pre><code>const
LOCALE_SSHORTESTDAYNAME1 = $60;
procedure TForm1.Button1Click(Sender: TObject);
begin
SetThreadLocale($409);
ShowMessage(
GetLocaleStr(GetThreadLocale, LOCALE_SSHORTESTDAYNAME1, '') + #13#10 +
GetLocaleStr(GetThreadLocale, LOCALE_SABBREVDAYNAME1, '')
);
end;
</code></pre>
<p>will show you:</p>
<blockquote>
<p>Mo</p>
<p>Mon</p>
</blockquote>
<p>But doing this for Russian will output:</p>
<blockquote>
<p>Пн</p>
<p>Пн</p>
</blockquote>
<p>Hope my edits make answer more clear ;)</p>
http://stackoverflow.com/questions/1192734/plugins-system-for-delphi-application-bpl-vs-dll/1192795#11927951Answer by Alexander for Plugins system for Delphi application - bpl vs dll?Alexander2009-07-28T08:52:05Z2009-07-28T08:52:05Z<p>I'm not familiar of JvPluginManager, but it depends on how you're going to use BPLs.</p>
<p>Basically, BPL - is just a usual DLL, but its initialization/finalization work is stripped from DllMain to separate functions: 'Initialize'/'Finalize'.</p>
<p>So, if you're going to use BPL like usual DLL, there are no cons that I'm aware of, only pros: there will be no more troubles with DllMain. That's all. The only difference.</p>
<p>But BPL in Delphi also provide a convient way to share code. This means great advantages (common memory manager, no duplicated code, etc, etc). So usual BPL does a lot more than "being just a DLL".
But this also means, that now your plugin system is limited to Delphi only (well, may be C++ Builder too). I.e. both plugins and exe MUST be compiled in the very same compiler to run smoothly.</p>
<p>If this is acceptable for you (i.e. no MS Visual Studio, no, sir, never) - then go ahead, you can use all power of BPLs.</p>
<p>P.S. But upgrading such BPLs plugins can be also a nightmare, if you do not design interface side carefully. In certain worst cases, you may need to recompile everything.
P.P.S. Like I said: I have no idea, how it is applied to plugins, created by JvPluginManager.</p>
http://stackoverflow.com/questions/1191604/how-can-i-find-the-location-of-a-list-index-out-of-bounds-error-in-delphi/1192391#11923917Answer by Alexander for How can I find the location of a "List index out of bounds" error in DelphiAlexander2009-07-28T07:26:27Z2009-07-28T07:26:27Z<p>Hey, you don't need any additional tools to track this! :)</p>
<p>Just run your application under debugger and make sure that "Stop on Delphi Exceptions" (or whatever it is called in your Delphi's version) is turned <strong>ON</strong>.</p>
<p>When exception occurs - there will be a notification from debugger. Press "Ok"/"Debug" button and just view the call stack. Call stack window is shown automatically in recent Delphi's version. If you can not see it - go to "View"/"Debug Windows"/"Call stack".</p>
<p>That's all. <a href="http://blog.eurekalog.com/?p=230" rel="nofollow">The call stack will point you at the exact location of the problem</a>. No additional tool needed.</p>
<p>Those tools (EurekaLog, JCL or madExcept) are needed if you distribute your program among users and want to gather bug-reports about problems on client side. I.e. there is no debugger to check the problem.</p>
http://stackoverflow.com/questions/1187268/adding-pointers/1187465#11874652Answer by Alexander for Adding pointersAlexander2009-07-27T10:25:42Z2009-07-27T10:25:42Z<p>I think that original code with PByte should work in Delphi 2009, as it now has more types with pointer math enabled.</p>
http://stackoverflow.com/questions/1170606/does-long-running-method-is-done-have-a-design-pattern/1171042#11710421Answer by Alexander for Does "Long running method is done" have a design pattern?Alexander2009-07-23T11:07:46Z2009-07-23T11:07:46Z<p>Not sure if that helps/suits you, but take a look at <a href="http://andy.jgknet.de/blog/?page%5Fid=100" rel="nofollow">AsyncCalls</a> unit.</p>
http://stackoverflow.com/questions/1147738/allocating-memory-for-dynamic-array-the-block-header-has-been-corrupted-fastmm/1150485#11504850Answer by Alexander for Allocating memory for dynamic array - The block header has been corrupted (FastMM4)Alexander2009-07-19T18:10:28Z2009-07-19T18:10:28Z<p>Did you try to run this code with FullDebugModeScanMemoryPoolBeforeEveryOperation enabled? Did you try to call ScanMemoryPoolForCorruptions at TScObj.ReadData's start?</p>
<p>If that doesn't help - try to step into that problem call (GetMem?) and follow FastMM's code to see the address of that corrupted header. Just write it down on the paper and restart the program. There are very high chances that the address of this block will be the same. </p>
<p>Set a breakpoint at safe location - i.e. right before "bad things" happens. Once stopped on it - then set a new breakpoint on memory's location - right at this header, which will become corrupted later (be sure not to set it too early).</p>
<p>Then just run your program - the debugger will stop right at this bad code, which tries to modify header.</p>
http://stackoverflow.com/questions/1130454/how-to-get-a-stack-trace-from-fastmm/1130662#11306621Answer by Alexander for How to get a stack trace from FastMMAlexander2009-07-15T10:39:45Z2009-07-15T10:39:45Z<p>You can also see <a href="http://blog.eurekalog.com/?p=198" rel="nofollow">this</a> for more detailed description, than ulrichb's reply. </p>
<p>And don't forget to enable "Use Debug DCUs" option ;)</p>
http://stackoverflow.com/questions/1118736/is-it-possible-to-create-a-type-method-in-delphi/1119216#11192161Answer by Alexander for Is it possible to create a type method in Delphi?Alexander2009-07-13T12:42:07Z2009-07-13T12:42:07Z<p>You should use at least Delphi 2009. There is new Exit(Result) construct.</p>
<p>If you prefer stick with the old Delphi's version, you should check <a href="http://andy.jgknet.de/dlang/" rel="nofollow">this</a> out. There is no ready functionality for Exit(Result), but it is very easy to implement by using plugins.</p>
http://stackoverflow.com/questions/1115421/how-to-increase-the-startup-speed-of-the-delphi-app/1117985#11179850Answer by Alexander for How to increase the startup speed of the delphi app?Alexander2009-07-13T06:46:48Z2009-07-13T06:46:48Z<p>Fastest code - it's the code, that never runs. Quite obvious, really ;)</p>
http://stackoverflow.com/questions/1106358/fastmm4-says-the-block-header-has-been-corrupted/1108371#11083714Answer by Alexander for FastMM4 says "The block header has been corrupted" Alexander2009-07-10T08:25:33Z2009-07-10T08:25:33Z<p>This error means that your code corrupted internal memory manager's structures. Your call stack represents point, when MM detected this. This is not error path or anything related to it. The actual error happens BEFORE this moment.
It may or may be not related to mentioned classes.</p>
<p><a href="http://blog.eurekalog.com/?p=198" rel="nofollow">You should try to use "Range check errors" option (don't forget to make Build, not Compile) and FastMM in full debug mode (with CheckHeapForCorruption, CatchUseOfFreedInterfaces и DetectMMOperationsAfterUninstall options enabled)</a>.</p>
<p>You can also turn on FullDebugModeScanMemoryPoolBeforeEveryOperation global variable, to get an error almost immediately after problem occurs, but this option slows down your execution A LOT.</p>
<p>Probably the best choice is call ScanMemoryPoolForCorruptions periodically. Call it in one place. Got an error? Call it sooner. Still got an error? Call it sooner again. No error? Your problem sits somewhere between those last calls. Now you can use FullDebugModeScanMemoryPoolBeforeEveryOperation variable to get precise location. Just turn it on only on this code's area and turn it off right after it.</p>
<p>There is a very similar error: "FastMM detected that a block has been modified after being freed". In this case your code modifies not internal structures, but other memory, which isn't used at all ("free memory").</p>
<p>BTW, your error is NOT double-free! If this is a double-free call, FastMM will tell you that explicitly (it is easy to detect, as you are trying to free not-used or not-existed memory block): "An attempt has been made to free/reallocate an unallocated block".</p>
http://stackoverflow.com/questions/1100490/reading-and-assigning-a-void-type-parameter/1100618#11006182Answer by Alexander for Reading and assigning a void type parameterAlexander2009-07-08T21:26:32Z2009-07-08T21:34:12Z<p>Your problem is that you pass either data OR pointer to a data to Method1/2. You should always pass data itself.
May be you just forgot that dynamic array is a pointer itself? You should not pass A or Pointer(A) in your methods (A is dynamic array here). Pass A[0] or Pointer(A)^.</p>
<pre><code>procedure Method1(const MyVar; size: cardinal);
var
Arr: array of byte;
begin
SetLength(Arr, size);
CopyMemory(Pointer(Arr), @MyVar, Size);
end;
procedure Method2(var MyVar; size: cardinal);
var
Arr: array of byte;
begin
SetLength(Arr, size);
Arr[0] := 1;
Arr[1] := 2;
Arr[2] := 3;
Arr[3] := 4;
CopyMemory(@MyVar, Pointer(Arr), Size);
end;
procedure TForm1.FormCreate(Sender: TObject);
var
I: Integer;
A: array of Integer;
begin
I := $01020304;
Method1(I, 4); // we pass data itself, not the pointer to it.
Method2(I, 4);
SetLength(A, 2);
A[0] := 0;
A[1] := $01020304;
Method1(A[0], Length(A) * SizeOf(A[0])); // note, that we pass data, not pointer
Method2(A[0], Length(A) * SizeOf(A[0])); // A or Pointer(A) is a pointer to array's data
end;
</code></pre>
<p>If A is dynamic array: </p>
<ol>
<li>A[0] is the same as Pointer(A)^ and represents array's data.</li>
<li>@A[0] is the same as Pointer(A) or just A and represents the array itself, which is pointer to it's data (and some tech info on negative offsets).</li>
</ol>
<p>If A is static array:</p>
<ol>
<li>A[0] is the same as A and represents the array itself, which is array's data.</li>
<li>@A[0] is the same as @A and represents the pointer to array.</li>
<li>Pointer(A) or Pointer(A)^ are meaningless.</li>
</ol>
<p>Note, that Arr in Method1/2 is a dynamic array too, that is why we cast it to pointer (CopyMemory asks pointers, not the data). If we want to use Move routine (which asks data), we should write Pointer(A)^ instead.</p>
http://stackoverflow.com/questions/1084434/how-use-html-context-sensitive-help-with-delphi-2007-the-basics/1084623#10846234Answer by Alexander for How use html context sensitive help with Delphi 2007 - the basicsAlexander2009-07-05T18:49:37Z2009-07-05T18:49:37Z<p>It seems that you forgot to set HelpContex or HelpKeyword properties. The help is only invoked if there is control with HelpContex <> 0 or HelpKeyword <> ''.</p>
http://stackoverflow.com/questions/1084418/how-do-i-keep-windows-explorer-from-interfering-with-deleting-a-folder/1084615#10846151Answer by Alexander for How do I keep Windows Explorer from interfering with deleting a folder?Alexander2009-07-05T18:46:18Z2009-07-05T18:46:18Z<p>See this example: <a href="http://blogs.msdn.com/oldnewthing/archive/2004/07/20/188696.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2004/07/20/188696.aspx</a>
And here is the same code in Delphi: <a href="http://translate.google.com/translate?prev=hp&hl=ru&js=n&u=http://transl-gunsmoker.blogspot.com/2009/05/blog-post_7575.html&sl=ru&tl=en&history_state0=" rel="nofollow">http://translate.google.com/translate?prev=hp&hl=ru&js=n&u=http://transl-gunsmoker.blogspot.com/2009/05/blog-post_7575.html&sl=ru&tl=en&history_state0=</a></p>
<p>You can enumerate all windows by using this example and find the Explorer's window, which is open at your folder. Then you can close it by sending WM_CLOSE message.</p>
http://stackoverflow.com/questions/1083924/does-a-lock-free-queue-multiple-producers-single-consumer-exist-for-delphi/1084054#10840543Answer by Alexander for Does a lock-free queue "multiple producers-single consumer" exist for Delphi?Alexander2009-07-05T13:24:19Z2009-07-05T13:24:19Z<p>May be that could be helpful: <a href="http://msdn.microsoft.com/en-us/library/ms684121%28VS.85%29.aspx" rel="nofollow">Interlocked SList functions</a>.</p>
http://stackoverflow.com/questions/1083087/cast-tobject-using-his-classtype/1084050#10840502Answer by Alexander for cast TObject using his ClassType ?Alexander2009-07-05T13:21:36Z2009-07-05T13:21:36Z<p>There is no need to cast to TMemo and TEdit separately, as they are both descendants from common parent class, which have ReadOnly property:</p>
<pre><code>procedure TForm1.FormCreate(Sender: TObject);
procedure P(const Obj: TComponent);
begin
if Obj is TCustomEdit then
TCustomEdit(Obj).ReadOnly := True;
end;
begin
P(Memo1);
P(Edit1);
end;
</code></pre>
http://stackoverflow.com/questions/1023727/how-list-all-instantiated-objects/1031258#10312580Answer by Alexander for How list all instantiated objects?Alexander2009-06-23T08:10:17Z2009-06-23T08:10:17Z<p>You can change memory manager by calling SetMemoryManager.
You can write your own MM, which will be a simple stub: it will redirect all calls to old MM (which is FastMM, you can get it by calling GetMemoryManager) and log all memory operations somewhere.
You can detect object creation/destruction by looking at call stack: call should be made from TObject's NewInstance method.</p>
http://stackoverflow.com/questions/960772/how-can-i-sanitize-a-string-for-use-as-a-filename/961500#9615004Answer by Alexander for How can I sanitize a string for use as a filename?Alexander2009-06-07T08:28:01Z2009-06-07T08:28:01Z<p>You can use <a href="http://msdn.microsoft.com/en-us/library/bb773608%28VS.85%29.aspx" rel="nofollow">PathGetCharType function</a>, <a href="http://msdn.microsoft.com/en-us/library/bb776472%28VS.85%29.aspx" rel="nofollow">PathCleanupSpec function</a> or the following trick:</p>
<pre><code> function IsValidFilePath(const FileName: String): Boolean;
var
S: String;
I: Integer;
begin
Result := False;
S := FileName;
repeat
I := LastDelimiter('\/', S);
MoveFile(nil, PChar(S));
if (GetLastError = ERROR_ALREADY_EXISTS) or
(
(GetFileAttributes(PChar(Copy(S, I + 1, MaxInt))) = INVALID_FILE_ATTRIBUTES)
and
(GetLastError=ERROR_INVALID_NAME)
) then
Exit;
if I>0 then
S := Copy(S,1,I-1);
until I = 0;
Result := True;
end;
</code></pre>
<p>This code divides string into parts and uses MoveFile to verify each part. MoveFile will fail for invalid characters or reserved file names (like 'COM') and return success or ERROR_ALREADY_EXISTS for valid file name.</p>
http://stackoverflow.com/questions/952676/indy-could-not-load-ssl-library-with-delphi-2007-apache/954738#9547382Answer by Alexander for Indy "Could not load SSL Library" with Delphi 2007/ApacheAlexander2009-06-05T07:55:39Z2009-06-05T07:55:39Z<p>For Indy you need a special build of OpenSSL libraries. The default OpenSSL libraries are not suitable for using with Indy.</p>
<p><a href="http://stackoverflow.com/questions/213084/ssl-issues-with-intraweb-delphi-2007">See also</a>. May be you need to try different versions, until you'll find a suitable one.</p>
http://stackoverflow.com/questions/912280/exitprocess-from-the-onshow-event-of-mainform-in-delphi/914105#9141050Answer by Alexander for ExitProcess from the OnShow event of MainForm in DelphiAlexander2009-05-27T05:30:18Z2009-05-27T05:30:18Z<p>While I fully agree with Rob Kennedy here, I want to note, that you may use EurekaLog's routines to control error dialog behaviour.
For example:</p>
<pre><code>uses
ExceptionLog, ECore;
...
begin
ForceApplicationTermination(tbTerminate);
// ... <- Bad code goes there
end;
</code></pre>
<p>That way, the application will be closed right after displaying error dialog.</p>
http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/858565#8585650Answer by Alexander for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Alexander2009-05-13T15:11:39Z2009-05-13T15:11:39Z<p>Why don't you <a href="http://delphi.uservoice.com/pages/4432-general/suggestions/188981-prism-language-features" rel="nofollow">vote for this</a>? ;)</p>
http://stackoverflow.com/questions/780073/is-the-memory-not-reclaimed-for-delphi-apps-running-on-windows-server-2008-sp1/784856#784856Comment by Alexander on Is the memory not reclaimed for Delphi apps running on Windows Server 2008 (sp1) ?Alexander2009-10-09T14:44:09Z2009-10-09T14:44:09ZThat's probably depends on how do you define "memory". I didn't say it is a physical memory, right?http://stackoverflow.com/questions/1524776/premature-string-destruction-and-how-to-avoid-it/1525066#1525066Comment by Alexander on Premature string destruction and how to avoid it?Alexander2009-10-07T13:36:00Z2009-10-07T13:36:00ZThat's because you use Str inside anonymous method, so now string variable will be captured and not go out of scope ;)http://stackoverflow.com/questions/1454190/how-can-i-make-my-form-resize-more-smoothly/1454294#1454294Comment by Alexander on How can I make my form resize more smoothly?Alexander2009-09-21T17:53:48Z2009-09-21T17:53:48Z>>> "DoubleBuffered basically makes your app useless on Citrix and Terminal Server"
Can you specify why?http://stackoverflow.com/questions/1454299/simple-virtualfilesystem-for-delphi-must-be-free/1454336#1454336Comment by Alexander on simple VirtualFilesystem for delphi - must be FREE!Alexander2009-09-21T16:47:03Z2009-09-21T16:47:03ZAnd it has tons of Delphi object wrappers too ;)http://stackoverflow.com/questions/1420515/possible-reasons-for-ilink32-error-error-unresolved-external-fastcall-syste/1420664#1420664Comment by Alexander on Possible reasons for [ILINK32 Error] Error: Unresolved external '__fastcall System::TObject::NewInstance(System::TMetaClass *)' referenced from XXX.obj?Alexander2009-09-14T10:16:07Z2009-09-14T10:16:07ZSystem::TObject::NewInstance is part of standart RTL, which is always linked in (is part of) the application. I.e. it can not be unimplemented. Project is not a DLL nor package - just a usual VCL (i.e. Win32) GUI application. Of couse, there is no such thing as redefinition of build-in RTL functions in our code.http://stackoverflow.com/questions/1335027/delphi-stringlist-delimiter-is-always-a-space-character-even-if-delimiter-is-set/1335764#1335764Comment by Alexander on Delphi: StringList Delimiter is always a space character even if Delimiter is setAlexander2009-08-27T05:18:34Z2009-08-27T05:18:34Z>>> has a problem if the original string contains a subsection like ' " " '
And how can user name contain '"' char? :)http://stackoverflow.com/questions/1333516/delphi-2006-system-delete-for-widestrings/1333604#1333604Comment by Alexander on Delphi 2006 system.delete for widestrings?Alexander2009-08-26T13:12:51Z2009-08-26T13:12:51ZYes, I'm pretty sure about it - just checked it right now in D2006. Delete for String (AnsiString) is converted into LStrDelete call and Delete for WideString is converted into WStrDelete call (see CPU view).http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows/1212291#1212291Comment by Alexander on Is there programmatical way to get short day names in windows?Alexander2009-08-05T05:27:23Z2009-08-05T05:27:23ZThe examples are actual output on my Vista. Sadly, on XP the first line will be empty.http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windowsComment by Alexander on Is there programmatical way to get short day names in windows?Alexander2009-08-04T09:41:06Z2009-08-04T09:41:06ZAtlas, I've edited my answer to look more appropriable. See, if that is what you need.http://stackoverflow.com/questions/1212007/is-there-programmatical-way-to-get-short-day-names-in-windows/1212291#1212291Comment by Alexander on Is there programmatical way to get short day names in windows?Alexander2009-08-04T05:26:48Z2009-08-04T05:26:48ZThanks, I've corrected my answer. Probably my English isn't good ;)http://stackoverflow.com/questions/1191604/how-can-i-find-the-location-of-a-list-index-out-of-bounds-error-in-delphi/1192391#1192391Comment by Alexander on How can I find the location of a "List index out of bounds" error in DelphiAlexander2009-07-28T14:57:28Z2009-07-28T14:57:28Z"Hopefully, "Behold" will soon be a standard" - actually, I just mean that you can try to locate this string in your sources and may be there will be some hint. That's all :Dhttp://stackoverflow.com/questions/1191604/how-can-i-find-the-location-of-a-list-index-out-of-bounds-error-in-delphi/1192391#1192391Comment by Alexander on How can I find the location of a "List index out of bounds" error in DelphiAlexander2009-07-28T07:27:33Z2009-07-28T07:27:33ZI also see a strange non-standard word in caption: "Behold" ;)http://stackoverflow.com/questions/1187268/adding-pointers/1187465#1187465Comment by Alexander on Adding pointersAlexander2009-07-27T12:43:56Z2009-07-27T12:43:56ZNo, you don't.
You can use pointermath to enable pointer math on new type or on block of code. Build-in PByte type already have pointer math enabled, so you don't need any additional directives.http://stackoverflow.com/questions/1147738/allocating-memory-for-dynamic-array-the-block-header-has-been-corrupted-fastmm/1151159#1151159Comment by Alexander on Allocating memory for dynamic array - The block header has been corrupted (FastMM4)Alexander2009-07-20T07:31:30Z2009-07-20T07:31:30ZAre you sure, that problem really disappear? May be you just hide it by suble code changes. That happens a lot.http://stackoverflow.com/questions/1147738/allocating-memory-for-dynamic-array-the-block-header-has-been-corrupted-fastmmComment by Alexander on Allocating memory for dynamic array - The block header has been corrupted (FastMM4)Alexander2009-07-19T18:12:55Z2009-07-19T18:12:55ZBTW, it would be nice to add a link to this question for old one and visa versa.