User mghie - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:44:50Z http://stackoverflow.com/feeds/user/30568 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817262/shlwapi-strformatbytesize-and-delphi-2010-unicode/1817958#1817958 0 Answer by mghie for ShLwApi.StrFormatByteSize and Delphi 2010 Unicode mghie 2009-11-30T05:16:25Z 2009-11-30T05:16:25Z <p>At least in Delphi 2009 (can't test in version 2010 as I don't have it) the <code>StrFormatByteSize()</code> function is an alias to the Ansi version (<code>StrFormatByteSizeA()</code>), not to the wide char version (<code>StrFormatByteSizeW()</code>) as it is for most of the other Windows API functions. Therefore you should use the wide char version directly - also for earlier Delphi versions, to be able to work with file (system) sizes larger than 4 GB.</p> <p>There's no need for an intermediate buffer, and you can make use of the fact that <a href="http://msdn.microsoft.com/en-us/library/bb759975%28VS.85%29.aspx" rel="nofollow"><code>StrFormatByteSizeW()</code></a> returns a pointer to the converted result as a <code>PWideChar</code>:</p> <pre><code>{$IFDEF UNICODE} function FormatStringByteSize(ASize: int64): string; { Return a cardinal as a string formatted similar to the status bar of Explorer } const BufLen = 20; begin SetLength(Result, BufLen); Result := StrFormatByteSizeW(ASize, PChar(Result), BufLen); end; {$ENDIF} </code></pre> http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee/1806947#1806947 15 Answer by mghie for Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread? mghie 2009-11-27T05:38:18Z 2009-11-27T22:27:39Z <p><strong>Edit:</strong></p> <p>It looks like many of the implementation details have changed since Delphi 4 and 5 (the Delphi versions I'm still using for most of my work), and Allen Bauer has commented the following:</p> <blockquote> <p>Ever since D6, TThread doesn't use SendMessage anymore. It uses a thread-safe work queue where the "work" intended for the main thread is placed. A message is posted to the main thread to indicate that work is available and the background thread blocks on an event. When the main message loop is about to go idle, it calls "CheckSynchronize" to see if any work is waiting. If so, it processes it. Once a work item is completed, the event on which the background thread is blocked is set to indicate completion. Introduced in D2006 timeframe, TThread.Queue method was added that doesn't block.</p> </blockquote> <p>Thanks for the correction. So take the details in the original answer with a grain of salt.</p> <p>But this doesn't really affect the core points. I still maintain that the whole idea of <code>Synchronize()</code> is fatally flawed, and this will be obvious the moment one tries to keep several cores of a modern machine occupied. Don't "synchronize" your threads, let them work until they are finished. Try to minimize all dependencies between them. Especially when updating the GUI there is absolutely <em>no</em> reason to wait for this to complete. Whether <code>Synchronize()</code> uses <code>SendMessage()</code> or <code>PostMessage()</code>, the resulting road block is the same.</p> <p><hr></p> <p>What you present here is not an alternative at all, as <code>Synchronize()</code> uses <code>SendMessage()</code> internally. So it's more of a question which weapon you want to use to shoot yourself in the foot with.</p> <p><code>Synchronize()</code> has been with us since the introduction of <code>TThread</code> in the Delphi 2 VCL, which is a shame really as it is one of the bigger design misfeatures in the VCL.</p> <p>How does it work? It uses a <code>SendMessage()</code> call to a window that was created in the main thread, and sets the message parameters to pass the address of a parameterless object method to be called. Since Windows messages will be processed only in the thread that created the destination window and runs its message loop this will suspend the thread, handle the message in the context of the main VCL thread, call the method, and resume the thread only after the method has finished executing.</p> <p>So what's wrong with it (and what's similarly wrong with using <code>SendMessage()</code> directly)? Several things:</p> <ul> <li>Forcing any thread to execute code in the context of another thread forces two thread context switches, which needlessly burns CPU cycles.</li> <li>While the VCL thread processes the message to call the synchronized method it can't process any other message.</li> <li>When more than one thread uses this method they will <em>all</em> block and wait for <code>Synchronize()</code> or <code>SendMessage()</code> to return. This creates a giant bottleneck.</li> <li>There is a deadlock waiting to happen. If the thread calls <code>Synchronize()</code> or <code>SendMessage()</code> while holding a synchronization object, and the VCL thread while processing the message needs to acquire the same synchronization object the application will lock up.</li> <li>The same can be said of the API calls waiting for the thread handle - using <code>WaitForSingleObject()</code> or <code>WaitForMultipleObjects()</code> without some means to process messages will cause a deadlock if the thread needs these ways to "synchronize" with the other thread.</li> </ul> <p>So what to use instead? Several options, I'll describe some:</p> <ul> <li><p>Use <code>PostMessage()</code> instead of <code>SendMessage()</code> (or <code>PostThreadMessage()</code> if the two threads are both not the VCL thread). It is important though to not use any data in the message parameters that will be no longer valid when the message arrives, as the sending and receiving thread are not synchronized at all, so some other means have to be used to make sure that any string, object reference or chunk of memory are still valid when the message is processed, even though the sending thread may not even exist any more.</p></li> <li><p>Create thread-safe data structures, put data to them from your worker threads, and consume them from the main thread. Use <code>PostMessage()</code> only to alert the VCL thread that new data has arrived to be processed, but don't post messages each time. If you have a continuous stream of data you could even have the VCL thread poll for data (maybe by using a timer), but this is a poor man's version only.</p></li> <li><p>Don't use the low level tools at all, any more. If you are at least on Delphi 2007, download the <a href="http://otl.17slon.com" rel="nofollow">OmniThreadLibrary</a> and start to think in terms of tasks, not threads. This library has a lot of facilities for data exchange between threads and synchronization. It also has a thread pool implementation, which is a good thing - how much threads you should use does not only depend on the application but also on the hardware it's running on, so many decisions can be made at runtime only. OTL will allow you to run tasks on a thread pool thread, so the system can tune the number of concurrent threads at runtime.</p></li> </ul> <p><strong>Edit:</strong></p> <p>On re-reading I realize that you don't intend to use <code>SendMessage()</code> but <code>PostMessage()</code> - well, some of the above doesn't apply then, but I will leave it in place. However, there are some more points in your question I want to address:</p> <blockquote> <p>With up to 16 threads running at once (and most of the child thread's processing takes from &lt; 1 second to ~10 seconds) would Window Messages be a better design?</p> </blockquote> <p>If you post a message from each thread once every second or even longer period, then the design is fine. What you should not do is post hundreds or more messages per thread per second, because the Windows message queue has a finite length and custom messages should not interfere with normal message processing too much (your program would start to appear unresponsive).</p> <blockquote> <p>where the child thread posts a windows message (consisting of a record of several strings)</p> </blockquote> <p>A window message can not contain a record. It carries two parameters, one of type <code>WPARAM</code>, the other of type <code>LPARAM</code>. You can only cast a pointer to such a record to one of these types, so the lifetime of the record needs to be managed somehow. If you dynamically allocate it you need to free it too, which is prone to errors. If you pass a pointer to a record on the stack or to a object field you need to make sure it is still valid when the message is processed, which is more difficult for posted messages than for sent messages.</p> <blockquote> <p>do you suggest wrapping the code where I post to the grid in a TCriticalSection (enter and leave) block? Or will I not need to worry about thread safety since I'm writing to the grid in the main thread (although within the window message handler's function)?</p> </blockquote> <p>There's no need to do this, as the <code>PostMessage()</code> call will return immediately, so no synchronization is necessary <em>at this point</em>. You will definitely need to worry about thread safety, unfortunately you can't know <em>when</em>. You have to make sure that access to data is thread-safe, by <em>always</em> locking the data for access, using synchronization objects. There isn't really a way to achieve that for records, the data can always be accessed directly.</p> http://stackoverflow.com/questions/1795733/modifying-the-color-scheme-for-an-inno-setup-installer/1810779#1810779 0 Answer by mghie for Modifying the color scheme for an Inno Setup Installer. mghie 2009-11-27T22:07:05Z 2009-11-27T22:07:05Z <p>The four parameters are described in the <strong>Cosmetic</strong> section of the documentation of the <strong>[Setup]</strong> section in the Inno Setup help. They do what you would expect, but not for the gradient in the upper area of the setup wizard, but for the background window that was customary a few years ago. This is considered legacy, but can be enabled by setting</p> <pre><code>[Setup] ... WindowVisible=yes </code></pre> <p>(the default value is <code>no</code>). You can try this to see it in action, but IMO you shouldn't enable this for your installations unless you want them to look rather dated.</p> <p>As for the top area of the wizard: It is not meant to have a gradient. If you use a tool like Spy++ to check the window hierarchy of the wizard, or open the <em>Wizard.dfm.txt</em> text file from the Inno Setup sources, you will find that there is a window of the class <code>TPanel</code> with the colour set to the default window colour (<code>clWindow</code> if you know Delphi, or the result of calling <code>GetSysColor()</code> with the <code>COLOR_WINDOW</code> constant). This is a solid colour, which you can change easily by adding this to your <strong>[Code]</strong> section:</p> <pre><code>procedure InitializeWizard(); begin WizardForm.MainPanel.Color := clYellow; end; </code></pre> <p>I don't think it is possible with the current Inno Setup versions to draw a gradient on this panel, because the panel itself has no canvas to draw on, and the <code>TPaintBox</code> class which could <em>maybe</em> be created in the right place and be used to draw the gradient isn't available (see list of classes in the "Support Classes Reference" section of the documentation).</p> http://stackoverflow.com/questions/1805633/delphi-threaded-list-of-thread-jobs-queueing/1807369#1807369 2 Answer by mghie for Delphi: Threaded list of thread jobs - queueing mghie 2009-11-27T08:15:08Z 2009-11-27T08:15:08Z <p>Don't base your operations on threads. This is the wrong design. Instead you should create a base class for your operation, which exposes a method to perform the operation. Write descendant classes to implement the concrete operations. Don't make any assumptions about thread contexts, alway use critical sections or similar synchronization objects to protect access to shared resources. More importantly, try to avoid shared resources, or at least try to make shared resources read-only, so that locking isn't necessary.</p> <p>With that design in place it becomes possible to perform each operation in the VCL thread by calling the operation method directly, to use a <code>TThread</code> descendant class to perform an operation in its own thread (what you seem to have now), or to schedule all operations on a thread pool. The number of threads in the pool can be adjusted at runtime to match the nature of the operations (processor-bound or I/O-bound) and the number of processor cores the system has. And to answer your question: it is even possible to completely serialize the operations by forcing the pool to use a single thread. Basically you can completely change the way your operations are performed without changing <em>them</em> at all.</p> http://stackoverflow.com/questions/1803011/topendialog-in-delphi-how-to-open-only-file-with-given-name/1803069#1803069 8 Answer by mghie for TOpenDialog in Delphi - how to open only file with given name mghie 2009-11-26T11:13:01Z 2009-11-26T11:13:01Z <p><code>TOpenDialog</code> has an event <code>OnCloseQuery</code>. Provide an event handler that checks for the validity of the name, and if the app shouldn't accept the name then show a message to the user and set <code>CanClose</code> to <code>False</code>. </p> http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800280#1800280 2 Answer by mghie for How Should I Implement a Huge but Simple Indexed StringList in Delphi? mghie 2009-11-25T22:09:56Z 2009-11-25T22:09:56Z <p>You should analyse your data. If </p> <ol> <li>a sizeable part of the data values is larger than the default file system block size, </li> <li>you don't want to search in the data values using SQL (so it doesn't matter what format they are stored in), and </li> <li>you really need random access over the whole database,</li> </ol> <p>then you should test whether compressing your data values increases performance. The decompression of data values (especially on a modern machine with multiple cores, performed in background threads) should incur only a small performance hit, but the gains from having to read fewer blocks from the hard disc (especially if they are not in the cache) could be much larger.</p> <p>But you need to measure, maybe the database engine stores compressed data anyway.</p> http://stackoverflow.com/questions/1797423/convert-function-to-delphi-2010-unicode/1798272#1798272 0 Answer by mghie for convert function to delphi 2010 (unicode) mghie 2009-11-25T16:45:12Z 2009-11-25T16:45:12Z <p>I have made some more changes to Michael's answer to use the proper string conversion to upper case, check for error conditions and remove unnecessary stuff:</p> <pre><code>function TForm1.GetTarget(const LinkFileName: String): String; var psl: IShellLink; ppf: IPersistFile; wfs: TWin32FindData; begin if Character.ToUpper(ExtractFileExt(LinkFileName)) &lt;&gt; '.LNK' Then Exit('NOT a shortcut by extension!'); OleCheck(CoCreateInstance(CLSID_ShellLink, nil, CLSCTX_INPROC_SERVER, IShellLink, psl)); if psl.QueryInterface(IPersistFile, ppf) = 0 Then Begin OleCheck(ppf.Load(PChar(LinkFileName), STGM_READ)); SetLength(Result, MAX_PATH); OleCheck(psl.GetPath(PChar(Result), MAX_PATH, wfs, SLGP_UNCPRIORITY)); Result := PChar(Result); end; end; </code></pre> http://stackoverflow.com/questions/1776621/is-it-possible-advisable-to-use-a-tstringlist-inside-a-record/1779165#1779165 1 Answer by mghie for Is it possible/advisable to use a TStringList inside a record? mghie 2009-11-22T16:19:27Z 2009-11-22T16:19:27Z <p>Any solution for a record correctly lifetime-managing a string list object will involve an interface in one way or another. So why not return an interface from your function in the first place? Add properties to the interface, and for the consuming code it will look like record fields. It will allow you to easily add more "record fields" later on, and you can put arbitrarily complex code in the getters that return the values.</p> http://stackoverflow.com/questions/1769620/basic-code-to-delphi/1769808#1769808 3 Answer by mghie for Basic code to Delphi mghie 2009-11-20T11:11:31Z 2009-11-20T13:02:17Z <p>Your <code>TPrmRecord</code> type is not what OO.org expects. You should not try to write your own types, but use those that OO.org exposes.</p> <p>There is an LPGL-licensed toolbox for Delphi: <a href="http://www.ooomacros.org/dev.php#133853" rel="nofollow">Delphi OOo</a>. In it you will find a unit OOoTools.pas, which exports a function <code>CreateUnoStruct()</code>. Use this and pass <code>'com.sun.star.beans.PropertyValue'</code> as the name of the struct. You will get a <code>Variant</code> (or an array of those, depending on the other parameter value) back that you can use instead of <code>TPrmRecord</code> (something like the following, untested):</p> <pre><code>var Params: Variant; begin Params := CreateUnoStruct('com.sun.star.beans.PropertyValue', 1); Params[0].Name := 'FilterName'; Params[0].Value := 'Text - txt - csv (StarCalc)'; Params[1].Name := 'FilterOptions'; Params[1].Value := '59/44,34,ANSI,1,'; end; </code></pre> http://stackoverflow.com/questions/1766626/copy-file-in-a-thread/1768491#1768491 3 Answer by mghie for copy file in a thread mghie 2009-11-20T05:21:58Z 2009-11-20T05:21:58Z <p>Your edited code still has at least two big problems:</p> <ul> <li><p>You have a parameterless constructor, then set the source and destination file names by means of thread class properties. All you have been told about creating suspended threads not being necessary holds true only if you do all setup in the thread constructor - after this has finished thread execution will begin, and access to thread properties need to be synchronized. You should (as indeed your first version of the code did) give both names as parameters to the thread. It's even worse: the only safe way to use a thread with the <code>FreeOnTerminate</code> property set is to not access <em>any</em> property once the constructor has finished, because the thread may have destroyed itself already, or could do while the property is accessed.</p></li> <li><p>In case of an exception you free the thread object, even though you have set its <code>FreeOnTerminate</code> property. This will probably result in a double free exception from the memory manager.</p></li> </ul> <p>I do also wonder how you want to know when the copying of the file is finished - if there is no exception the button click handler will exit with the thread still running in the background. There is also no means of cancelling the running thread. This will cause your application to exit only when the thread has finished.</p> <p>All in all you would be better off to use one of the Windows file copying routines with cancel and progress callbacks, as Ken pointed out in <a href="http://stackoverflow.com/questions/1766626/copy-file-in-a-thread/1766777#1766777">his answer</a>.</p> <p>If you do this only to experiment with threads - don't use file operations for your tests, they are a bad match for several reasons, not only because there are better ways to do the same in the main thread, but also because I/O bandwidth will be used best if no concurrent operations are attempted (that means: don't try to copy several files in parallel by creating several of your threads).</p> http://stackoverflow.com/questions/1765815/error-on-getting-avi-file-duration/1766307#1766307 3 Answer by mghie for Error on getting AVI file duration mghie 2009-11-19T20:31:51Z 2009-11-19T20:31:51Z <p>The functions are paired, <code>AVIFileOpen()</code> and <code>AVIFileRelease()</code> belong together. Before <code>AVIFileOpen()</code> is called the <code>lFile</code> variable is <code>nil</code>, afterwards (if all went well) it contains an interface pointer. It has the reference count 1. After calling <code>AVIFileRelease()</code> the variable should again contain <code>nil</code>, but it doesn't. Now when your method exits the compiler-provided code to release interface pointers will try to decrement the reference count of the already released interface.</p> <p>You have basically two ways to fix this:</p> <ul> <li><p>Increment the reference count of the interface pointer after <code>AVIFileOpen()</code>.</p></li> <li><p>Reset the variable without trying to decrement the reference count. Use a typecast to a pointer:</p> <p>pointer(lFile) := nil;</p></li> </ul> <p>Also, add a call to <code>AVIFileExit()</code> to match your call to <code>AVIFileInit()</code>.</p> http://stackoverflow.com/questions/280247/menu-accelerator-keys-not-showing-up-delphi-2009/280289#280289 6 Answer by mghie for Menu Accelerator Keys Not Showing Up (Delphi 2009) mghie 2008-11-11T07:57:44Z 2009-11-19T15:12:57Z <p>There is a standard Windows setting (under display properties) to normally hide those accelerators unless the Alt key is held down. That would explain why opening the menu with Alt+F10 shows them for you. Maybe that's the cause?</p> <p>[EDIT]: No, it's not. I just tried, and a simple TForm with a menu item shows the accelerator, but as soon as I add a TImageList and set the ImageIndex of the single menu item, or simply set OwnerDraw to true, then the accelerator underline disappears. I guess that really is a bug in the VCL.</p> <p>BTW, this is on Windows XP.</p> <p><strong>Workaround:</strong></p> <p>I have debugged this using Delphi 2009 on Windows XP 64, and the root cause for the missing accelerators seems to be that Windows sends <code>WM_DRAWITEM</code> messages with the <code>ODS_NOACCEL</code> flag set, which it shouldn't if the system is set to show accelerators at all times. So you could say that it is not a VCL bug, but a Windows problem which the VCL does not work around.</p> <p>However, you can work around it in your own code, you just need to reset the flag before passing the message to the VCL. Override the window proc</p> <pre><code>protected procedure WndProc(var Message: TMessage); override; </code></pre> <p>like so:</p> <pre><code>procedure TYourForm.WndProc(var Message: TMessage); const ODS_NOACCEL = $100; var pDIS: PDrawItemStruct; ShowAccel: BOOL; begin if (Message.Msg = WM_DRAWITEM) then begin pDIS := PDrawItemStruct(Message.LParam); if (pDIS^.CtlType = ODT_MENU) and SystemParametersInfo(SPI_GETKEYBOARDCUES, 0, @ShowAccel, 0) then begin if ShowAccel then pDIS^.itemState := pDIS^.itemState and not ODS_NOACCEL; end; end; inherited; end; </code></pre> <p>This is demonstration code only, you should not call <code>SystemParametersInfo()</code> every time a <code>WM_DRAWITEM</code> message is received, but once at program start, and then every time your program receives a <code>WM_SETTINGCHANGE</code> message. </p> http://stackoverflow.com/questions/1754389/how-to-call-a-ms-dos-batch-program-from-delphi-2010-application/1754582#1754582 6 Answer by mghie for How to call a MS-DOS batch program from delphi 2010 application mghie 2009-11-18T08:56:51Z 2009-11-18T08:56:51Z <p>The reason that your function fails in Delphi 2010 but works in Delphi 6 is that <a href="http://msdn.microsoft.com/en-us/library/ms682425%28VS.85%29.aspx" rel="nofollow"><code>CreateProcessW()</code></a> must not be called with a read-only <code>lpCommandLine</code> parameter. To quote the MSDN documentation:</p> <blockquote> <p>The Unicode version of this function, CreateProcessW, can modify the contents of this string. Therefore, this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string). If this parameter is a constant string, the function may cause an access violation.</p> </blockquote> <p>The reason that it works with Delphi 6 is that all Windows functions are really wide string internally, and the Ansi versions do nothing but convert string parameters to their wide string counterpart, and then call the wide version. You call the function with a constant, and with Delphi 6 Windows internally creates a writeable buffer for you. With Delphi 2010 you experience the AV.</p> <p>Note that your program has another bug, as the documentation does also state:</p> <blockquote> <p>To run a batch file, you must start the command interpreter; set lpApplicationName to cmd.exe and set lpCommandLine to the following arguments: /c plus the name of the batch file.</p> </blockquote> http://stackoverflow.com/questions/1753893/how-do-i-show-a-final-form-on-exiting-in-delphi/1753942#1753942 4 Answer by mghie for How Do I Show A Final Form On Exiting In Delphi? mghie 2009-11-18T05:58:43Z 2009-11-18T07:51:31Z <p>You could do that in the <code>OnClose</code> handler of the main form. Be sure to <code>ShowModal</code> the other form, because otherwise it will be closed immediately when the closing of the main form terminates the application:</p> <pre><code>procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction); begin Hide; with TThankYouForm.Create(nil) do try ShowModal; finally Free; end; Action := caFree; end; </code></pre> <p>or even</p> <pre><code>procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction); begin Hide; with TThankYouForm.Create(Application) do ShowModal; Action := caFree; end; </code></pre> <p>And be sure to make the behaviour optional - when the user closes the app they are finished with it, and not everybody is pleased with programs that are so reluctant to go away.</p> <p><strong>Edit:</strong></p> <p>OK, showing such a form at the end of the trial period does indeed make sense. And while I can't really say why your code raises the exception - you should be able to find out by compiling with debug DCUs, setting a breakpoint on the line that raises the exception, and examine the stack trace. I assume some combination of the form properties and your code leads to another change of the <code>Visible</code> property higher up the stack, and you need to find out what it is and correct that. The code above should really work.</p> http://stackoverflow.com/questions/1746163/what-principles-should-be-followed-to-make-a-dll-created-using-delphi-works-well/1746723#1746723 2 Answer by mghie for What principles should be followed to make a DLL created using Delphi works well in other Delphi version? mghie 2009-11-17T05:09:48Z 2009-11-17T05:09:48Z <p>You ask:</p> <blockquote> <p>Once again, I have a question : what principles should be followed in order to make an encapsulation of a class in a dll compatible to other version of Delphi?</p> </blockquote> <p>and there is only one: Don't do it. You <em>can't</em> do it. Either you write a DLL, then use idioms and data types that can safely be used in DLLs, which precludes (among other things) classes.</p> <p>Or you write a BPL, then you can safely export classes, use strings and such, but you are tied to the same Delphi version. This limitation is of technical nature, so writing a DLL will <strong>not</strong> work around it. There may be tricks to overcome this, and there may be different Delphi versions that use the same class layout so that it works, but you must not tie your public DLL interface to such implementation details.</p> http://stackoverflow.com/questions/1735566/delphi-thread-that-waits-for-data-processes-it-then-resumes-waiting/1735660#1735660 1 Answer by mghie for Delphi thread that waits for data, processes it, then resumes waiting mghie 2009-11-14T21:23:45Z 2009-11-14T21:23:45Z <p>You can definitely send messages to a thread, even though it doesn't have a window handle. Just use <code>PostThreadMessage()</code> instead of <code>SendMessage()</code> or <code>PostMessage()</code>. There will be more information here on StackOverflow if you search for <code>PostThreadMessage()</code> in the [delphi] tag - I don't think it's a good idea to duplicate everything here.</p> <p>But if you are not knowledgeable about thread programming, then starting with OTL instead of the low level stuff may indeed be a good thing.</p> http://stackoverflow.com/questions/1734644/how-to-start-stop-a-monitoring-delphi-thread-on-demand/1734685#1734685 4 Answer by mghie for How to start/stop a monitoring Delphi thread on demand? mghie 2009-11-14T16:12:15Z 2009-11-14T21:15:18Z <p>Use <code>WaitForMultipleObjects()</code> with an array of two events instead of <code>WaitForSingleObject()</code>. Add a manual reset event to the thread class, and signal it after you have set <code>Terminated</code> to <code>True</code>. Check the return value which of the two events has been signalled, and act accordingly.</p> <p><strong>Edit:</strong></p> <p>Some minimal Delphi 2009 code to demonstrate the idea. You have to add <code>SyncObjs</code> to the list of used units, and add</p> <pre><code> fTerminateEvent: TEvent; </code></pre> <p>to the <code>private</code> section of your thread class.</p> <pre><code>constructor TTestThread.Create; begin inherited Create(TRUE); fTerminateEvent := TEvent.Create(nil, True, False, ''); // ... Resume; end; destructor TTestThread.Destroy; begin fTerminateEvent.SetEvent; Terminate; // not necessary if you don't check Terminated in your code WaitFor; fTerminateEvent.Free; inherited; end; procedure TTestThread.Execute; var Handles: array[0..1] of THandle; begin Handles[0] := ...; // your event handle goes here Handles[1] := fTerminateEvent.Handle; while not Terminated do begin if WaitForMultipleObjects(2, @Handles[0], False, INFINITE) &lt;&gt; WAIT_OBJECT_0 then break; // ... end; end; </code></pre> <p>You only need to add the code in your question to it. Simply trying to free the thread instance will do everything necessary to unblock the thread (if necessary).</p> http://stackoverflow.com/questions/1729224/how-to-avoid-a-thread-freezing-when-main-application-is-busy/1729264#1729264 7 Answer by mghie for How to avoid a thread freezing when Main Application is Busy mghie 2009-11-13T13:43:06Z 2009-11-13T13:53:19Z <p>If your worker thread does not have a lower priority than the main thread, you don't use the <code>Synchronize()</code> method, don't call <code>SendMessage()</code> (which is what <code>Synchronize()</code> does internally) and don't try to acquire any synchronization object that the main GUI thread owns, then your secondary thread should continue to work.</p> <p>As the VCL isn't thread-safe people do often advise to use <code>Synchronize()</code> to execute code to update VCL controls synchronously in the context of the VCL thread. This however does not work if the VCL thread is itself busy. Your worker thread will block until the main thread continues to process messages.</p> <p>Your application design is unfortunate, anyway. You should perform all lengthy operations in worker threads, and keep the main thread responsive for user interaction. Even with the fancy animation your app will appear hung to the user since it won't redraw while the VCL thread is busy doing other things and processes no messages. Try to put your lengthy code in worker threads and perform your animation in timer events in the main thread.</p> http://stackoverflow.com/questions/1728141/tbitmap-drawing-transparent-image-in-delphi-2009/1728255#1728255 1 Answer by mghie for TBitmap drawing transparent image in Delphi 2009. mghie 2009-11-13T09:53:14Z 2009-11-13T09:53:14Z <p>It is certainly possible to paint a <code>bmDIB</code> bitmap with transparent background to a canvas:</p> <pre><code>procedure TForm1.FormPaint(Sender: TObject); var Bmp: TBitmap; begin Bmp := TBitmap.Create; try Bmp.PixelFormat := pf32bit; Bmp.HandleType := bmDIB; Bmp.Width := 700; Bmp.Height := 400; Bmp.Transparent := TRUE; Bmp.TransparentColor := clMaroon; with Bmp.Canvas do begin Brush.Color := clMaroon; FillRect(Rect(0, 0, Bmp.Width, Bmp.Height)); Brush.Color := clBlue; FillRect(Rect(42, 42, 200, 300)); end; Canvas.Draw(12, 12, Bmp); finally Bmp.Free; end; end; </code></pre> <p>Note that the whole bitmap is filled first with the colour set as <code>TransparentColor</code>.</p> <p>But for more control and speed you should look into a solution that is not as dependent on the GDI (which involves graphics card and driver capabilities), something like <a href="http://sourceforge.net/projects/graphics32/" rel="nofollow">Graphics32</a>.</p> http://stackoverflow.com/questions/1721869/how-to-use-argument-in-a-cast-with-delphi/1721936#1721936 10 Answer by mghie for How to use argument in a cast with Delphi mghie 2009-11-12T12:43:25Z 2009-11-13T05:44:13Z <p>Since the component is a <code>TControl</code> or a descendant you have to cast to <code>TControl</code>:</p> <pre><code>procedure ToggleVisibility(ComponentClass : TControlClass); var i : integer; begin for i := 0 to ComponentCount - 1 do begin if Components[i] is ComponentClass then TControl(Components[i]).Visible := not TControl(Components[i]).Visible; end; end; </code></pre> http://stackoverflow.com/questions/1720455/how-to-automate-perl-script-in-delphi/1720960#1720960 0 Answer by mghie for How to automate perl script in Delphi? mghie 2009-11-12T09:17:28Z 2009-11-12T09:17:28Z <p>If you want to <code>ShellExecute()</code> a batch file you need to execute <code>cmd.exe</code> and pass the script as a parameter, like so:</p> <pre><code>ShellExecute(Handle, 'open', 'cmd.exe', '/C C:\loaderperl.bat', nil, SW_SHOW); </code></pre> <p>You can use output redirection to capture the script output in a file. If you want to see whether the script was executed successfully you can (for testing purposes) add <code>pause</code> to the end of it.</p> http://stackoverflow.com/questions/1717465/delphi-how-to-start-application-with-elevated-status-and-wait-for-it-to-terminat/1717751#1717751 7 Answer by mghie for Delphi: How to start application with elevated status and wait for it to terminate? mghie 2009-11-11T20:10:55Z 2009-11-11T20:16:14Z <p>The following code works for me:</p> <pre><code>procedure RunFileAsAdminWait(hWnd: HWND; aFile, aParameters: string); var sei: TShellExecuteInfo; begin FillChar(sei, SizeOf(sei), 0); sei.cbSize := SizeOf(sei); sei.Wnd := hWnd; sei.fMask := SEE_MASK_FLAG_NO_UI or SEE_MASK_NOCLOSEPROCESS; sei.lpVerb := 'runas'; sei.lpFile := PChar(aFile); sei.lpParameters := PChar(aParameters); sei.nShow := SW_SHOWNORMAL; if not ShellExecuteEx(@sei) then RaiseLastOSError; if sei.hProcess &lt;&gt; 0 then begin while WaitForSingleObject(sei.hProcess, 50) = WAIT_TIMEOUT do Application.ProcessMessages; CloseHandle(sei.hProcess); end; end; </code></pre> <p>You have to pass the <code>SEE_MASK_NOCLOSEPROCESS</code> flag to get the process handle to wait for. I also changed the code to loop as long as <code>WaitForSingleObject()</code> returns with timeout.</p> <p>For more information on the flags see the MSDN page for the <a href="http://msdn.microsoft.com/en-us/library/bb759784%28VS.85%29.aspx" rel="nofollow"><code>SHELLEXECUTEINFO</code></a> structure.</p> http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c/1705766#1705766 3 Answer by mghie for How should I call this native dll function from C#? mghie 2009-11-10T05:14:41Z 2009-11-10T05:14:41Z <p>The only reasonable thing that you can do is trash this function and rewrite it. There is no way this is ever going to work. <code>s</code> is a local string variable of the <code>Foo()</code> function, so the memory the string occupies will be freed when you leave <code>Foo()</code>. The pointer you return points to an invalid memory location, which by chance still contains the string data. If you use a memory manager that clears the memory when pointers to it are freed it won't even contain the data any more. If memory is reused it will contain something else, if the block containing that chunk of memory is released you will get an AV.</p> <p>There are more questions here on StackOverflow how to return character sequence data from a DLL. Either use a string type that is compatible with the way the Windows API does business, a COM string, or pass a preallocated buffer to your function and fill that with data. In the latter case you can use the same way of using your function like with every similar API function.</p> http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1694146#1694146 2 Answer by mghie for Is There A Fast GetToken Routine For Delphi? mghie 2009-11-07T19:33:25Z 2009-11-07T19:33:25Z <p>Using assembler would be a micro-optimization. There are much greater gains to be had by optimizing the algorithm. Not doing work beats doing work in the fastest possible way, every time.</p> <p>One example would be if you have places in your program where you need several tokens of the same line. Another procedure that returns an array of tokens which you can then index into should be faster than calling your function more than once, especially if you let the procedure not return all tokens, but only as many as you need.</p> <p>But in general I agree with Carl's answer (+1), using a <code>PChar</code> for scanning would probably be faster than your current code.</p> http://stackoverflow.com/questions/1686940/abort-a-thread/1687098#1687098 6 Answer by mghie for Abort a thread? mghie 2009-11-06T11:47:47Z 2009-11-06T11:47:47Z <p>There is no way to safely abort a running thread. This is true for Windows programs whether written in Delphi or not, and whether using Delphi 2010 or earlier. It's an OS limitation if you want to call it that, but actually it's a limitation of threading, as aborting a thread without making sure it is not holding locks or something like that will wreak havoc with your program.</p> <p>What you can do is to call the <a href="http://msdn.microsoft.com/en-us/library/ms686717%28VS.85%29.aspx" rel="nofollow"><code>TerminateThread()</code></a> API function, which is <em>evil</em>. Read the list of problems and warnings in this link and see whether you still want to call it. There is no other way that works without cooperation from the task code.</p> http://stackoverflow.com/questions/1686107/what-is-a-good-library-for-creating-pdfs-in-delphi-2010/1686193#1686193 3 Answer by mghie for What is a good library for creating PDFs in Delphi 2010? mghie 2009-11-06T08:27:59Z 2009-11-06T08:27:59Z <p>I have no info on another library, but thought I would add some information regarding PowerPDF and Unicode support for it:</p> <p>PowerPDF is essentially abandoned. Successor is the <a href="http://libharu.org/wiki/Main%5FPage" rel="nofollow">libharu</a> library, which has import units for Delphi (pre 2009 version) as well, with the caveat that it needs a DLL to work.</p> <p>The real problem with it is that it doesn't support Unicode. This is nothing that can be fixed in a simple way by adding type casts and changing string types - the whole library works with single byte char arrays, so the only Unicode encoding that would be "simple" to add is UTF-8, and there is AFAIK no support for it yet. So unless you are prepared to invest <em>significant</em> work into updating PowerPDF I wouldn't even start on it.</p> <p>There's another problem with Unicode in PDFs - the 14 core fonts simply don't contain all the necessary glyphs. Proper support can only be achieved with embedded fonts or TrueType fonts that need to be available on the target systems or need to be embedded as well. Note that there are limitations on TTF embedding, each font will specify whether it allows to be embedded or not. Whatever library you choose, you should be aware of this as well.</p> http://stackoverflow.com/questions/1679066/how-do-i-use-domousewheel-to-scroll-a-line-at-a-time/1679234#1679234 1 Answer by mghie for How do I use DoMouseWheel to scroll a line at a time? mghie 2009-11-05T08:59:55Z 2009-11-05T08:59:55Z <p>Just copy the code from the <code>TCustomGrid</code> class, which overrides both <code>DoMouseWheelDown()</code> and <code>DoMouseWheelUp()</code> to scroll exactly one line at a time.</p> http://stackoverflow.com/questions/1675906/proper-way-to-get-a-wxwidgets-pop-up-window-to-dismis-when-the-parent-gets-clicke/1676612#1676612 0 Answer by mghie for Proper way to get a wxWidgets pop-up window to dismis when the parent gets clicked? mghie 2009-11-04T21:03:26Z 2009-11-05T05:17:12Z <p>If you want the dialog to close when the mouse is pressed outside of its screen area you need to catch the mouse clicks. Unfortunately the parent form won't receive them, as it is disabled while a modal dialog is shown. This happens on the system level, so there won't be any mouse messages sent to disabled windows in your app (actually my first idea was to use <code>wxApp::FilterEvents()</code>, but it's useless for this purpose due to this).</p> <p>One idea would be to use the <code>CaptureMouse()</code> method, which can be used to direct all mouse events to the window having the capture, even when the mouse cursor is outside its screen area but over other windows of the application.</p> http://stackoverflow.com/questions/1662147/drawing-and-clearing-the-desktop-canvas-with-delphi/1662487#1662487 4 Answer by mghie for Drawing and clearing the desktop canvas with Delphi mghie 2009-11-02T17:07:34Z 2009-11-03T08:55:34Z <p>You don't write on what OS you have problems with the artefacts after clearing.</p> <p>At least with desktop composition activated it is a very bad idea to draw directly to the desktop and to do XOR painting (see "Drawing To and Reading From the Screen -- Baaaad!" in <a href="http://blogs.msdn.com/greg%5Fschechter/archive/2006/05/02/588934.aspx" rel="nofollow">this blog post</a>). Apart from the negative performance implications you can't be sure what other painting happens at the same time and what effects and animations alter the displayed content, so a simple XOR may not be enough to completely erase everything.</p> <p>One possible way to implement it would be a transparent overlay window of desktop size, and to draw your rubber band selector over that. Invalidating the whole window if the size changes should be enough, no need to erase the old selection line. If the overlay is removed the line will be gone too. Desktop composition will make sure that no flicker occurs. However, switching applications while selecting an area will be problematic, you need to catch this and immediately cancel the selection.</p> <p><strong>Edit:</strong></p> <p>I just tested it with Delphi 2009, and with the following test app:</p> <ul> <li>a form with <code>FormStyle</code> set to <code>fsStayOnTop</code> and with <code>AlphaBlend</code> set to <code>True</code></li> <li>with an overridden <code>CreateParams()</code> method to add the <code>WS_EX_TRANSPARENT</code> extended style flag</li> </ul> <p>I can pass all mouse clicks through to the underlying windows while being able to draw into a window on top of them. This should get you started.</p> http://stackoverflow.com/questions/1663150/does-indy-support-raw-tcp-sockets-on-windows/1665392#1665392 2 Answer by mghie for Does Indy support raw TCP sockets on Windows? mghie 2009-11-03T05:23:47Z 2009-11-03T05:23:47Z <p>As you can see from the other answers there are a lot of Delphi libraries to simplify network programming. However, AFAIK they all provide a friendlier layer over the WinSock API (on Windows, over the standard socket API on other OSs) and thus are not able to do anything that the WinSock API isn't able to do. In particular they may or may not support raw socket access, but if the OS fails to send data over the socket the libraries will only return errors as well.</p> <p>For more information about the limitations of raw sockets on most recent Windows OS versions see <a href="http://msdn.microsoft.com/en-us/library/ms740548%28VS.85%29.aspx" rel="nofollow">this MSDN page</a>, in particular the section "Limitations on Raw Sockets". It states quite clearly that</p> <blockquote> <p>To get around these issues, it may be required to write a Windows network protocol driver (device driver) for the specific network protocol.</p> </blockquote> <p>Neither of the Delphi network programming libraries comes with its own network protocol driver AFAIK. And neither will help you with permission issues on limited user accounts, or the interference of the Windows Firewall.</p> <p>As you mention <a href="http://www.winpcap.org" rel="nofollow">WinPcap</a> in your question you know it is capable of doing what you want. There are Delphi wrappers for it, like <a href="http://www.magsys.co.uk/delphi/magmonsock.asp" rel="nofollow">Magenta Systems Internet Packet Monitoring Components</a>. However, as a C++ programmer you may be better off to use the library directly from C++, as Delphi adds nothing in regard to the socket programming you want to do. In particular you won't need the extra layer to hide platform differences that some of the Delphi libraries provide, as you will be programming directly against the <em>libpcap</em> API.</p> http://stackoverflow.com/questions/1818291/is-there-any-tools-utility-to-convert-string-to-ansistring-in-pascal-source-f Comment by mghie on Is there any tools/utility to convert "string" to "AnsiString" in pascal source files? mghie 2009-11-30T07:51:28Z 2009-11-30T07:51:28Z It may be quick but it certainly wouldn't be safe. http://stackoverflow.com/questions/1813501/recursive-file-search-thread/1814650#1814650 Comment by mghie on recursive file search thread mghie 2009-11-29T08:07:21Z 2009-11-29T08:07:21Z The code in this newsletter leaves much to be desired. Loren Pechtel highlights some of the shortcomings in his answer, but the biggest blunder is to use <code>WaitFor</code> on a self-destroying thread - this is a crash waiting to happen. If you want to see a better example for file scanning in a worker thread, check out the OTL implementation here: <a href="http://17slon.com/blogs/gabr/2008/11/background-file-scanning-with.html" rel="nofollow">17slon.com/blogs/gabr/&hellip;</a> http://stackoverflow.com/questions/1813501/recursive-file-search-thread/1814317#1814317 Comment by mghie on recursive file search thread mghie 2009-11-29T08:04:24Z 2009-11-29T08:04:24Z +1, good advice. Even better would be to let the VCL thread decide how often it will update the UI. http://stackoverflow.com/questions/1782505/innoseup-no-error-reporting-on-include-scripts Comment by mghie on Innoseup - no error reporting on #include scripts? mghie 2009-11-27T22:36:45Z 2009-11-27T22:36:45Z Which version do you use? I can't reproduce this, all my tests with version 5.2.3 worked as expected. Maybe you should post some examples of what doesn't work for you. http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee/1806947#1806947 Comment by mghie on Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread? mghie 2009-11-27T22:10:35Z 2009-11-27T22:10:35Z @Allen: Thanks for the correction, I didn't have any Delphi version between 5 and 2009, so my knowledge about the details seem to be clearly outdated. I'll correct this. http://stackoverflow.com/questions/1809339/what-do-you-use-as-wpf-alternative-for-win32-delphi Comment by mghie on What do you use as WPF alternative for Win32 Delphi? mghie 2009-11-27T19:32:36Z 2009-11-27T19:32:36Z @Domus: I didn't say the situation was good. But you have to realize that MS isn't really caring for &quot;native&quot; development any more. There are ever more APIs that are not or only with difficulties accessible from native apps, and WPF seems to be one of them. http://stackoverflow.com/questions/1809339/what-do-you-use-as-wpf-alternative-for-win32-delphi Comment by mghie on What do you use as WPF alternative for Win32 Delphi? mghie 2009-11-27T16:44:29Z 2009-11-27T16:44:29Z I don't think there's going to be any third party solution for general vector-based UIs on Windows [1], it will have to come from MS, and will have to be supported by other vendors. Since MS won't do that for native code it looks like you're out of luck. [1]: And IMHO this is a good thing, for user interface consistency at least. http://stackoverflow.com/questions/1809339/what-do-you-use-as-wpf-alternative-for-win32-delphi/1809550#1809550 Comment by mghie on What do you use as WPF alternative for Win32 Delphi? mghie 2009-11-27T16:32:48Z 2009-11-27T16:32:48Z Sorry Mick, but the choice of these links show only lack of knowledge about what WPF really is. See <a href="http://en.wikipedia.org/wiki/Windows_Presentation_Foundation" rel="nofollow">en.wikipedia.org/wiki/&hellip;</a> for the main points: the separation of UI and business logic, the dynamic layout system, styles and templates, advanced text rendering, ... http://stackoverflow.com/questions/1808329/delphi-form-painting-black-flash-when-restoring/1808351#1808351 Comment by mghie on Delphi Form Painting Black Flash When Restoring mghie 2009-11-27T12:04:02Z 2009-11-27T12:04:02Z That seems to be a strange advice, given the second paragraph... http://stackoverflow.com/questions/1803426/difference-between-pansichar-and-pchar/1805287#1805287 Comment by mghie on Difference between PAnsiChar and PChar mghie 2009-11-26T19:33:56Z 2009-11-26T19:33:56Z A so called <code>ANSIChar</code> isn't necessarily an Ansi character either. It can as well be the leading or trailing byte of an MBCS character. http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1799673#1799673 Comment by mghie on How Should I Implement a Huge but Simple Indexed StringList in Delphi? mghie 2009-11-26T16:45:48Z 2009-11-26T16:45:48Z Maybe BerkleyDB didn't change that much, but I doubt the files will work without any changes in Delphi 2009 or 2010. Did you try? http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800604#1800604 Comment by mghie on How Should I Implement a Huge but Simple Indexed StringList in Delphi? mghie 2009-11-26T16:40:29Z 2009-11-26T16:40:29Z I don't think that quickly finding the data would be a problem for any database, but it's very important to cause as little I/O as possible when searching for and retrieving data. I have no experience with <code>GpStructuredStorage</code>, so I can't comment on it, but database systems make sure that indexing structures are as small as possible and in adjacent disc blocks so as to minimize hard disc seek times. Does <code>GpStructuredStorage</code> maintain folder structure information in one continuous area? Is there any technique to minimize or even prevent fragmentation caused by file modifications? http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800129#1800129 Comment by mghie on How Should I Implement a Huge but Simple Indexed StringList in Delphi? mghie 2009-11-26T12:03:04Z 2009-11-26T12:03:04Z @Marco: Thanks for the edit, I understand now where you're coming from and agree with most points. But of your 4 points about database assumptions at least the second is a clear match for this question, and the fourth doesn't matter here. The other two are of real concern, but while I think a tuned hand-written solution can easily outperform many databases it is doubtful that the development effort would be well spent, in the context of this question. After all it's probably only a part of the whole application. Effort should be spent only <i>after</i> it's clear (measured!) that's the bottleneck. http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1799673#1799673 Comment by mghie on How Should I Implement a Huge but Simple Indexed StringList in Delphi? mghie 2009-11-26T04:59:54Z 2009-11-26T04:59:54Z @Glex: One developer, no download available, and the SVN contains 2 revisions, the last one nearly 3 years old. Doesn't look that promising. http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi/1800192#1800192 Comment by mghie on How Should I Implement a Huge but Simple Indexed StringList in Delphi? mghie 2009-11-25T21:52:59Z 2009-11-25T21:52:59Z Your code is limited to 2GB files until a 64 bit Delphi becomes available.