User Mick - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:59:10Z http://stackoverflow.com/feeds/user/12458 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee 5 Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread? Mick 2009-11-27T01:03:33Z 2009-11-27T22:27:39Z <p>I have a rather simple multi-threaded VCL gui application written with Delphi 2007. I do some processing in multiple child threads (up to 16 concurrent) that need to update a grid control on my main form (simply posting strings to a grid). None of the child threads ever talk to each-other.</p> <p>My initial design involved calling <a href="http://www.eonclash.com/Tutorials/Multithreading/MartinHarvey1.1/Ch3.html#The%20Delphi%20solution%3A%20TThread.Synchronize." rel="nofollow">TThread's "Synchronize"</a> to update the grid control form within the currently running thread. However, I understand that calling Synchronize essentially executes as if it is the main thread when called. 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> <p>I've gotten it working at this point where the child thread posts a windows message (consisting of a record of several strings) and the main thread has a listener and simply updates the grid when a message is received.</p> <p>Any opinions on the best method for IPC in this situation? Window messages or 'Synchronize'?</p> <p>If I use window messages, 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> http://stackoverflow.com/questions/1770386/freeware-zip-component-for-delphi-2010/1799594#1799594 0 Answer by Mick for Freeware ZIP component for Delphi 2010? Mick 2009-11-25T20:01:27Z 2009-11-25T20:01:27Z <p>I like the WinZip compatible TZipMaster for Delphi, available here: <a href="http://www.delphizip.org/" rel="nofollow">http://www.delphizip.org/</a></p> <blockquote> <p>TZipMaster is a non-visual VCL wrapper created by ChrisVleghert and EricW.Engler for their freeware Zip and Unzip DLLs.</p> <p>Those DLLs are based on the InfoZip Official Freeware Zip/Unzip source code, but are NOT equivalent to InfoZip's DLLs. The InfoZip source code has been modified to enhance their ease-of-use, power, and flexibility for use with Delphi and C++ Builder.</p> </blockquote> <p>Also, this question has <a href="http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi">been covered before</a> on Stack Overflow, which may yield some other solutions for you.</p> http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1718398#1718398 3 Answer by Mick for How to determine Delphi Application Version Mick 2009-11-11T22:07:50Z 2009-11-25T18:34:26Z <p>Here is how I do it. I put this in almost all of my small utilities:</p> <pre><code>procedure GetBuildInfo(var V1, V2, V3, V4: word); var VerInfoSize, VerValueSize, Dummy: DWORD; VerInfo: Pointer; VerValue: PVSFixedFileInfo; begin VerInfoSize := GetFileVersionInfoSize(PChar(ParamStr(0)), Dummy); GetMem(VerInfo, VerInfoSize); try GetFileVersionInfo(PChar(ParamStr(0)), 0, VerInfoSize, VerInfo); VerQueryValue(VerInfo, '\', Pointer(VerValue), VerValueSize); with VerValue^ do begin V1 := dwFileVersionMS shr 16; V2 := dwFileVersionMS and $FFFF; V3 := dwFileVersionLS shr 16; V4 := dwFileVersionLS and $FFFF; end; finally FreeMem(VerInfo, VerInfoSize); end; end; function GetBuildInfoAsString: string; var V1, V2, V3, V4: word; begin GetBuildInfo(V1, V2, V3, V4); Result := IntToStr(V1) + '.' + IntToStr(V2) + '.' + IntToStr(V3) + '.' + IntToStr(V4); end; procedure TForm1.FormCreate(Sender: TObject); begin Form1.Caption := Form1.Caption + ' - v' + GetBuildInfoAsString; end; </code></pre> http://stackoverflow.com/questions/1662108/how-do-i-make-the-lazarus-ide-look-and-work-like-delphi-2007-or-newer 2 How do I make the Lazarus IDE look and work like Delphi 2007 or newer? Mick 2009-11-02T15:53:23Z 2009-11-03T09:31:42Z <p>I've begun working with using Lazarus to make some simple utilities for my own use on Ubuntu 9.10. I know many people like the modular Delphi 7 layout, but I hate it. I find it annoying and disruptive. I dislike using Gimp for the same reason.</p> <p>I'd also prefer to have the Delphi 2007 palette menu. Is this possible within the latest version of Lazarus (v0.9.28.x) ?</p> <p>How can I configure Lazarus to look like, or behave like, Delphi 2007/9/10?</p> http://stackoverflow.com/questions/100596/best-resources-for-converting-c-c-dll-headers-to-delphi/1657329#1657329 2 Answer by Mick for Best resources for converting C/C++ dll headers to Delphi? Mick 2009-11-01T14:38:43Z 2009-11-01T14:38:43Z <p>Over at <a href="http://rvelthuis.de/index.html" rel="nofollow">Rudy's Delphi Corner</a>, he has an <a href="http://rvelthuis.de/articles/articles-convert.html" rel="nofollow">excellent article about the pitfalls of converting C/C++ to Delphi</a>. In my opinion, this is essential information when attempting this task. Here is the description:</p> <blockquote> <p>This article is meant for everyone who needs to translate C/C++ headers to Delphi. I want to share some of the pitfalls you can encounter when converting from C or C++. This article is not a tutorial, just a discussion of frequently encountered problem cases. It is meant for the beginner as well as for the more experienced translator of C and C++.</p> </blockquote> <p>He also wrote a "<a href="http://rvelthuis.de/programs/convertpack.html" rel="nofollow">Conversion Helper Package</a>" that installs into the Delphi IDE which aids in converting C/C++ code to Delphi:</p> <p><img src="http://rvelthuis.de/images/convertpackshaded.png" alt="alt text" /></p> <p>His other relevant articles on this topic include:</p> <ul> <li><a href="http://rvelthuis.de/articles/articles-cppobjs.html" rel="nofollow">Using C++ Objects in Delphi</a></li> <li><a href="http://rvelthuis.de/articles/articles-cobjs.html" rel="nofollow">Using C object files in Delphi</a></li> </ul> http://stackoverflow.com/questions/1645080/how-do-i-create-and-add-anonymous-hashes-to-a-known-hash-during-script-execution 0 How do I create and add anonymous hashes to a known Hash during script execution? Mick 2009-10-29T16:50:43Z 2009-10-29T17:20:03Z <p>I'll attempt to illustrate this with an example. Take a common example of a Hash of Hashes:</p> <pre><code>my %HoH = ( flintstones =&gt; { lead =&gt; "fred", pal =&gt; "barney", }, jetsons =&gt; { lead =&gt; "george", wife =&gt; "jane", "his boy" =&gt; "elroy", }, simpsons =&gt; { lead =&gt; "homer", wife =&gt; "marge", kid =&gt; "bart", }, ); </code></pre> <p>For my purposes, I would like to be able to add an unnamed, or anonymous hashes to %HOH. I won't need (or be able to) define these sub-hashes until runtime. How can I accomplish this with Perl?</p> <p>Everything I've read (and I have read through Perldocs and Google'd already) seems to show examples where all sub-hahes (e.g. "flintstones", "jetsons", and "simpsons") are defined.</p> <p>What I am doing is attempting to build a parent Hash that will contain sub-hashes with rows from a CSV file:</p> <pre><code>%TopHash = ( %Line1 =&gt; { cell01 =&gt; $some_value1a; cell02 =&gt; $some_value2a; cell03 =&gt; $some_value3a; }, %Line2 =&gt; { cell01 =&gt; $some_value1b; cell02 =&gt; $some_value2b; cell03 =&gt; $some_value3b; }, %Line3 =&gt; { cell01 =&gt; $some_value1c; cell02 =&gt; $some_value2c; cell03 =&gt; $some_value3c; }, # etc # etc # etc ); </code></pre> <p><strong>The number of "%LineX" hashes that I need is not known until runtime</strong> (because they represent the number of lines in a CSV that is read at runtime).</p> <p>Any ideas? If it isn't clear already...I still am trying to wrap my head around Perl hashes.</p> http://stackoverflow.com/questions/1635947/how-to-make-sure-that-a-file-was-permanently-saved-on-usb-when-user-doesnt-use/1637333#1637333 3 Answer by Mick for How to make sure that a file was permanently saved on USB, when user doesn't use "Safely Remove Hardware"? Mick 2009-10-28T13:44:29Z 2009-10-28T13:44:29Z <p>Here's a function I used to flush data to a USB drive before ejecting it programmatically. This clones functionality from <a href="http://technet.microsoft.com/en-us/sysinternals/bb897438.aspx" rel="nofollow">Mark Russinovich's "Sync" utility</a>. I've had no problems with this code and it has been running on a lot of systems for a couple of years.</p> <p>The most relevant part of this code is the call to <a href="http://msdn.microsoft.com/en-us/library/aa364439%28VS.85%29.aspx" rel="nofollow">FlushFileBuffers</a>.</p> <pre><code>function FlushToDisk(sDriveLetter: string): boolean; var hDrive: THandle; S: string; OSFlushed: boolean; bResult: boolean; begin bResult := False; S := '\\.\' + sDriveLetter + ':'; //NOTE: this may only work for the SYSTEM user hDrive := CreateFile(PAnsiChar(S), GENERIC_READ or GENERIC_WRITE, FILE_SHARE_READ or FILE_SHARE_WRITE, nil, OPEN_EXISTING, 0, 0); OSFlushed := FlushFileBuffers(hDrive); CloseHandle(hDrive); if OSFlushed then begin bResult := True; end; Result := bResult; end; </code></pre> http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations/1561259#1561259 14 Answer by Mick for Is Installshield the only way to go for Delphi Installations? Mick 2009-10-13T16:11:02Z 2009-10-13T16:11:02Z <p>It depends, but it does not depend on the application's language (Delphi, C#, C++, C, etc).</p> <p>You need to primarily decide if you want to create <a href="http://en.wikipedia.org/wiki/Windows%5FInstaller" rel="nofollow">MSI's</a>, which is Microsoft's <em>official</em> installation format (and the one I prefer), or if you are fine with installations that are executable files (as created by <a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">InnoSetup</a> or <a href="http://nsis.sourceforge.net/Main%5FPage" rel="nofollow">NSIS</a>)</p> <p>MSI's offer many very nice features, such as integration with SMS for deployment in organizations, automated installation and removal, on the fly modification using <a href="http://www.symantec.com/connect/articles/creating-transform-mst-file-control-installation-symantec-endpoint-protection" rel="nofollow">transforms</a>, very strong prerequisite handling, "custom actions" that can be written in VBScript or C++ or Delphi. </p> <p><a href="http://stackoverflow.com/questions/367365/how-do-i-write-custom-action-dll-for-use-in-an-msi">See this guide to writing MSI custom actions using Delphi</a>.</p> <p>I can't speak to the specific features of InnoSetup or NSIS, because I create MSI's. I personally use a recent version of InstallShield, but you can also use the widely supported and actively maintained open-source <a href="http://wix.sourceforge.net/" rel="nofollow">Windows Installer XML toolkit (known as WIX)</a>. In fact, most Visual Studio users prefer WIX because it integrates well with MSBuild....as does Delphi 2007 and newer.</p> <p><a href="http://www.tramontana.co.hu/wix/" rel="nofollow">Here's a great WIX tutorial</a> if you are interested in using it to build an MSI installation package for your Delphi application.</p> <p>However, wrapping your head around MSI's can take some time. It's extremely powerful, but it takes some patience and dedication to learn it well. If you are looking for a quicker way to get moving with your software installation (and aren't familiar with Windows Installer) I'd probably select InnoSetup (used with ISTool).</p> http://stackoverflow.com/questions/1526028/how-can-i-work-with-active-directory-from-perl/1526050#1526050 4 Answer by Mick for How can I work with Active Directory from Perl? Mick 2009-10-06T14:47:55Z 2009-10-06T15:06:00Z <p>The best source of Active Directory <a href="http://techtasks.com/code/viewbook/2?lang=Perl" rel="nofollow">example code in Perl is available here</a>. It's from Robbie Allen, the co-author of O'Reilly's excellent <a href="http://oreilly.com/catalog/9780596521110" rel="nofollow">Active Directory Cookbook</a>.</p> <p><a href="http://techtasks.com/code/viewbookcode/1582" rel="nofollow">Here is an example</a> from their cookbook code:</p> <pre><code># This Perl code finds all disabled user accounts in a domain. # --------------------------------------------------------------- # Adapted from VBScript code contained in the book: # "Active Directory Cookbook" by Robbie Allen # ISBN: 0-596-00466-4 # --------------------------------------------------------------- # ------ SCRIPT CONFIGURATION ------ my $strDomainDN = "&lt;DomainDN&gt;"; # e.g. dc=rallencorp,dc=com # ------ END CONFIGURATION --------- use Win32::OLE; $Win32::OLE::Warn = 3; my $strBase = "&lt;LDAP://" . $strDomainDN . "&gt;;"; my $strFilter = "(&amp;(objectclass=user)(objectcategory=person)" . "(useraccountcontrol:1.2.840.113556.1.4.803:=2));"; my $strAttrs = "name;"; my $strScope = "subtree"; my $objConn = Win32::OLE-&gt;CreateObject("ADODB.Connection"); $objConn-&gt;{Provider} = "ADsDSOObject"; $objConn-&gt;Open; my $objRS = $objConn-&gt;Execute($strBase . $strFilter . $strAttrs . $strScope); $objRS-&gt;MoveFirst; while (not $objRS-&gt;EOF) { print $objRS-&gt;Fields(0)-&gt;Value,"\n"; $objRS-&gt;MoveNext; } </code></pre> http://stackoverflow.com/questions/1520361/open-another-user-registry-settings/1521220#1521220 5 Answer by Mick for Open another user registry settings Mick 2009-10-05T16:58:51Z 2009-10-05T17:36:57Z <p>I've done this many times. The idea is to update the currently logged on user's HKCU (that's easy enough). Then you must enumerate every profile on the system and find their ntuser.dat file (that's easy enough too).</p> <p>With the ntuser.dat file found, you load it into a temporary key in the HKLM hive (I usually use 'HKLM\TempHive'. Then edit away.</p> <p>If there is more than 1 user logged on, their profile will be loaded under HKEY_USERS, by their SID. Simply update that location.</p> <p>To modify the setting for any new users, simply modify the appropriate key under HKEY_USERS.DEFAULT, OR use the Delphi code below which will do this by loading the Default Users's HKCU registry hive (stored in ntuser.dat).</p> <p><strong>UPDATE</strong>: I found my Delphi code that demonstrates how to update the HKCU hives of users that are not logged onto the system.</p> <p>This requires Russell Libby's 'Privilege' component, <a href="http://home.roadrunner.com/~rllibby/downloads/privilege.zip" rel="nofollow">which is available here</a>.</p> <pre><code>//NOTE: sPathToUserHive is the full path to the users "ntuser.dat" file. // procedure LoadUserHive(sPathToUserHive: string); var MyReg: TRegistry; UserPriv: TUserPrivileges; begin UserPriv := TUserPrivileges.Create; try with UserPriv do begin if HoldsPrivilege(SE_BACKUP_NAME) and HoldsPrivilege(SE_RESTORE_NAME) then begin PrivilegeByName(SE_BACKUP_NAME).Enabled := True; PrivilegeByName(SE_RESTORE_NAME).Enabled := True; MyReg := TRegistry.Create; try MyReg.RootKey := HKEY_LOCAL_MACHINE; MyReg.UnLoadKey('TEMP_HIVE'); //unload hive to ensure one is not already loaded if MyReg.LoadKey('TEMP_HIVE', sPathToUserHive) then begin //ShowMessage( 'Loaded' ); MyReg.OpenKey('TEMP_HIVE', False); if MyReg.OpenKey('TEMP_HIVE\Environment', True) then begin // --- Make changes *here* --- // MyReg.WriteString('KEY_TO_WRITE', 'VALUE_TO_WRITE'); // // end; //Alright, close it up MyReg.CloseKey; MyReg.UnLoadKey('TEMP_HIVE'); //let's unload the hive since we are done with it end else begin WriteLn('Error Loading: ' + sPathToUserHive); end; finally FreeAndNil(MyReg); end; end; WriteLn('Required privilege not held'); end; finally FreeAndNil(UserPriv); end; end; </code></pre> <p>I also wrote a VBScript a while ago that accomplishes this task. I used it for modifying some Internet Explorer settings, but you can customize it to your needs. It also demonstrates the general process:</p> <pre><code>Option Explicit Dim fso Dim WshShell Dim objShell Dim RegRoot Dim strRegPathParent01 Dim strRegPathParent02 Set fso = CreateObject("Scripting.FileSystemObject") Set WshShell = CreateObject("WScript.shell") '============================================== ' Change variables here '============================================== ' 'This is where our HKCU is temporarily loaded, and where we need to write to it RegRoot = "HKLM\TEMPHIVE" ' strRegPathParent01 = "Software\Microsoft\Windows\CurrentVersion\Internet Settings" strRegPathParent02 = "Software\Microsoft\Internet Explorer\Main" ' '====================================================================== Call ChangeRegKeys() 'Sets registry keys per user Sub ChangeRegKeys 'Option Explicit On Error Resume Next Const USERPROFILE = 40 Const APPDATA = 26 Dim iResult Dim iResult1 Dim iResult2 Dim objShell Dim strUserProfile Dim objUserProfile Dim strAppDataFolder Dim strAppData Dim objDocsAndSettings Dim objUser Set objShell = CreateObject("Shell.Application") Dim sCurrentUser sCurrentUser = WshShell.ExpandEnvironmentStrings("%USERNAME%") strUserProfile = objShell.Namespace(USERPROFILE).self.path Set objUserProfile = fso.GetFolder(strUserProfile) Set objDocsAndSettings = fso.GetFolder(objUserProfile.ParentFolder) 'Update settings for the user running the script '(0 = default, 1 = disable password cache) WshShell.RegWrite "HKCU\" &amp; strRegPathParent01 &amp; "\DisablePasswordCaching", "00000001", "REG_DWORD" WshShell.RegWrite "HKCU\" &amp; strRegPathParent02 &amp; "\FormSuggest PW Ask", "no", "REG_SZ" strAppDataFolder = objShell.Namespace(APPDATA).self.path strAppData = fso.GetFolder(strAppDataFolder).Name ' Enumerate subfolders of documents and settings folder For Each objUser In objDocsAndSettings.SubFolders ' Check if application data folder exists in user subfolder If fso.FolderExists(objUser.Path &amp; "\" &amp; strAppData) Then 'WScript.Echo "AppData found for user " &amp; objUser.Name If ((objUser.Name &lt;&gt; "All Users") and _ (objUser.Name &lt;&gt; sCurrentUser) and _ (objUser.Name &lt;&gt; "LocalService") and _ (objUser.Name &lt;&gt; "NetworkService")) then 'Load user's HKCU into temp area under HKLM iResult1 = WshShell.Run("reg.exe load " &amp; RegRoot &amp; " " &amp; chr(34) &amp; objDocsAndSettings &amp; "\" &amp; objUser.Name &amp; "\NTUSER.DAT" &amp; chr(34), 0, True) If iResult1 &lt;&gt; 0 Then WScript.Echo("*** An error occurred while loading HKCU: " &amp; objUser.Name) Else WScript.Echo("HKCU loaded: " &amp; objUser.Name) End If WshShell.RegWrite RegRoot &amp; "\" &amp; strRegPathParent01 &amp; "\DisablePasswordCaching", "00000001", "REG_DWORD" WshShell.RegWrite RegRoot &amp; "\" &amp; strRegPathParent02 &amp; "\FormSuggest PW Ask", "no", "REG_SZ" iResult2 = WshShell.Run("reg.exe unload " &amp; RegRoot,0, True) 'Unload HKCU from HKLM If iResult2 &lt;&gt; 0 Then WScript.Echo("*** An error occurred while unloading HKCU: " &amp; objUser.Name &amp; vbcrlf) Else WScript.Echo(" unloaded: " &amp; objUser.Name &amp; vbcrlf) End If End If Else 'WScript.Echo "No AppData found for user " &amp; objUser.Name End If Next End Sub </code></pre> http://stackoverflow.com/questions/1501263/translating-code-from-c-to-delphi/1504096#1504096 0 Answer by Mick for Translating code from C++ to Delphi Mick 2009-10-01T13:52:14Z 2009-10-01T13:52:14Z <p>Over at <a href="http://rvelthuis.de/index.html" rel="nofollow">Rudy's Delphi Corner</a>, he has an <a href="http://rvelthuis.de/articles/articles-convert.html" rel="nofollow">excellent article about the pitfalls of converting C/C++ to Delphi</a>. In my opinion, this is essential information when attempting this task. Here is the description:</p> <blockquote> <p>This article is meant for everyone who needs to translate C/C++ headers to Delphi. I want to share some of the pitfalls you can encounter when converting from C or C++. This article is not a tutorial, just a discussion of frequently encountered problem cases. It is meant for the beginner as well as for the more experienced translator of C and C++.</p> </blockquote> <p>He also wrote a "<a href="http://rvelthuis.de/programs/convertpack.html" rel="nofollow">Conversion Helper Package</a>" that installs into the Delphi IDE which aids in converting C/C++ code to Delphi:</p> <p><img src="http://rvelthuis.de/images/convertpackshaded.png" alt="alt text" /></p> <p>His other relevant articles on this topic include:</p> <ul> <li><a href="http://rvelthuis.de/articles/articles-cppobjs.html" rel="nofollow">Using C++ Objects in Delphi</a></li> <li><a href="http://rvelthuis.de/articles/articles-cobjs.html" rel="nofollow">Using C object files in Delphi</a></li> </ul> http://stackoverflow.com/questions/1492799/how-do-i-get-tanimates-common-avis-to-work-on-vista-and-win7 2 How do I get TAnimate's Common AVIs to work on Vista and Win7? Mick 2009-09-29T14:09:40Z 2009-09-29T15:26:01Z <p>I have a Delphi 2007 application that has a TAnimate control with a FindFile Common AVI. It works perfectly when the application is run on Windows XP, but nothing ever appears on Windows 7. I've heard it now requires its own thread, but I am not certain.</p> <p>Does anyone know how to get TAnimate's Common AVI control to work on Windows 7 (or Vista)?</p> http://stackoverflow.com/questions/1487441/is-there-a-good-perl-project-plugin-for-eclipse-galileo-or-netbeans-6-7/1487912#1487912 1 Answer by Mick for Is there a good Perl project plugin for Eclipse Galileo or NetBeans 6.7? Mick 2009-09-28T16:10:38Z 2009-09-28T16:10:38Z <p>If you want an IDE with code completion, debugger integration, etc, take a close look at Komodo, from ActiveState. There are <a href="http://www.activestate.com/komodo%5Fedit/features/" rel="nofollow">free</a> and <a href="http://www.activestate.com/komodo%5Fedit/comparison/" rel="nofollow">professional editions</a>, and is available for OS X, Linux, and Windows.</p> <p>It has excellent integrated debugging capabilities, code completion, code-folding, and much much more. It is the best Perl IDE I have used, without question. The pro version is well worth the money.</p> http://stackoverflow.com/questions/1427892/system-environment-variable-created-during-install-not-available-to-current-user/1478788#1478788 0 Answer by Mick for System environment variable created during install not available to current user until reboot Mick 2009-09-25T18:07:52Z 2009-09-25T18:07:52Z <p>Are you installing via Remote Desktop? If so, ensure you are using the admin console session.</p> <p>To do so, launch Remote Desktop using:</p> <blockquote> <p>mstsc /admin</p> </blockquote> <p>Or if you are using the latest version of RDP, it is now:</p> <blockquote> <p>mstsc /console</p> </blockquote> <p>Try installing it from this session (or locally) and let me know the result.</p> http://stackoverflow.com/questions/1477500/how-do-i-get-the-output-of-an-external-command-in-perl/1477707#1477707 1 Answer by Mick for How do I get the output of an external command in Perl? Mick 2009-09-25T14:41:39Z 2009-09-25T14:41:39Z <p>To expand on Sinan's excellent answer and to more explicitly answer your question:</p> <p>NOTE: backticks `` tell Perl to execute a command and retrieve its output:</p> <pre><code>#!/usr/bin/perl -w use strict; my @output = `powercfg -l`; chomp(@output); # removes newlines my $linecounter = 0; my $combined_line; foreach my $line(@output){ print $linecounter++.")"; print $line."\n"; #prints line by line $combined_line .= $line; # build a single string with all lines # The line above is the same as writing: # $combined_line = $combined_line.$line; } print "\n"; print "This is all on one line:\n"; print "&gt;".$combined_line."&lt;"; </code></pre> <p>Your output (on my system) would be:</p> <pre><code>0) 1)Existing Power Schemes (* Active) 2)----------------------------------- 3)Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced) * 4)Power Scheme GUID: 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c (High performance) 5)Power Scheme GUID: a1841308-3541-4fab-bc81-f71556f20b4a (Power saver) This is all on one line: &gt;Existing Power Schemes (* Active)-----------------------------------Power Scheme GUID: 381b4222-f694-41f0-9685-ff5bb260df2e (Balanced) *Power Scheme GUID: 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c (High performance)Power Scheme GUID: a1841308-3541-4fab-bc81-f71556f20b4a (Power saver)&lt; </code></pre> <p>Perl makes it easy!</p> http://stackoverflow.com/questions/1448372/how-to-detect-windows-logon-event/1454834#1454834 1 Answer by Mick for How to detect Windows Logon event ? Mick 2009-09-21T14:33:33Z 2009-09-21T14:33:33Z <p>If you are developing for Windows 2000/XP you can create a Winlogon Notification Package using the JWA libraries and Delphi. They've made it extremely easy:</p> <p><a href="http://blog.delphi-jedi.net/2008/05/27/winlogon-notification-package/" rel="nofollow">http://blog.delphi-jedi.net/2008/05/27/winlogon-notification-package/</a></p> <p>This also allows you to put a form on the CTRL+ALT+DEL screen if you'd like as well. That form is running under the SYSTEM profile.</p> http://stackoverflow.com/questions/1450510/delphi-compress-all-files-but-skip-one/1451333#1451333 1 Answer by Mick for [Delphi] Compress all files but skip one Mick 2009-09-20T15:51:51Z 2009-09-20T15:51:51Z <p>How about zipping the entire directory, and then removing those files from the ZIP? Certainly not efficient, but it gets the job done.</p> <p><a href="http://www.delphizip.org/" rel="nofollow">I use TZipMaster</a>, and have done something similar with it. It's a visual component, but can also be used as a runtime component. It's open-source.</p> http://stackoverflow.com/questions/1418963/how-do-i-add-perl-scripting-support-to-a-delphi-application 1 How do I add Perl scripting support to a Delphi application? Mick 2009-09-13T22:04:04Z 2009-09-18T12:01:49Z <p><a href="http://search.cpan.org/~gmpassos/PLDelphi-0.02/PLDelphi.pm" rel="nofollow">PLDelphi is a Perl project hosted on CPAN</a>. I am currently working on a Delphi application and I am investigating the possibility of adding Perl scripting support and read about PLDelphi.</p> <p>Ideally, I'd like my application to not require Perl to be installed. PLDelphi claims to support this:</p> <blockquote> <p>To use PLDelphi from your Delphi application without need to install Perl you will need this files in the main diretory of your application:</p> <p>PLDelphi.dll - The PLDelphi library that loads the Perl interpreter. PLDelphi.pm - Perl side of PLDelphi. Perl56.dll - The Perl library in case that you have Perl built dynamic. PLDelphi_dll.pas - PLDelphi classes and DLL wrapper. lib/* - A Perl lib directory with basic .pm files (strict, warnings, etc...)</p> </blockquote> <p>I am aware of <a href="http://www.remobjects.com/ps.aspx" rel="nofollow">RemObjects PascalScript</a> and <a href="http://mmm-experts.com/products.aspx?productid=3" rel="nofollow">embedding Python in Delphi</a>, but in this instance, I am interested primarily in Perl support.</p> <p>Has anyone used PLDelphi with success? Or have you found other ways to execute Perl scripts from Delphi without the full Perl installation available locally?</p> <p>EDIT: To be more clear, I found 1 potential solution and that is using PLDelphi. However, I'd like to know if anyone has used it (last updated in 2004) before, and how well it worked.</p> <p>I'm also interested in hearing about any other options for embedding a Perl interpreter with Delphi.</p> http://stackoverflow.com/questions/1418963/how-do-i-add-perl-scripting-support-to-a-delphi-application/1444134#1444134 0 Answer by Mick for How do I add Perl scripting support to a Delphi application? Mick 2009-09-18T12:01:49Z 2009-09-18T12:01:49Z <p>I was really looking for a solution that didn't require installing anything on the client. It appears that PLDelphi is not working with ActivePerl 5.10...so I don't believe there is a ready solution to embedding Perl within a Delphi application. </p> http://stackoverflow.com/questions/662648/is-it-possible-to-remotely-assist-a-mac-os-10-3-9-system-from-windows 0 Is it possible to remotely "assist" a Mac OS 10.3.9 system from Windows? Mick 2009-03-19T15:28:55Z 2009-08-16T02:02:29Z <p>I need to assist my computer-challenged aunt with setting up a new printer to her OS 10.3.9 system. In the past, I've used TeamViewer on Windows, which is dead simple easy to use...which is what I need in this case.</p> <p>I know TeamViewer has an OS X version, but it requires at least 10.4.</p> <p>Anyone know of a VERY simple to connect remote "assist" solution that works with 10.3.9? VNC doesn't cut it for me, because it requires configuration on her end, which honestly will not be possible.</p> <p><strong>DONT CLOSE THIS QUESTION:</strong><br> This question is valid, and is <a href="http://stackoverflow.com/questions/68457/what-client-do-you-use-for-remote-desktop-vnc">similar</a> to <a href="http://stackoverflow.com/questions/551208/remote-access-windows-vista-to-mac-osx">others</a> that have been <a href="http://stackoverflow.com/questions/494554/best-remote-desktop-software-for-mac">answered</a> on SO. This question is different in that it asks for assistance on OS 10.3.9, where the other solutions are for 10.4 and up. I don't believe it should be closed.</p> http://stackoverflow.com/questions/1246500/how-do-i-control-memory-usage-with-omni-thread-librarys-thread-pool 0 How do I control memory usage with Omni Thread Library's thread pool? Mick 2009-08-07T19:15:51Z 2009-08-14T17:45:40Z <p>I've been using <a href="http://stackoverflow.com/users/4997/gabr">gabr's</a> <a href="http://code.google.com/p/omnithreadlibrary/" rel="nofollow">OmniThreadLibrary</a> to build a ThreadPool.</p> <p>I'm a novice when it comes to multi-threading, which is why I've found OTL to be so interesting.</p> <p>Following the demo application "app_11_ThreadPool.exe", I setup a thread pool in my application. The purpose of my app is to take a list of URL's, and attempt to connect to them and download any file that is automatically returned (I'm testing potential malware sites for payloads so I can block them).</p> <p>Typically I'll have a list of 500 - 1000 sites. I have a TMemo that holds the URL's on my main form. Here is my relevant code. Note that this code is executed from my "Begin" buttons click event.</p> <pre><code> iNumTasks := memoSiteList.Lines.Count - 1; GlobalOmniThreadPool.MaxQueued := 16; GlobalOmniThreadPool.MonitorWith(OmniEventMonitor1); GlobalOmniThreadPool.MaxExecuting := 16; GlobalOmniThreadPool.MaxQueued := 0; for iTask := 1 to iNumTasks + 1 do begin if iTask mod 4 = 0 then Application.ProcessMessages; CreateTask( TSiteQuery.Create( url, full_url, sProxyServer, sProxyPort, sSaveLocation, bVerboseHeaders) ).MonitorWith(OmniEventMonitor1).Schedule; end; </code></pre> <p>And here is TSiteQuery:</p> <pre><code>type TSiteQuery = class(TOmniWorker) strict private { Private declarations } FTaskID: int64; furl: string; f_full_url: string; fsProxyServer: string; fsProxyPort: string; fbVerboseHeaders: boolean; fsSaveLocation: string; private // [..] </code></pre> <p>Right now, everything works great. Running 1000 URL's increases my application's memory usage from 10mb, to ~130mb. That's not a big deal and I understand that. </p> <p>But the problem is that every single time I click "Begin", the app's memory usage increases by ~130mb. Maybe I just don't know what I'm doing, but I was under the impression that using a thread pool would mean I would not have to create <em>new</em> threads every run. </p> <p>My hope is that the previously created threads in the pool would be reused on subsequent executions. I was expecting that my app's memory usage would stay around ~130 mb whether I click "begin" 1 time or 10 subsequent times.</p> <p>Any suggestions?</p> <p>Regards</p> http://stackoverflow.com/questions/1249550/from-vb6-to-vs-2008-c-or-vb/1250081#1250081 1 Answer by Mick for From VB6 to VS 2008 (C# or VB) Mick 2009-08-08T22:53:14Z 2009-08-08T22:53:14Z <blockquote> <p>My current knowledge of .NET is very limited, what would be the fastest way to get me back on track? What language should I choose between C# and VB?</p> </blockquote> <p>Let me start by saying I like VB.NET and C#. I know them, and I use them on occasion...</p> <p>That being said, have you considered Delphi? Unlike VB.NET and C#, it compiles to native code, like C++. If you are familiar with VB 6, it will be an easy transition to Delphi.</p> <p>The creator of Delphi (Anders Hejlsberg) also created C#.</p> <p>You can use <a href="http://www.turboexplorer.com/delphi" rel="nofollow">Turbo Delphi</a> (based on Turbo Delphi 2006) for free. There are some <a href="http://delphi.about.com/od/turbodelphitutorial/a/turbo%5Ftutorial.htm" rel="nofollow">great resources</a> available online for <a href="http://www.delphibasics.co.uk/Article.asp?Name=FirstPgm" rel="nofollow">learning Delphi</a> as well.</p> <p>Many popular programs are written in Delphi, including Skype, Spybot Search and Destroy, Macromedia Homesite, Copernic Desktop Search, and others.</p> <p>If you are a looking for a programming language that is easy to use, powerful, and has a very high-quality GUI library, then Delphi should be closely considered. Delphi (and C++ Builder) both take advantage of the VCL (Visual Component Library), which is a very high-quality, constantly updated GUI toolkit.</p> <p>Give it a whirl, you won't regret it!</p> http://stackoverflow.com/questions/1183064/how-can-i-make-my-os-appear-as-if-it-is-running-virtualized 5 How can I make my OS appear as if it is running virtualized? [closed] Mick 2009-07-25T21:06:50Z 2009-07-27T13:39:03Z <p>A lot of malware these days is able to detect when it is running <a href="http://www.codeproject.com/KB/system/VmDetect.aspx" rel="nofollow">virtualized</a> under VMWare, VirtualPC, WINE, or even in a sandbox such as <a href="http://anubis.iseclab.org/" rel="nofollow">Anubis</a> or <a href="http://www.cwsandbox.org/" rel="nofollow">CWSandBox</a>.</p> <p>This essentially means that malware will often "hold back" or not function maliciously when running in a virtual environment in order to thwart analysis of its true intentions.</p> <p>My thought is then, why not make your PC appear as if it is virtualized? Does anyone know how I might be able to go about this?</p> http://stackoverflow.com/questions/1134178/how-to-execute-a-command-from-with-in-msi/1165130#1165130 0 Answer by Mick for How to execute a command from with in MSI? Mick 2009-07-22T13:05:50Z 2009-07-22T13:05:50Z <p>MSI seems like the wrong tool for the job in this instance. A big reason that MSI's are popular, is because they allow for easy install/uninstall in one package (among <em>many</em> other things).</p> <p>I'd suggest using a simple batch (or vbscript, or perl script, or whatever) wrapped up in a self-extracting executable. This way you can include custom logic, all without the overhead of the MSI. Besides, you aren't using any of the functionality of an MSI --- except that it wraps up files into a single file.</p> <p>You can use a pay program such as WinZip Self-Extractor, or you can use 7-zip (free) and a GUI app someone has written to create self-extracting EXE's: <a href="http://teejee2008.wordpress.com/7-zip-sfx-maker/" rel="nofollow">7-ZIP SFX MAKER</a></p> <p>I've used 7-zip sfx maker before, and I can vouch that it works very well.</p> http://stackoverflow.com/questions/437416/c-builder-or-visual-studio-for-native-c-development 6 C++ Builder or Visual Studio for native C++ development? Mick 2009-01-12T23:15:44Z 2009-07-06T18:56:24Z <p>I've decided I want to get more into native code development with C++. I'm trying to decide if I would be better served using CodeGear C++ Builder 2009 or Visual Studio 2008. I currently use Delphi 2007, so I'm very comfortable with C++ Builder's IDE (its the same as Delphi), as well as the VCL and RTL.</p> <p>I've never been a big fan of MFC (from the first time I played around with it in the VS 6.0 days), but haven't taken a close look at it since then.</p> <p>I'm interested in hearing from some experts that have experience with both IDE's, whether they are the most recent versions or not.</p> <p>Right now, I'm leaning towards C++ Builder because I believe the VCL is much more robust and easier to work with than MFC --- but as I said, it's been a while since I've used MFC. I'm not interested in building programs that rely on the .NET Framework because I'm partly teaching myself native development. Is MFC still king for Windows C++? Or is WTL or ATL the big thing?</p> <p>Any C++ gurus out there want to share their opinions?</p> <p><strong>EDIT</strong>: I understand MFC is not the only gui toolkit for Visual Studio. However, I'm looking for some recommendations based on GUI toolkit + IDE. For C++ Builder, there is only 1 real option, which is C++ Builder + the VCL. For VS 2008, it's VS + MFC/ATL/WTL/QT....confusing for me since I don't know much about them.</p> http://stackoverflow.com/questions/927794/how-do-i-return-all-values-from-a-stored-procedure 2 How do I return all values from a stored procedure? Mick 2009-05-29T19:45:29Z 2009-05-30T01:32:39Z <p>Forgive my naivety, but I am new to using Delphi with databases (which may seem odd to some).</p> <p>I have setup a connection to my database (MSSQL) using a TADOConnection. I am using TADOStoredProc to access my stored procedure.</p> <p>My stored procedure returns 2 columns, a column full of server names, and a 2nd column full of users on the server. It typically returns about 70 records...not a lot of data.</p> <p>How do I enumerate this stored procedure programmatically? I am able to drop a DBGrid on my form and attach it to a TDataSource (which is then attached to my ADOStoredProc) and I can verify that the data is correctly being retrieved.</p> <p>Ideally, I'd like to enumerate the returned data and move it into a TStringList.</p> <p>Currently, I am using the following code to enumerate the ADOStoredProc, but it only returns '@RETURN_VALUE':</p> <pre><code>ADOStoredProc1.Open; ADOStoredProc1.ExecProc; ADOStoredProc1.Parameters.Refresh; for i := 0 to AdoStoredProc1.Parameters.Count - 1 do begin Memo1.Lines.Add(AdoStoredProc1.Parameters.Items[i].Name); Memo1.Lines.Add(AdoStoredProc1.Parameters.Items[i].Value); end; </code></pre> http://stackoverflow.com/questions/835573/is-there-an-implementation-of-getopt-for-delphi 3 Is there an implementation of "getopt" for Delphi? Mick 2009-05-07T16:04:39Z 2009-05-08T16:24:50Z <p>It doesn't get much easier than using getopt() to parse command line parameters in C/C++.</p> <p>Is there anything similar for Delphi? Or ideally, with the same syntax? I know Delphi supports FindCmdLineSwitch and ParamStr(), but those still require some additional parsing.</p> <p>I want something that works like getopt() in C. Something that easily allows basic toggle switches, as well as capturing a value after a switch. See below for some example C code to see what I'm talking about:</p> <pre><code>void print_help() { printf("usage:\n") ; printf("\t\t-i set input file\n") ; printf("\t\t-o set output file\n") ; printf("\t\t-c set config file\n") ; printf("\t\t-h print this help information\n") ; printf("\t\t-v print version\n") ; } char* input_file = NULL ; char *query=NULL; char opt_char=0; while ((opt_char = getopt(argc, argv, "i:q:vh")) != -1) { switch(opt_char) { case 'h': print_help(); exit(-1); break; case 'v': print_version() ; exit(-1) ; break ; case 'i': input_file= optarg ; break ; case 'q': query= optarg ; break ; default: print_help(); exit(-1); break; } } </code></pre> http://stackoverflow.com/questions/353634/are-there-any-downsides-to-using-upx-to-compress-a-windows-executable 9 Are there any downsides to using UPX to compress a Windows executable? Mick 2008-12-09T17:53:39Z 2009-05-08T00:06:58Z <p>I've used <a href="http://upx.sourceforge.net/" rel="nofollow">UPX</a> before to reduce the size of my Windows executables, but I must admit that I am naive to any negative side effects this could have. What's the downside to all of this packing/unpacking?</p> <p>Are there scenarios in which anyone would recommend NOT UPX-ing an executable (e.g. when writing a DLL, Windows Service, or when targeting Vista or Win7)? I write most of my code in Delphi, but I've used UPX to compress C/C++ executables as well.</p> <p>On a side note, I'm <strong>not</strong> running UPX in some attempt to protect my exe from disassemblers, only to reduce the size of the executable and prevent cursory tampering.</p> http://stackoverflow.com/questions/823553/how-to-get-hardware-mac-address-on-windows/827864#827864 1 Answer by Mick for How to get hardware MAC address on Windows Mick 2009-05-06T03:07:58Z 2009-05-06T03:07:58Z <p><a href="http://stackoverflow.com/questions/577071/how-do-i-get-the-mac-address-of-a-network-card-using-delphi/577910#577910">Here is how to do this in Delphi</a>. You could convert this to C++ rather easily.</p> <p>Or, <a href="http://software.intel.com/en-us/articles/implementing-network-detection-for-mobility/" rel="nofollow">download and use the Intel Network Detection Library</a>. You can get the MAC address, and a whole lot more.</p> http://stackoverflow.com/questions/822066/native-c-or-net-for-business-app/823381#823381 0 Answer by Mick for Native C++ or .NET for Business App? Mick 2009-05-05T04:41:29Z 2009-05-05T04:41:29Z <p>Have you considered Delphi? You can <a href="http://www.turboexplorer.com" rel="nofollow">download Turbo Delphi</a> for free and it you can easily write code targeting Windows 2000. With Delphi, you'll get an excellent RAD (arguably better than anything you'll find in C++...unless you use C++ Builder).</p> <p>Delphi creates native code, and has no runtime requirements.</p> <p>Of course, the downside is if that you don't know Delphi (which is Object-Pascal) you have to familiarize yourself with a new language. However, if you know C++, you'll feel at home in Delphi in no time.</p> http://stackoverflow.com/questions/1809339/what-do-you-use-as-wpf-alternative-for-win32-delphi/1809550#1809550 Comment by Mick on What do you use as WPF alternative for Win32 Delphi? Mick 2009-11-27T17:58:56Z 2009-11-27T17:58:56Z Fair enough, I have mistaken WPF for a GUI toolkit. It seems to be much more. I'll update my comment. http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee/1806947#1806947 Comment by Mick on Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread? Mick 2009-11-27T14:29:01Z 2009-11-27T14:29:01Z Awesome answer! Thank you for the detailed explanation! http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801626#1801626 Comment by Mick on Should I start my new shareware project in C# or Delphi? Mick 2009-11-26T15:26:16Z 2009-11-26T15:26:16Z Microsoft backing means nothing. Just ask all those that banked on WinForms, VB6, J#, J++, etc. That's one thing about Delphi, the VCL and RTL have just gotten better over the years, and are still fully supported! http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801604#1801604 Comment by Mick on Should I start my new shareware project in C# or Delphi? Mick 2009-11-26T15:19:27Z 2009-11-26T15:19:27Z I don't agree with you. I'd go Delphi for sure. And I just learned Delphi 3 years ago (before that I was all about C#). I'm more productive in Delphi and I don't have to worry about my GUI framework being deprecated every 3 years (e.g. WinForms). http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1718398#1718398 Comment by Mick on How to determine Delphi Application Version Mick 2009-11-25T18:34:53Z 2009-11-25T18:34:53Z I just added the try...finally. http://stackoverflow.com/questions/1766527/how-can-activate-a-glass-effect-windows-vista-7-in-a-console-application-using/1766561#1766561 Comment by Mick on How can activate a glass effect (windows Vista/7) in a console application using Delphi Mick 2009-11-19T22:11:53Z 2009-11-19T22:11:53Z That is very cool! http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe/1762885#1762885 Comment by Mick on Use SSL with Delphi yet still having a single exe Mick 2009-11-19T15:21:24Z 2009-11-19T15:21:24Z Maybe he used to be a COBOL programmer and caps make him feel more at home... http://stackoverflow.com/questions/1662108/how-do-i-make-the-lazarus-ide-look-and-work-like-delphi-2007-or-newer Comment by Mick on How do I make the Lazarus IDE look and work like Delphi 2007 or newer? Mick 2009-11-16T17:10:36Z 2009-11-16T17:10:36Z I did find this add-on component which combines the Messages window with the source editor: <a href="http://wiki.lazarus.freepascal.org/Manual_Docker" rel="nofollow">wiki.lazarus.freepascal.org/Manual_Docker</a> http://stackoverflow.com/questions/1662108/how-do-i-make-the-lazarus-ide-look-and-work-like-delphi-2007-or-newer/1663258#1663258 Comment by Mick on How do I make the Lazarus IDE look and work like Delphi 2007 or newer? Mick 2009-11-03T02:59:49Z 2009-11-03T02:59:49Z Ah, so now I have 2 problems... http://stackoverflow.com/questions/1645080/how-do-i-create-and-add-anonymous-hashes-to-a-known-hash-during-script-execution Comment by Mick on How do I create and add anonymous hashes to a known Hash during script execution? Mick 2009-10-29T17:33:02Z 2009-10-29T17:33:02Z My end goal is to get a list of rows with unique data (as determined by a combination of 3 cells in a row); however, I need all the cells of the unique rows. Maybe an array of hashes would be better suited for this task? http://stackoverflow.com/questions/1645080/how-do-i-create-and-add-anonymous-hashes-to-a-known-hash-during-script-execution/1645129#1645129 Comment by Mick on How do I create and add anonymous hashes to a known Hash during script execution? Mick 2009-10-29T16:59:08Z 2009-10-29T16:59:08Z My problem is that I don't know how many %lineHash I need, because it is tied to the number of lines in a CSV read at runtime. http://stackoverflow.com/questions/1633646/what-is-a-good-multithreading-book-for-delphi/1633722#1633722 Comment by Mick on What is a good multithreading book for Delphi? Mick 2009-10-27T21:40:25Z 2009-10-27T21:40:25Z Great reference book! I'd love to see someone release an updated version of this book. http://stackoverflow.com/questions/1629303/program-both-as-console-and-gui/1629451#1629451 Comment by Mick on Program both as Console and GUI Mick 2009-10-27T14:11:10Z 2009-10-27T14:11:10Z The short answer (from this link) is that: &quot;You can't, but you can try to fake it.&quot; http://stackoverflow.com/questions/1427892/system-environment-variable-created-during-install-not-available-to-current-user/1478788#1478788 Comment by Mick on System environment variable created during install not available to current user until reboot Mick 2009-10-26T22:21:53Z 2009-10-26T22:21:53Z Glad to hear that it is working. http://stackoverflow.com/questions/1520361/open-another-user-registry-settings/1521220#1521220 Comment by Mick on Open another user registry settings Mick 2009-10-19T18:26:43Z 2009-10-19T18:26:43Z Please post the exact error message. In Vista (and 7), ensure that this code is running under an Administrative account.