User jamiei - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:25:41Z http://stackoverflow.com/feeds/user/2447 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1747928/how-to-instantiate-a-com-object-using-interop-in-delphi-prism/1748475#1748475 3 Answer by jamiei for How to instantiate a COM object using interop in Delphi Prism jamiei 2009-11-17T12:17:55Z 2009-11-17T12:17:55Z <p>You can attempt to instantiate your COM object by using the <a href="http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx" rel="nofollow">CreateInstance</a> method in the System.<a href="http://msdn.microsoft.com/en-us/library/b4wc81dc.aspx" rel="nofollow">Activator</a> class. The equivalent code might look like this:</p> <pre><code>var FModel: MarketBuilderLib.MarketBuilderModel; begin FModel := (MarketBuilderLib.MarketBuilderModel)Activator.CreateInstance(GetTypeFromProgID("{PROG ID}")); end; </code></pre> <p>Note that you will need to get the type from <a href="http://msdn.microsoft.com/en-us/library/system.type.gettypefromprogid.aspx" rel="nofollow">GetTypeFromProgID</a> using the Program Identifier otherwise you will generate an <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.invalidcomobjectexception.aspx" rel="nofollow">InvalidComObjectException</a>.</p> http://stackoverflow.com/questions/1701900/how-set-dynamic-array-size-in-delphi-prism-setlength-doesnt-work/1702464#1702464 1 Answer by jamiei for How set dynamic array size in Delphi Prism (SetLength doesn't work) jamiei 2009-11-09T17:22:32Z 2009-11-09T17:29:02Z <p>[edit updated] You can use the <a href="http://msdn.microsoft.com/en-us/library/bb348051.aspx" rel="nofollow">Array.Resize</a> method which seems to apply only to .NET Framework 3.5 applications. The equivalent C# code looks like this:</p> <pre><code> // Create and initialize a new string array. String[] myArr = {"The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"}; // Display the values of the array. Console.WriteLine( "The string array initially contains the following values:"); PrintIndexAndValues(myArr); // Resize the array to a bigger size (five elements larger). Array.Resize(ref myArr, myArr.Length + 5); </code></pre> <p>However if you are targeting earlier versions of the .NET Framework or require very frequent resize changes to the list then I would recommend that you use the .NET <a href="http://msdn.microsoft.com/en-us/library/system.collections.arraylist%28VS.71%29.aspx" rel="nofollow">ArrayList</a> or another of the <a href="http://msdn.microsoft.com/en-us/library/system.collections%28VS.71%29.aspx" rel="nofollow">System.Collections</a> in .NET which may well make your code considerably simpler and allow you to use new features of the Framework such as Linq.</p> http://stackoverflow.com/questions/1660698/delphi-how-to-use-tobjectlistt/1660985#1660985 0 Answer by jamiei for Delphi: how to use TObjectList<T>? jamiei 2009-11-02T12:20:24Z 2009-11-02T12:27:48Z <p>The Official Embarcadero documentation Wiki on the <a href="http://docwiki.embarcadero.com/VCL/en/Generics.Collections.TObjectList" rel="nofollow">Generics.Collections.TObjectList</a> contains a simple code example of the <a href="http://docwiki.embarcadero.com/CodeSamples/en/Generics%5FCollections%5FTObjectList%5F%28Delphi%29" rel="nofollow">TObjectList in action</a>.</p> <p>I'm not certain exactly what the question is driving at but to address the broad use of a TObjectList, the example initialisation code for a TObjectList might look like this: </p> <pre><code>var List: TObjectList&lt;TNewObject&gt;; Obj: TNewObject; begin { Create a new List. } List := TObjectList&lt;TNewObject&gt;.Create(); { Add some items to the List. } List.Add(TNewObject.Create('One')); List.Add(TNewObject.Create('Two')); { Add a new item, but keep the reference. } Obj := TNewObject.Create('Three'); List.Add(Obj); </code></pre> <p>The <a href="http://docwiki.embarcadero.com/CodeSamples/en/Generics%5FCollections%5FTObjectList%5F%28Delphi%29" rel="nofollow">example code</a> should give you an idea of what the TObjectList can do but If I've understood the question correctly it seems that you would like to be able to add more than one class type to a single instance of the <a href="http://docwiki.embarcadero.com/VCL/en/Generics.Collections.TObjectList" rel="nofollow">TObjectList</a>? A TObjectList can only be initiated with a single type so it might be better if you initiated the TObjectList with a Interface or Abstract class that is shared by all of the classes you wish to add to it. </p> <p>One important difference when using a <a href="http://docwiki.embarcadero.com/VCL/en/Generics.Collections.TObjectList" rel="nofollow">TObjectList</a> compared to creating your own is the existance of the <a href="http://docwiki.embarcadero.com/VCL/en/Generics.Collections.TObjectList.OwnsObjects" rel="nofollow">OwnsObjects</a> property which tells the <a href="http://docwiki.embarcadero.com/VCL/en/Generics.Collections.TObjectList" rel="nofollow">TObjectList</a> whether it owns the objects you add to it and therefore consequently whether it should manage freeing them itself.</p> http://stackoverflow.com/questions/819544/are-there-any-caching-frameworks-for-delphi 3 Are there any Caching Frameworks for Delphi? jamiei 2009-05-04T10:07:07Z 2009-10-29T20:11:11Z <p><strong>Question:</strong> What Caching Frameworks available for Delphi and how well developed are they? If there aren't any then is there a widely-accepted way of achieving the same objective? <em>Applicable to Win32 targeting versions of Delphi.</em></p> <p><strong>Question Detail:</strong> The type of framework that I'm enquiring about exists largely in Web Development frameworks allowing the user to:</p> <ul> <li>Check the Cache for previously stored Data/Object</li> <li>Retrieve the Data/Object</li> <li>Store the new Data/Object</li> <li>Optionally tag the Data/Object and label it.</li> <li>Expire Data/Objects based on some criteria (labels, tags, time limits etc). </li> </ul> <p>I understand that a lack of reflection services for Delphi Objects without RTTI means that they probably won't exist in quite the same way but is there a similar way of achieving at least part of same end result in a more Delphi way? </p> <p><strong>Alternative Approach:</strong> As an alternative to a native Delphi library: Is there for example a good set of bindings for memcached or something similar?</p> http://stackoverflow.com/questions/1570731/delphi-and-xquery-xpath-2-0/1570844#1570844 4 Answer by jamiei for Delphi and XQuery/XPath 2.0? jamiei 2009-10-15T07:42:23Z 2009-10-26T09:23:08Z <p><strong>My Favourite:</strong> I've always found that importing <a href="http://msdn.microsoft.com/en-us/library/ms760399%28VS.85%29.aspx" rel="nofollow">MSXML</a> provides excellent support for all the XPath queries I've ever needed it for. </p> <p><strong>Close second:</strong> I'm not aware of any native delphi libraries that can match MSXML's depth of features however <a href="http://www.omnixml.com/" rel="nofollow">OmniXML</a> provides great support for basic XPath queries and if you're not using expressions, for example, then it's a pretty good alternative. </p> <p>Sadly, I do not think that there are currently any native Delphi XML Libraries that fully support XPath 2.0.</p> http://stackoverflow.com/questions/1593839/vsto-programmatically-adding-a-new-worksheet-based-on-an-existing-one 1 VSTO Programmatically adding a new worksheet based on an existing one. jamiei 2009-10-20T11:01:58Z 2009-10-26T09:17:46Z <p>Hi All, </p> <p>I currently have a <a href="http://msdn.microsoft.com/en-us/library/zcfbd2sk.aspx" rel="nofollow">C# Workbook-level Office 2007 Addin</a> that has a <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.worksheet%28VS.80%29.aspx" rel="nofollow">Worksheet</a> added at design-time where I have added methods and properties to the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.worksheet%28VS.80%29.aspx" rel="nofollow">Worksheet</a> derived class.</p> <p>I want to be able to programatically make a new worksheet that <strong>clones</strong>, <strong>inherits</strong> or otherwise possesses the methods and event handlers of this <strong>existing Worksheet class</strong> automatically.</p> <p>If this can be achieved then please could someone outline how this could be achieved? C# demo code would be preferably although any .NET code would be acceptable.</p> <p>Thank-you for your time.</p> http://stackoverflow.com/questions/1593839/vsto-programmatically-adding-a-new-worksheet-based-on-an-existing-one/1623835#1623835 0 Answer by jamiei for VSTO Programmatically adding a new worksheet based on an existing one. jamiei 2009-10-26T09:17:46Z 2009-10-26T09:17:46Z <p>I've now come to the conclusion that it's not actually feasible to duplicate these classes in their existing state as I was looking for. </p> <p>According to the <a href="http://msdn.microsoft.com/en-us/library/9z4e3456.aspx" rel="nofollow">Host Items and Host Controls Overview</a>: in Document Level Addins, Host Items cannot be created programmatically but only at design time. This is reinforced in the further <a href="http://msdn.microsoft.com/en-us/library/ms178779.aspx" rel="nofollow">explanation of the programmatic limitations</a> of Host items and host controls, particularly for document level addins.</p> http://stackoverflow.com/questions/1610009/re-signing-app-during-install-vsto/1612748#1612748 1 Answer by jamiei for Re-signing app during install vsto jamiei 2009-10-23T11:09:13Z 2009-10-23T11:09:13Z <p>It sounds like you're embedding Application Configuration settings somewhere that they shouldn't be. </p> <p>The solution is to move these configuration settings to an external configuration file and load your settings dynamically at runtime. An external configuration file will not form part of the signed assembly and therefore won't ruin your signed distribution.</p> <p>It is worth noting that the .NET <em>System.Configuration</em> classes <strong>do not work very well with assemblies</strong> and especially badly for VSTO assemblies (see multiple problems reported here on SO: <a href="http://stackoverflow.com/questions/594298/c-dll-config-file">594298</a>). As such I would recommend that you would either roll your own configuration class or read up heavily on the <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.openmappedexeconfiguration.aspx" rel="nofollow">ConfigurationManager.OpenMapperExeConfiguration</a> method to override the configuration file being targeted.</p> <p>Additionally If you're currently using ClickOnce then this project sounds like it would be better suited to deployment via a <a href="http://www.codersource.net/csharp%5Finstaller%5Fprojects.html" rel="nofollow">Windows Installer Package</a>.</p> http://stackoverflow.com/questions/383195/handling-a-unicode-string-in-delphi-versions-2007 3 Handling a Unicode String in Delphi Versions <= 2007 jamiei 2008-12-20T10:55:10Z 2009-10-15T11:10:18Z <p><strong>Background:</strong> This question relates to versions of Delphi below 2009 (ie without Unicode support built in). I have a specification that requires me to transmit a Unicode encoded string over a TCP connection but I do not have Delphi 2009. </p> <p><strong>Question</strong> Is there a single function or very small library (I don't need too much bulk) that I can use to encode a single string into UTF-8 immediately prior sending over the wire? As a second part of my question: if there are UTF-8 encoded strings being sent back as a response, I guess I would then need another function to get it back into a Delphi string format. I understand the limitations of such Unicode support in this way.</p> http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list 5 Most succinct way to convert ListBox.items to a generic list jamiei 2009-10-14T10:35:50Z 2009-10-14T10:55:37Z <p>I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.aspx" rel="nofollow">ListBox</a> to a <code>List&lt;String&gt;</code> (Generic <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">List</a>).</p> <p>At the moment I have something similar to the below code: </p> <pre><code> List&lt;String&gt; myOtherList = new List&lt;String&gt;(); // Populate our colCriteria with the selected columns. foreach (String strCol in lbMyListBox.Items) { myOtherList.Add(strCol); } </code></pre> <p>Which works, of course, but I can't help but get the feeling that there must be a better way of doing this with some of the newer language features. I was thinking of something like the <a href="http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx" rel="nofollow">List.ConvertAll</a> method but this only applies to Generic Lists and not <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.objectcollection.aspx" rel="nofollow">ListBox.ObjectCollection</a> collections.</p> http://stackoverflow.com/questions/1513282/how-to-install-twebbrowser-in-delphi-2010/1513329#1513329 6 Answer by jamiei for How to install TWebBrowser in Delphi 2010 jamiei 2009-10-03T09:33:30Z 2009-10-03T09:33:30Z <p>You can also import TWebBrowser as an ActiveX control directly:</p> <ol> <li>Goto the "<em>Component</em>" Menu with Delphi and select "<em>Import Component</em>" </li> <li>Select "<em>Import ActiveX Control</em>" from the resulting Dialog </li> <li>Use the search filter to find the "<em>Microsoft Internet Controls</em>" and press next</li> <li>Choose which palette you would like them to be placed in.</li> </ol> <p>You can then choose where you'd like the imported package to be placed and after you select the Install (and not create unit) option then you'll be ready to use it.</p> http://stackoverflow.com/questions/1498624/can-i-use-token-based-authentication-with-active-directory/1502539#1502539 2 Answer by jamiei for Can I use token based authentication with active directory? jamiei 2009-10-01T08:05:51Z 2009-10-01T08:05:51Z <p>If I've understood the question correctly then it looks as if Kerberos might be exactly what you are looking for in this instance. Kerberos Authentication (if supported by your target environment) would allow this manner of ticketed authentication. For a broad overview of how <strong>Brokered authentication</strong> with Kerberos works I would recommend the MSDN reference on <a href="http://msdn.microsoft.com/en-us/library/aa480562.aspx" rel="nofollow">Brokered Authentication with Kerberos</a>: </p> <p><img src="http://i.msdn.microsoft.com/Aa480562.ch1%5Fbrokauthkerb%5Ff02%28en-us,MSDN.10%29.gif" alt="Brokered authentication with Kerberos" /></p> <p>As for the C# code supporting this, I would recommend this <a href="http://www.codeproject.com/KB/cpp/SecurityTokens.aspx" rel="nofollow">CodeProject article</a> which is focuses on MS Web Services but might provide the basis for using it in other scenarios.</p> http://stackoverflow.com/questions/1494037/static-classes-in-delphi-win32/1494224#1494224 2 Answer by jamiei for Static classes in Delphi (Win32) jamiei 2009-09-29T18:39:36Z 2009-09-29T18:39:36Z <p>Not natively.</p> <p>Depending on what you need it for, if for the purposes of your code, in some use cases you could replace it with a <strong>Singleton</strong> Pattern object. </p> <p>For walkthrough on implementing this I'd recommend <a href="http://www.castle-cadenza.demon.co.uk/single.htm" rel="nofollow">this guide</a> which, covers almost any version of delphi, but if you're using Delphi 2010 you could also use the new <a href="http://blogs.embarcadero.com/abauer/2009/09/03/38898" rel="nofollow">class Constructors/Destructors</a> for improved results.</p> http://stackoverflow.com/questions/1372073/single-user-source-control/1372727#1372727 8 Answer by jamiei for Single-user source control? jamiei 2009-09-03T10:53:33Z 2009-09-03T13:18:31Z <p>I would recommend <a href="http://git-scm.com/" rel="nofollow">Git</a> which is free &amp; open source and:</p> <ul> <li>Doesn't require you to even set a central server even if you want add more developers or machines.</li> <li>Is Extremely Fast (imo)</li> <li>Encourages the use of branches</li> </ul> <p>I use it for almost every new project, even when it's just me on the project. It's an extremely fast distributed version control system and was written by Linus Torvalds and is now used in high profile projects like the <a href="http://git.kernel.org/" rel="nofollow">Linux Kernel</a> and <a href="http://weblog.rubyonrails.org/2008/4/2/rails-is-moving-from-svn-to-git" rel="nofollow">Ruby on Rails</a>.</p> <p>Git isn't hard to use from the Command line but also has it's own "Tortoise" package (<a href="http://code.google.com/p/tortoisegit/" rel="nofollow">TortoiseGit</a> - albeit not as polished as it's SVN cousin).</p> http://stackoverflow.com/questions/1253541/any-known-delphi-issues-to-test-for-windows-7-compatibility/1257795#1257795 1 Answer by jamiei for any known delphi issues to test for Windows 7 compatibility jamiei 2009-08-10T23:28:11Z 2009-08-10T23:28:11Z <p>The short answer seems to be that most applications that run without major problems on Windows Vista will work on Windows 7. There is some good general Win 7 App Compatibility advice <a href="http://pcquest.ciol.com/content/Developer/2009/109080101.asp" rel="nofollow">on the CIOL network</a> which you most need to be aware of if you're moving from Windows XP to Windows Vista but the general summary is: </p> <ul> <li><strong>Do not assume a folder location on Windows</strong> - <em>Folders such as Program Files, My Music etc can change paths between versions of Windows. The My Documents folder for example has changed location in every version of Windows from XP onwards.</em></li> <li><strong>Use the correct APIs when saving information to the registry or folders</strong> - <em>You may fall afoul of Windows UAC if you do not use the "official" API. Vista and Windows 7 are far less forgiving than XP when it comes to saving application data depending upon the context of it (current user, all users, application data etc).</em></li> <li><strong>Abide by the principles of UAC</strong> - <em>The Windows UAC feature has been toned down since Windows Vista for Windows 7 but you should still write your application according to the guidance given such as designing and testing it to run without admin rights unless absolutely necessary.</em></li> </ul> <p>In addition to these hints: given your application's use of the SysTray and you may wish to check out the alpha of the <a href="http://www.gumpi.com/Blog/2009/01/20/Alpha1OfWindows7ControlsForDelphi.aspx" rel="nofollow">"Windows 7 Controls for Delphi" from Daniel Wischnewski</a>. He has also written <a href="http://www.gumpi.com/Blog/2009/01/24/Windows7DisplayingYourApplicationsStatusInTheWindowsTaskbar.aspx" rel="nofollow">1</a> or <a href="http://www.gumpi.com/Blog/2009/01/21/Windows7DisplayingProgressOfATaskInTheWindowsTaskbar.aspx" rel="nofollow">2</a> posts demonstrating their use which give you a feel for some of the new visual differences in this particular area. There have also been a few Windows 7 / 64 Bit <a href="http://www.monien.net/blog/index.php/2009/07/delphi-2009-windows-7-64-bit-debugger-crash-workaround/" rel="nofollow">Specific errors</a> reported for Delphi 2009 which you might encounter during development and testing of your app.</p> http://stackoverflow.com/questions/554142/indy-10-idtcpclient-reading-data-using-a-separate-thread 3 Indy 10 IdTCPClient Reading Data using a separate thread? jamiei 2009-02-16T18:41:17Z 2009-07-20T08:28:45Z <p>Hi All,</p> <p><strong>Question:</strong> What I'm looking for is the <em>most typical or best practice</em> way to use a separate thread to receive data using an IdTCPClient in Indy 10. </p> <p><strong>Background:</strong> The below code is a sample of what I'm trying to do with the actual data processing parts removed for clarity. The Idea of the Thread is to receive all data (Variable size with a header declaring the rest of the message length) and to then to parse it (That's what the HandleData procedure does) and trigger an Event Handler depending on the command. </p> <p>The TIdIOHandlerSocket is passed to the thread by the main application which also Writes data to the socket as and when it is required.</p> <pre><code>TScktReceiveThread = class(TThread) private { Private declarations } procedure HandleData; protected procedure Execute; override; public FSocket: TIdIOHandlerSocket; constructor Create(CreateSuspended: boolean); end; procedure TScktReceiveThread.Execute; var FixedHeader: TBytes; begin Assert(FSocket &lt;&gt; nil, 'You must assign the connected socket to the receiving thread'); SetLength(FixedHeader, 2); while not Terminated do begin if not FSocket.Connected then Suspend else begin FSocket.CheckForDataOnSource(10); if not FSocket.InputBufferIsEmpty then begin FSocket.ReadBytes(FixedHeader, SizeOf(FixedHeader), false); // Removed the rest of the reading and parsing code for clarity Synchronize(HandleData); end; end; end; end; </code></pre> <p>As a prefix, I have used another StackOverflow question which deals with the server components of Indy: "<a href="http://stackoverflow.com/questions/544204/delphi-2009-indy-10-tidtcpserver-onexecute-how-to-grab-all-the-bytes-in-the-in">Delphi 2009, Indy 10, TIdTCPServer.OnExecute, how to grab all the bytes in the InputBuffer</a>" to get the basis of what I have so far.</p> <p>Thanks for any help!</p> http://stackoverflow.com/questions/984900/are-specific-programming-language-skills-and-experience-important-in-a-job-candid/985687#985687 1 Answer by jamiei for Are specific programming language skills and experience important in a job candidate? jamiei 2009-06-12T08:55:47Z 2009-06-12T10:37:26Z <p>I would think that a team would need both Generalists and Specialists but not in equal measures so which one you pick depends on what the current balance of Generalists to Specialists in that particular team is.</p> <p><strong>A Specialist</strong> will be able to drop straight into your codebase with less mentoring and teaching required, this makes him/her an excellent ROI hire because they are immediately productive. </p> <p><strong>A Generalist</strong> might require a little bit more coaching but is likely to have a much better all round experience and may be able to bring in a different perspective on a problem as a result of his experience in other languages/environments which those programmers who have only used your primary language may miss.</p> <p>As with any team you need a mix of different personalities to get the best out of the people involved. However you don't want to be training every single new-hire on a new language as this takes time away from other developers who could be being productive otherwise so I think it is very important to have both Generalists and Specialists but in the right proportion.</p> <p>There is probably a most-efficient proportion to be found but as a guess, it could be, for example, that hiring 70% Specialists and 30% Generalists would give you enough outside experience to be beneficial but without spending too much time training the Generalists up.</p> http://stackoverflow.com/questions/949385/delphi-prism-cirrus-accessing-and-setting-the-result-of-a-function 2 Delphi Prism Cirrus accessing and setting the Result of a function jamiei 2009-06-04T09:04:15Z 2009-06-05T04:49:23Z <p><strong>Background</strong></p> <p>This question relates to the new <a href="http://prismwiki.codegear.com/en/Cirrus" rel="nofollow">Cirrus</a> infrastructure for Aspect Oriented Programming in Delphi Prism.</p> <p>I currently have an aspect which I am Auto-Injecting into a class and am attempting to modify the target code using <em>aMethod.SetBody</em> function. I have structured my code thus far using the Logging example code found on the <a href="http://prismwiki.codegear.com/en/Cirrus%5FIntroduction" rel="nofollow">Cirrus Introduction</a> documentation wiki as a basis.</p> <p><strong>Question</strong></p> <p>How can I access the Result of the function being injected into, both with and without the original function body being executed?</p> <p>I would like to be able to set the result of the function bypassing the call to OriginalBody in one code path and as the other code path to call the OriginalBody and use the subsequent Result of the OriginalBody in my Aspect code. I originally thought that this might be the intended purpose of the <a href="http://prismwiki.codegear.com/en/Cirrus%5FOverview" rel="nofollow">Aspects.RequireResult</a> method but this appears to force execution of the OriginalBody in my case, causing code duplication.</p> http://stackoverflow.com/questions/820018/delphi-d2009-for-win32-and-the-codedom/820325#820325 2 Answer by jamiei for Delphi D2009 for Win32 and the CodeDom jamiei 2009-05-04T14:20:57Z 2009-05-04T14:20:57Z <p>In short: No, the .NET CodeDom relies upon code being compiled into <a href="http://en.wikipedia.org/wiki/Common%5FIntermediate%5FLanguage" rel="nofollow">CIL</a> and .NET ByteCode and will not work for Win32 Compiled Delphi Programs.</p> http://stackoverflow.com/questions/613166/enumerating-a-list-of-systems-com-ports-in-delphi 0 Enumerating a List of systems Com Ports in Delphi jamiei 2009-03-05T00:41:59Z 2009-03-05T18:57:46Z <p><strong>Objective:</strong> I would like to be able to list the available COM Ports on a system in Delphi.</p> <p><strong>Homework:</strong> I have read <a href="http://stackoverflow.com/questions/374200/finding-available-lpt-parallel-ports-and-addresses-in-delphi">this</a> SO thread on enumerating the LPT ports of a system using the registry. I have also found that the COM ports are listed in the registry at <code>HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM</code> but found unanswered gesticulation in the <a href="http://forums.devshed.com/delphi-programming-90/list-of-com-ports-on-machine-510990.html" rel="nofollow">same thread</a> that this might not be reliable on different machines and different versions of windows.</p> <p>I also found articles referencing the use of QueryDosDevice() but upon trying <a href="http://delphi.about.com/cs/adptips2001/a/bltip0501%5F2.htm" rel="nofollow">this sample code</a>, I found that it did not appear to list any COM ports at all.</p> <p><strong>Question:</strong> What is the most reliable way (across unknown Windows Versions) to list the COM ports on a Windows Machine? </p> http://stackoverflow.com/questions/610080/using-gethashcode-to-secure-users-passwords/610104#610104 0 Answer by jamiei for Using GetHashCode to "secure" users passwords jamiei 2009-03-04T10:59:13Z 2009-03-04T10:59:13Z <p>GetHashCode was definitely not designed to be used in this way as the implementation does not guarantee different hash returns for different objects. This means that potentially multiple passwords could produce the same hash. It also isn't guaranteed to return the same hash value on different versions of the .NET framework meaning that an upgrade could potentially produce a different hash for the same string, rendering your passwords unusable to you.</p> <p>It is recommended that you use a salted hash or even MD5 at a push. You can easily switch it to something within the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.aspx" rel="nofollow">Security.Cryptography</a> namespace.</p> http://stackoverflow.com/questions/558686/use-googlemap-from-my-delphi-application/559398#559398 1 Answer by jamiei for Use Googlemap from my Delphi application ? jamiei 2009-02-18T00:49:18Z 2009-02-18T00:49:18Z <p>Work on <a href="http://delphi.mozdev.org/" rel="nofollow">Embedding Mozilla within Delphi</a> appears to have stalled some years ago but there is a still an article from <a href="http://www.paranoia.clara.net/articles/taming_the_lizard_with_delphi.html" rel="nofollow">Irongut</a> on embedding it. It was never a fully satisfactory solution as I understand it because it required a hefty additional distribution of Mozilla files (even if the user already had Mozilla/FF installed).</p> <p>As Gamecat suggested, Google Earth can achieve some nice results. I found a simple sample project of Embedding Google Earth within a Delphi Application on a the "<a href="http://www.googleearthairlines.com/demo/DelphiDEmoGePlugin.rar" rel="nofollow">Google Earth Airlines site</a>". This might be enough to show you whether this solution might fit your needs.</p> http://stackoverflow.com/questions/453657/development-of-mysql-pas-wrapper-for-delphi 1 Development of MySQL.pas wrapper for Delphi jamiei 2009-01-17T17:34:43Z 2009-01-17T23:50:41Z <p><strong>Background:</strong> I want to use the Delphi translation of mysql.c in a project but the original maintainer Matthias Fichtner (<a href="http://www.fichtner.net/delphi/mysql/" rel="nofollow">http://www.fichtner.net/delphi/mysql/</a>) appears to have taken it down.</p> <p><strong>Question:</strong> Does anyone know of a similar wrapper (or an updated version of Matthias Fichtner's wrapper) around <em>libmySQL.dll</em> that is similar in lightweight nature?</p> http://stackoverflow.com/questions/354563/what-would-be-a-good-delphi-lexer-parser-for-javascript-language-file 4 What would be a good Delphi lexer/parser for Javascript language file? jamiei 2008-12-09T23:01:09Z 2008-12-11T11:42:56Z <p><em>Background</em></p> <p>I want to be able to parse Javascript source in a Delphi Application. I need to be able to identify variables and functions within the source for the purpose of making changes to the code through later code. I understand that I probably need to use a lexer for this purpose but have not had much luck using the lexer which I found (<a href="http://www.grendelproject.nl/dyacclex/" rel="nofollow">Dyaclexx</a>).</p> <p><em>Question</em></p> <p>Is there a suitable freeware or open source delphi parser/lexer which already has token sets for Javascript or could be easily modified for this purpose without too much trouble? </p> <p>If there isn't such a tool already available then what would be the best way to learn about writing your own lexer for this purpose?</p> <p>Thank-you</p> http://stackoverflow.com/questions/1745772/hidden-features-of-delphi-prism Comment by jamiei on Hidden Features of Delphi prism jamiei 2009-11-17T12:41:53Z 2009-11-17T12:41:53Z Imo, this should be a community wiki as there isn't one definitive answer. http://stackoverflow.com/questions/1701900/how-set-dynamic-array-size-in-delphi-prism-setlength-doesnt-work/1702007#1702007 Comment by jamiei on How set dynamic array size in Delphi Prism (SetLength doesn't work) jamiei 2009-11-09T17:33:18Z 2009-11-09T17:33:18Z Yes, but only with .NET 3.5 - The Collections are the preferred way to do Arrays now Rob. :) http://stackoverflow.com/questions/1660698/delphi-how-to-use-tobjectlistt/1660985#1660985 Comment by jamiei on Delphi: how to use TObjectList<T>? jamiei 2009-11-02T13:52:46Z 2009-11-02T13:52:46Z Ah, I thought so, that's why I said that an ObjectList can only be initiated with a single type so if possible you'd have to modify the classes to derive an interface or base class in order to make this work. http://stackoverflow.com/questions/1610009/re-signing-app-during-install-vsto/1612748#1612748 Comment by jamiei on Re-signing app during install vsto jamiei 2009-10-29T11:16:28Z 2009-10-29T11:16:28Z I'm still confused as to your setup Gazeth. Move your config file to a separate file as per 76mel's and my own original suggestion and you will no longer have this problem. http://stackoverflow.com/questions/1610009/re-signing-app-during-install-vsto/1612748#1612748 Comment by jamiei on Re-signing app during install vsto jamiei 2009-10-26T12:29:04Z 2009-10-26T12:29:04Z Gazeth - How are you installing? I'm not suggesting you move them to the Registry, you can move them all to a config file but they can't be in the Assembly. Where are your config settings written to / read from at the moment? http://stackoverflow.com/questions/1593839/vsto-programmatically-adding-a-new-worksheet-based-on-an-existing-one/1594904#1594904 Comment by jamiei on VSTO Programmatically adding a new worksheet based on an existing one. jamiei 2009-10-20T19:11:12Z 2009-10-20T19:11:12Z Old Nick: Thanks for sharing that, I hadn't thought of doing it that way, I guess the only problem is that you can't call those events from your C# Add-in can you? http://stackoverflow.com/questions/1570731/delphi-and-xquery-xpath-2-0/1570844#1570844 Comment by jamiei on Delphi and XQuery/XPath 2.0? jamiei 2009-10-15T12:48:07Z 2009-10-15T12:48:07Z Indeed, conciliator, I'm not sure that there is a native delphi library that fully supports XPath 2.0! Sad times indeed. http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list/1565554#1565554 Comment by jamiei on Most succinct way to convert ListBox.items to a generic list jamiei 2009-10-14T13:40:20Z 2009-10-14T13:40:20Z Ender up using this answer, thanks adrianbanks! http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list/1565538#1565538 Comment by jamiei on Most succinct way to convert ListBox.items to a generic list jamiei 2009-10-14T13:39:41Z 2009-10-14T13:39:41Z Good answer, thanks. http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list/1565554#1565554 Comment by jamiei on Most succinct way to convert ListBox.items to a generic list jamiei 2009-10-14T11:24:13Z 2009-10-14T11:24:13Z I'm expecting the listbox to be filled with strings but in the case of a non-string object being placed in the listbox, I would rather silently skip that item than cause an exception and deal with that exception in much the same way. http://stackoverflow.com/questions/1565504/most-succinct-way-to-convert-listbox-items-to-a-generic-list Comment by jamiei on Most succinct way to convert ListBox.items to a generic list jamiei 2009-10-14T10:56:13Z 2009-10-14T10:56:13Z Sorry - should have explicitly stated that they were Strings. http://stackoverflow.com/questions/1515832/delphi-delphi-prism-how-to-use-array-of-records/1515932#1515932 Comment by jamiei on Delphi -> Delphi prism, how to use array of records? jamiei 2009-10-04T08:55:18Z 2009-10-04T08:55:18Z +1 on using a List&lt;T&gt; or Dictionary&lt;T&gt; with the key as the category name instead. http://stackoverflow.com/questions/1484207/how-to-enumerate-all-available-wifi-networks-using-delphi/1484221#1484221 Comment by jamiei on How to enumerate all available WiFi networks using Delphi jamiei 2009-09-27T22:08:37Z 2009-09-27T22:08:37Z New, Rob Kennedy, but with 10 Q's and 11 A's (incl this one) it is probably a habit by now. For those who downvoted: I don't think downvotes will help him get the point any quicker than reading Rob's answer will. http://stackoverflow.com/questions/1403505/how-i-can-declare-a-global-method-in-delphi-prism/1403578#1403578 Comment by jamiei on How i can declare a global method in delphi prism jamiei 2009-09-10T07:23:55Z 2009-09-10T07:23:55Z Does Nick get docked points for polluting SO by linking to the &quot;hyphenated site&quot;? ;-) http://stackoverflow.com/questions/1372073/single-user-source-control/1372727#1372727 Comment by jamiei on Single-user source control? jamiei 2009-09-03T13:18:57Z 2009-09-03T13:18:57Z My oversight. I have updated my answer to reflect this.