User Jim McKeeth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T20:26:09Zhttp://stackoverflow.com/feeds/user/255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1154999/will-monotouch-require-a-mac-to-publish-to-the-iphone-ipod-touch1Will MonoTouch require a Mac to publish to the iPhone/iPod Touch?Jim McKeeth2009-07-20T18:03:28Z2009-12-08T03:41:38Z
<p>I have never done any iPhone or iPod Touch development, much due to the additional need for a Mac to develop on, plus needing to learn Objective-C. With the announcement of <a href="http://mono-project.com/MonoTouch" rel="nofollow">MonoTouch</a> now I can use .NET languages I am already familiar with, and develop on my Windows PC.</p>
<p>However I am curious if I will still need a Mac to deploy and test my iPhone application? So what tools are necessary for iPhone touch and which ones of those will run on Windows with MonoTouch?</p>
http://stackoverflow.com/questions/1059948/should-inability-to-code-under-pressure-be-a-valid-excuse-when-writing-code-in27Should "inability to code under pressure" be a valid excuse when writing code in an interview?Jim McKeeth2009-06-29T19:11:04Z2009-12-01T04:48:16Z
<p>I've come up with what I believe are realistic problems to work on during an interview. Frequently I have candidates respond that they cannot code under the pressure of me watching them code (via Live Meeting or Locally). Is this a valid excuse for inability to complete the task (or taking too long) during the interview? If so, what can I do to decrease the pressure during the interview process? </p>
<p>It would seem that being unable to program under this kind of pressure could be problematic in typical employment because there are times when we as developers are fixing code when our manager is standing beside us, or during internal demos with product management. Additionally there is also the pressure that is typical with programming jobs that comes with deadlines (yes, we all hate them) and bug fixes.</p>
<p><strong>Edit:</strong> I do my best to not "breathe down their necks" but I don't exactly abandon them during the process. Maybe I will take the "<em>get the hell out of there</em>" approach. </p>
http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine12Determine when running in a virtual machineJim McKeeth2009-04-22T23:51:13Z2009-12-01T01:40:36Z
<p>Is there an <em>official</em> way for an application to determine if it is running in VMWare or Virtual PC (or whatever Microsoft is calling it now)? The code I have seen is usually a hack that took advantage of some odd behavioral side effect in a specific version of VMWare or Virtual PC. </p>
<p>Ideally Delphi code, but if you can link to an official explanation then I am sure I can convert it.</p>
http://stackoverflow.com/questions/1811615/how-to-share-variables-among-libraries-in-delphi-2009/1812801#18128012Answer by Jim McKeeth for How to share variables among libraries in Delphi 2009?Jim McKeeth2009-11-28T15:31:20Z2009-11-28T15:31:20Z<p>What we have done in the past to share variables between modules (we used BPLs) was to pass them through a shared TStringList. Generally speaking it is best to have a <strong>global shared object</strong> with all your shared variables in it. </p>
<p>Anything that is going to be referenced between more then one library must be <strong>in its own library</strong>. <a href="http://stackoverflow.com/questions/1811615/how-to-share-variables-among-libraries-in-delphi-2009/1811703#1811703">Mason's advice was sound</a>.</p>
<p>Go with static loading, unless you really need dynamic for some specific reason (which it doesn't sound like). Let the windows memory manager swap out unneeded libraries from memory.</p>
<p>One tip from someone who managed a large application split into multiple libraries. We had our components in packages, the VCL, some application common routines, and then a library for each "screen" or segment of the application. For changes to the screens, it was possible to just release that one updated library, but for changes to any of the other types of libraries, we found we <em>usually</em> had to redeploy everything. So it was <strong>rare we enjoyed an advantage</strong> from the configuration. </p>
http://stackoverflow.com/questions/1811654/delphi-2010-inlining-useless/1812724#18127241Answer by Jim McKeeth for Delphi 2010 inlining useless?!Jim McKeeth2009-11-28T15:07:25Z2009-11-28T15:07:25Z<p>If you want to <strong>force inlining</strong> then use include files. You need to make sure you declare the correct variables, and then use {$I <em>filename.inc</em>}. That will always inject that specific code right where you want it, and make it easier to maintain if you need to change it.</p>
<p>Keep in mind that the compiler is written by people way smarter then most mere mortals (including myself) and has access to more information when deciding to inline or not, so when it doesn't inline it probably has a good reason.</p>
http://stackoverflow.com/questions/1776621/is-it-possible-advisable-to-use-a-tstringlist-inside-a-record/1777832#17778324Answer by Jim McKeeth for Is it possible/advisable to use a TStringList inside a record?Jim McKeeth2009-11-22T04:41:43Z2009-11-22T04:41:43Z<p>Yes, by all means, just be aware that if the record goes out of scope, then it looses the reference to the object (unless you add code otherwise).</p>
<p>I've used that StringList example you are referring too, and that works great to have a record manage the lifetime of a TStringList. You can adapt that to your usage. The key is the embedded Interface which frees the object when it goes out of scope with the record.</p>
<p>You can also look at <a href="http://blogs.embarcadero.com/abauer/" rel="nofollow">Allen Bauer</a>'s <a href="http://blogs.embarcadero.com/abauer/2008/09/18/38869" rel="nofollow">Nullable record example</a>. I included the code, but you will want to read the article (and comments) too. It uses Generics in Delphi 2009 or newer, but you can adapt it to earlier versions of Delphi. Again the key is the interface, but he takes a different approach. </p>
<pre><code>unit Foo;
interface
uses Generics.Defaults, SysUtils;
type
Nullable<T> = record
private
FValue: T;
FHasValue: IInterface;
function GetValue: T;
function GetHasValue: Boolean;
public
constructor Create(AValue: T);
function GetValueOrDefault: T; overload;
function GetValueOrDefault(Default: T): T; overload;
property HasValue: Boolean read GetHasValue;
property Value: T read GetValue;
class operator NotEqual(ALeft, ARight: Nullable<T>): Boolean;
class operator Equal(ALeft, ARight: Nullable<T>): Boolean;
class operator Implicit(Value: Nullable<T>): T;
class operator Implicit(Value: T): Nullable<T>;
class operator Explicit(Value: Nullable<T>): T;
end;
procedure SetFlagInterface(var Intf: IInterface);
implementation
function NopAddref(inst: Pointer): Integer; stdcall;
begin
Result := -1;
end;
function NopRelease(inst: Pointer): Integer; stdcall;
begin
Result := -1;
end;
function NopQueryInterface(inst: Pointer; const IID: TGUID; out Obj): HResult; stdcall;
begin
Result := E_NOINTERFACE;
end;
const
FlagInterfaceVTable: array[0..2] of Pointer =
(
@NopQueryInterface,
@NopAddref,
@NopRelease
);
FlagInterfaceInstance: Pointer = @FlagInterfaceVTable;
procedure SetFlatInterface(var Intf: IInterface);
begin
Intf := IInterface(@FlagInterfaceInstance);
end;
{ Nullable<T> }
constructor Nullable<T>.Create(AValue: T);
begin
FValue := AValue;
SetFlagInterface(FHasValue);
end;
class operator Nullable<T>.Equal(ALeft, ARight: Nullable<T>): Boolean;
var
Comparer: IEqualityComparer<T>;
begin
if ALeft.HasValue and ARight.HasValue then
begin
Comparer := TEqualityComparer<T>.Default;
Result := Comparer.Equals(ALeft.Value, ARight.Value);
end else
Result := ALeft.HasValue = ARight.HasValue;
end;
class operator Nullable<T>.Explicit(Value: Nullable<T>): T;
begin
Result := Value.Value;
end;
function Nullable<T>.GetHasValue: Boolean;
begin
Result := FHasValue <> nil;
end;
function Nullable<T>.GetValue: T;
begin
if not HasValue then
raise Exception.Create('Invalid operation, Nullable type has no value');
Result := FValue;
end;
function Nullable<T>.GetValueOrDefault: T;
begin
if HasValue then
Result := FValue
else
Result := Default(T);
end;
function Nullable<T>.GetValueOrDefault(Default: T): T;
begin
if not HasValue then
Result := Default
else
Result := FValue;
end;
class operator Nullable<T>.Implicit(Value: Nullable<T>): T;
begin
Result := Value.Value;
end;
class operator Nullable<T>.Implicit(Value: T): Nullable<T>;
begin
Result := Nullable<T>.Create(Value);
end;
class operator Nullable<T>.NotEqual(const ALeft, ARight: Nullable<T>): Boolean;
var
Comparer: IEqualityComparer<T>;
begin
if ALeft.HasValue and ARight.HasValue then
begin
Comparer := TEqualityComparer<T>.Default;
Result := not Comparer.Equals(ALeft.Value, ARight.Value);
end else
Result := ALeft.HasValue <> ARight.HasValue;
end;
end.
</code></pre>
http://stackoverflow.com/questions/1730693/help-with-strange-delphi-5-ide-problems/1730999#17309997Answer by Jim McKeeth for Help with strange Delphi 5 IDE problemsJim McKeeth2009-11-13T18:24:47Z2009-11-13T18:24:47Z<p>Pretty sure it is a bad package. If you can come up with steps that fail repeatedly (which I know is tough) then try removing 3rd party (or home grown) packages 1 at a time until it is fixed. Then you at least know which package us causing the trouble.</p>
<p>Once you know what the troublesome package is, you can actually debug the design time code & behavior of the component in Delphi. Just set the Delphi exe as the debug application, and then Delphi will launch another instance of Delphi in debug mode. Reproduce the steps that cause the failure, and hopefully you will get a good idea of what code in the package is causing the problem. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1722508/delphi-generic-and-type-constraints/1724063#17240631Answer by Jim McKeeth for Delphi: generic and type constraintsJim McKeeth2009-11-12T17:44:04Z2009-11-12T17:44:04Z<p>Having both classes implement the same interface is the way to go. Then constrain the generic to that interface. </p>
http://stackoverflow.com/questions/1707071/delphi-2009-upgrade-question/1709502#17095022Answer by Jim McKeeth for Delphi 2009 Upgrade Question...Jim McKeeth2009-11-10T16:59:41Z2009-11-10T16:59:41Z<p>You are probably making a mountain out of a molehill. If you haven't tried to install it yet then I would cross that bridge when you come to it. I don't believe having your Delphi 5 or 3 install associated with your account will make any difference. I am pretty sure Delphi 5 and earlier didn't have an activation, so there probably isn't anything to transfer. </p>
<p>More likely you will have trouble if the person you purchased it from used up the activations for 2009. Additionally, last I checked, they only support purchasing Delphi from a licensed reseller, which it sounds like wasn't the case. </p>
<p>I hope it works out for you though. Delphi 2009 is a great release and well worth the upgrade!</p>
http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top32What is needed to get Delphi back on top?Jim McKeeth2008-08-15T20:11:14Z2009-11-07T08:10:40Z
<p>Delphi 2009 is due in the next couple months, which is its 12th release since Turbo Pascal became Delphi in 1995. Despite continued innovation it has not returned to its level of popularity before the Inprise fiasco. </p>
<p>Many developers with Delphi backgrounds are moving to C# and many Delphi legacy applications are being rewritten in C#, despite the fact Delphi supports .NET and in many cases the existing application could be ported without rewriting. </p>
<p>Is it just a losing battle to compete against Microsoft's tools on their platform? Is there something Code Gear / Delphi can do now that they are under new management to regain market share? What can enthusiasts do to help?</p>
<p>Why do you do Delphi programming? or Why are you <em>not</em> doing Delphi programming?</p>
http://stackoverflow.com/questions/1590997/what-is-a-good-free-solution-for-richtext-editor-and-convertion-to-html/1676694#16766941Answer by Jim McKeeth for What is a good, free solution for Richtext editor and convertion to HTML?Jim McKeeth2009-11-04T21:17:54Z2009-11-04T21:17:54Z<p>Since you provided so much background about why you are doing it, I am going to provide some feedback on the whole plan. This may not be an answer to your question directly though. Sorry.</p>
<p>You might consider looking at Windows Liver Writer for the client. If you just implement an API it supports then it can do all the editing.</p>
<p>Also, I would suggest skipping RTF all together. Converting from RTF to HTML will loose some formatting, and typically create sub-optimal HTML. Creating an RTF with the sole intent of converting to HTML is a less than optimal solution. </p>
<p>Instead keep it HTML for the round trip. If you must use RTF, then limit the RTF formatting to the HTML formatting you want to support. That way the conversion will be more accurate. Then convert as soon as possible, providing a preview for the poster. Since it won't always convert accurately you want the poster to see any of the conversion oddities before they make them public. That way they can fix them before they are embarrassed. </p>
http://stackoverflow.com/questions/1667228/how-to-position-a-form-before-it-shows/1668378#16683781Answer by Jim McKeeth for How to position a form before it shows?Jim McKeeth2009-11-03T16:15:53Z2009-11-03T16:15:53Z<p>If you are not going to go with a common base form, then I would suggest placing a non-visual component on each form. That component can inject the behaviors you want into the base form. If you want to have various different behaviors on different forms then give your component a role property that defines what role that form should have, and it can then inject different characteristics based on that role. </p>
<p>BTW, you can also have non-visual form inheritance, which is my preferred method of creating a common base class for all forms. It also has the advantage of adding properties to the form, and then based on those properties you can change the role or behavior of the form. </p>
http://stackoverflow.com/questions/1663166/persistent-objects-in-windows-xp-delphi-7/1663310#16633100Answer by Jim McKeeth for Persistent Objects in Windows XP/Delphi 7Jim McKeeth2009-11-02T19:54:51Z2009-11-02T19:54:51Z<p>You could persist the information in an XML or INI file locally. That doesn't require changing what TAlarm descends from. You would need to manually persist and restore all the properties that you wish to persist locally though. Shouldn't be that complicated.</p>
http://stackoverflow.com/questions/1656110/does-delphi-have-some-fast-operators/1656519#165651915Answer by Jim McKeeth for Does delphi have some "fast" operators ? (+=, -=, ...)Jim McKeeth2009-11-01T06:02:31Z2009-11-01T06:11:28Z<p>Are you looking for <em>"fast"</em> or <em>short</em> operators? <strong>Inc</strong> and <strong>Dec</strong>, as suggested, are the closest in function and length to <strong>+=</strong> and <strong>-=</strong>, but they are also faster under some circumstances. If you have <em>range checking</em> turned on then they are faster then calling <strong>x := x + 1;</strong></p>
<p>Here is the disassembly with <em>range checking</em> turned on, where all variables are a bytes (max value of $ff) for <strong>Inc(MyVar, x)</strong> </p>
<pre><code>// Inc(MyVar, x);
add bl, x
</code></pre>
<p>And here it is for x := x + 1;</p>
<pre><code>// x := x + 1;
movzx eax,bl
movzx edx, x
add eax,edx
cmp eax,$000000ff
jbe success
call @BoundErr
success:
mov ebx,eax
</code></pre>
<p>You can see the difference, even if there is not a range check failure.</p>
<p>However if you turn on <em>Overflow checking</em>, Inc is still subject to that overhead.</p>
http://stackoverflow.com/questions/1640129/delphi-2010-with-earlier-compiler/1644829#16448291Answer by Jim McKeeth for Delphi 2010 with earlier compilerJim McKeeth2009-10-29T16:10:23Z2009-10-29T16:10:23Z<p>You could use the new build events to kick off a command line compile with the D7 after the D2010 compile finishes. </p>
http://stackoverflow.com/questions/354686/programming-related-songs5Programming Related SongsJim McKeeth2008-12-10T00:04:11Z2009-10-28T10:36:09Z
<p>One song per answer please!</p>
<p>We have discussed <a href="http://stackoverflow.com/questions/3947/music-to-listen-to-while-coding">music you listen to while coding</a>, but I looking for music related to coding and coders. It can be eclectic or mainstream, and even a bit of a stretch (just explain the connection). </p>
<p>Vote for your favorite song or add it if it isn't already here.</p>
<p>Link to lyrics, band, music, video, etc., when possible.</p>
http://stackoverflow.com/questions/1623483/how-to-add-new-project-template-to-delphi1How to add new project template to DelphiJim McKeeth2009-10-26T07:25:54Z2009-10-26T07:53:35Z
<p>I remember doing this in Delphi 7, but I don't remember how, or it is different in the new Delphi IDE. But how do I add a new template to the items gallery?</p>
<p><img src="http://content.screencast.com/users/JimMcKeeth/folders/Jing/media/f8a4d64c-a49d-42e3-ba57-ff024acbd018/Delphi%5F2010%5FNew%5FItem%5FGallery.png" alt="Customize items Gallery" /></p>
<p>So then it will show up under the <strong>File</strong> / <strong>New</strong> menu. </p>
http://stackoverflow.com/questions/46586/goto-still-considered-harmful/46789#4678981Answer by Jim McKeeth for GOTO still considered harmful?Jim McKeeth2008-09-05T20:06:00Z2009-10-24T04:18:21Z<p><img src="http://imgs.xkcd.com/comics/goto.png" alt="XKCD's GOTO Comic" title="Neal Stephenson thinks it's cute to name his labels 'dengo'" /></p>
<p><a href="http://xkcd.com/292/" rel="nofollow">http://xkcd.com/292/</a></p>
<p>Since the comic is getting some hate I thought I would expand on my answer:</p>
<p>A coworker of mine said the only reason to use a GOTO is if you programmed yourself so far into a corner that it is the only way out. In other words, proper design ahead of time and you won't need to use a GOTO later. </p>
<p>I thought this comic illustrates that beautifully "I could restructure the program's flow, or use one little 'GOTO' instead." A GOTO is a weak way out when you have weak design. <em>Velociraptors prey on the weak</em>. </p>
http://stackoverflow.com/questions/1596167/where-to-download-microsoft-visual-c-2003-redistributable0Where to download Microsoft Visual c++ 2003 redistributableJim McKeeth2009-10-20T17:34:56Z2009-10-20T17:46:06Z
<p>I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short of reinstalling VS2003, is there another way to get the run time redistributable dll?</p>
http://stackoverflow.com/questions/1590434/is-it-possible-to-run-an-application-as-administrator-from-the-delphi-ide/1590645#15906452Answer by Jim McKeeth for Is it possible to run an application as Administrator from the Delphi IDEJim McKeeth2009-10-19T19:34:44Z2009-10-19T21:26:03Z<p>You might consider how your application is normally going to run - by requesting elevation. It would seem if you spawn your application at normal security, and then it spawns itself at an elevated level, then you would still be debugging the elevated executable. Then you would be debugging the actual use case. </p>
http://stackoverflow.com/questions/1583990/complete-xml-schema-validation4Complete XML Schema ValidationJim McKeeth2009-10-18T04:12:53Z2009-10-19T19:32:24Z
<p>I am looking for a tool that will tell me <strong>all</strong> of the XML Schema validation failures. All the other tools I have looked at so just tell me the first couple, and then I have to fix those before it will tell me the next errors. I realize that some errors may be dependent on other nodes being in different orders, but things like data types being formatted wrong should be able to be reported even if the nodes are in the wrong order. </p>
<p>I have already looked through the other tools suggest for other questions on here, and they all stop after the first failure. So if one of those tools will do what I want, then please let me know the steps to accomplish that.</p>
<p>A programming library or technique that will let me do this in .NET or Delphi would work to.</p>
http://stackoverflow.com/questions/1583990/complete-xml-schema-validation/1590627#15906271Answer by Jim McKeeth for Complete XML Schema ValidationJim McKeeth2009-10-19T19:32:24Z2009-10-19T19:32:24Z<p>I discovered that <a href="http://www.oxygenxml.com/" rel="nofollow">OxygenXML editor</a> does a pretty good job of this as well. It is a commercial editor, but the validation is done with the <a href="http://xerces.apache.org/" rel="nofollow">Xerces engine</a> to do the validation (with an option to use others.) I tried Xerces before, and couldn't get it to report past the first error, but they say they force it to keep reporting. It does a really nice job.</p>
<p><a href="http://www.altova.com/xmlspy.html" rel="nofollow">XMLSpy</a> officially <em>does not</em> support this. Based on what I saw of the two editors, I like OxygenXML much better then XMLSpy, not just for that feature either (which is really nice the way it does it).</p>
http://stackoverflow.com/questions/1585576/rad-studio-2011/1587140#15871405Answer by Jim McKeeth for RAD Studio 2011 ( ? )Jim McKeeth2009-10-19T05:50:40Z2009-10-19T05:50:40Z<p>The best official word you will get is the <a href="http://edn.embarcadero.com/article/39934" rel="nofollow">road map</a>, which was just published Sept 11th, 2009, by Michael Rozlog. There may be a new Road Map published soon, but until then, that is the best official word.</p>
<p>From what I understand (most of which is in that road map, or was from the <a href="http://www.delphi.org/2009/05/what-is-cooking-in-the-delphi-labs-1/" rel="nofollow">Delphi Live! Labs</a> sessions which you can catch the videos of on <a href="http://www.Dephi.org/" rel="nofollow">my site</a>,) Delphi Project X (which I am <em>assuming</em> is going to be the next version, but it may not) is going to focus on cross platform compilation. </p>
<p>Version after that is I believe going to be Commodore, which is the 64 bit version.</p>
<p>There is also some functional programming and multi-threaded features that are going to be mixed in there someplace. </p>
<p>That road map, even though it is from September, is prior to the Weaver / 2010 release of Delphi, so I am expecting a new road map soon. That one should have a more clear view of what to be expected. Keep in mind that these are their goals, and they are subject to change as they go along. The further our the goal is, the more likely it is to change as things move forward.</p>
<p>As far as releases, they seem to like <a href="http://delphi.wikia.com/wiki/Delphi%5FRelease%5FDates" rel="nofollow">releasing in the fall</a>. So in the September, October, November time frame next year. Of course that is all purely conjecture. Yadda, yadda, yadda. So don't make any plans on this.</p>
http://stackoverflow.com/questions/1565795/how-to-read-log-files-over-network-real-fast/1567747#15677470Answer by Jim McKeeth for How to read log-files over network real fast ?Jim McKeeth2009-10-14T17:19:54Z2009-10-14T17:19:54Z<p>How fast do you want to be? If you want to be really fast, then you need to use something besides windows networking to read the files. The reason is if you want to read the last line of a log file (or all the lines since the last time you read it) then you need to read the whole file again.</p>
<p>In your question you said the problem is that it is slow to enumerate your directory listing. That is your first bottleneck. If you want to be real fast then you need to either switch to HTTP or add some sort of log server to the machine where the log files are stored.</p>
<p>The advantage of using HTTP is you can do a range request and just get the new lines of the log file that were added since you last requested it. That will really improve performance since you are transferring less data (especially if you enable HTTP compression) and you also have less data to process on the client side.</p>
<p>If you add a log server of some sort, then that server can do the processing on the server side, where it has native access to the data, and only return the rows that are in the date range. A simple way of doing that may be to just put your logs into a SQL database of some sort, and then run queries against it.</p>
<p>So, how fast do you want to go?</p>
http://stackoverflow.com/questions/1556929/where-can-find-the-full-list-of-winners-of-spirit-of-delphi-award/1557253#15572532Answer by Jim McKeeth for Where Can find the full list of winners of Spirit of Delphi Award.Jim McKeeth2009-10-12T22:18:59Z2009-10-13T21:41:25Z<p>Was there one before 1998? </p>
<p>I don't know that there were any in 05 and 06. I think 2006 was Pierre le Riche of FastMM (if not, then he should have won!) I am pretty sure there have not been any since 2007 either. </p>
http://stackoverflow.com/questions/1557515/how-to-rebuild-view-in-sql-server-20080How to rebuild view in SQL Server 2008Jim McKeeth2009-10-12T23:34:02Z2009-10-13T04:57:32Z
<p>There is a view in my DB that someone defined with a * from one table. I just added a new column to that table and I want the view to reflect the new column. Besides re-executing the view creation script, is there another way to rebuild the view? I am looking for something similar to how <strong>sp_recompile</strong> will recompile a stored procedure (or more accurately flag it to be compiled next time it is called).</p>
<p><strong>Update:</strong> On a long shot I tried calling sp_recompile on the view and while the call worked, it didn't rebuild the view.</p>
<p><strong>Update 2:</strong> I would like to be able to do this from a script. So the script that adds the columns to the table could also update the view. So like I said, something similar to sp_recompile.</p>
http://stackoverflow.com/questions/414215/net-shell-control-library1.NET Shell Control LibraryJim McKeeth2009-01-05T19:32:14Z2009-10-09T23:15:05Z
<p>Looking for a good quality .NET Control library that provides shell capabilities such as folder trees, item lists, right click, file context menu, and OLE drag/drop.</p>
<p><strong>Update:</strong> (I am asking this for someone else) Specifically want to provide the list of "files" which may be from numerous locations (the results of a search). And then have the explorer like behavior with that.</p>
http://stackoverflow.com/questions/1512109/how-do-you-escape-a-reserved-word-in-delphi2How do you escape a reserved word in Delphi?Jim McKeeth2009-10-02T22:31:59Z2009-10-02T22:49:48Z
<p>I need to Escape a reserved word to use it as an identifier in Delphi. I thought that was accomplished by using the ampersand "&", but that doesn't seem to be working right. Any other suggestions?</p>
http://stackoverflow.com/questions/1512109/how-do-you-escape-a-reserved-word-in-delphi/1512148#15121483Answer by Jim McKeeth for How do you escape a reserved word in Delphi?Jim McKeeth2009-10-02T22:41:42Z2009-10-02T22:49:48Z<p>I found the <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/fundamentalsyntacticelementsov%5Fxml.html#5468652044656C706869204368617261637465722053657420616E642042617369632053796E746178" rel="nofollow">doc page</a> (search for <strong>Extended Syntax</strong>) on it, and it should be ampersand. </p>
<p>Figured out the problem. The ampersand works for compiling and error insight, but not code completion. Good to know. I had to add an _ suffix to get code completion to work, then change it back afterwords. I should check QC for a bug report.</p>
http://stackoverflow.com/questions/369903/where-are-all-the-delphi-developers13Where are all the Delphi Developers?Jim McKeeth2008-12-15T22:24:57Z2009-09-30T14:34:51Z
<p>Stack Overflow has a pretty good Delphi community. I am curious however where else Delphi developers are hanging out. I am looking for programming related community sites. </p>
<p>Obviously <a href="http://Forums.CodeGear.com/" rel="nofollow">Forums.CodeGear.com</a> is a popular place. Where else? </p>
<p>One of the reasons I ask is I was looking at <a href="http://www.refactormycode.com/" rel="nofollow">Refactor My Code</a> and noticed there is no Delphi category. Is it worth asking them to add one? Would any other Delphi developers contribute? </p>
http://stackoverflow.com/questions/1792541/convert-this-php-digital-signing-to-delphiComment by Jim McKeeth on Convert this php digital signing to DelphiJim McKeeth2009-11-24T21:48:13Z2009-11-24T21:48:13ZWhat versions of LockBox and Delphi are you using?http://stackoverflow.com/questions/1725271/when-did-my-application-start-running/1725497#1725497Comment by Jim McKeeth on When did my application start running?Jim McKeeth2009-11-12T21:23:06Z2009-11-12T21:23:06ZIf you want to be really accurate, and your application has a long start up, then put this unit as the first in your uses clause. http://stackoverflow.com/questions/1681434/registry-access-in-non-admin-mode/1681547#1681547Comment by Jim McKeeth on Registry access in non-admin modeJim McKeeth2009-11-05T17:02:19Z2009-11-05T17:02:19ZYou most likely are not using read-only with your existing code, which is why it fails. Using Ken's solution should fix it for you with the least changes.http://stackoverflow.com/questions/1667281/how-do-i-or-if-i-cant-use-variants-on-simple-dllsComment by Jim McKeeth on How do I (or if I can't) use Variants on simple DLLs?Jim McKeeth2009-11-03T16:17:11Z2009-11-03T16:17:11ZActually VB6 was the only thing that died Chris.http://stackoverflow.com/questions/1665458/recommended-books-tuts-useful-links-on-pascal-programming-languageComment by Jim McKeeth on Recommended books/tuts/useful links on pascal programming languageJim McKeeth2009-11-03T06:44:58Z2009-11-03T06:44:58ZYeah, are you looking for an English book?http://stackoverflow.com/questions/1632125/outline-searchingComment by Jim McKeeth on Outline searchingJim McKeeth2009-10-27T19:09:37Z2009-10-27T19:09:37ZImpressive that you are running Delphi 1. http://stackoverflow.com/questions/1623483/how-to-add-new-project-template-to-delphi/1623532#1623532Comment by Jim McKeeth on How to add new project template to DelphiJim McKeeth2009-10-26T16:19:00Z2009-10-26T16:19:00ZI knew it was something simple, but I was totally looking in the wrong place. thanks.http://stackoverflow.com/questions/1590434/is-it-possible-to-run-an-application-as-administrator-from-the-delphi-ide/1590742#1590742Comment by Jim McKeeth on Is it possible to run an application as Administrator from the Delphi IDEJim McKeeth2009-10-19T21:25:26Z2009-10-19T21:25:26ZI knew escalte was wrong, but couldn't remember the right one. Thanks!http://stackoverflow.com/questions/1583990/complete-xml-schema-validation/1585546#1585546Comment by Jim McKeeth on Complete XML Schema ValidationJim McKeeth2009-10-19T19:33:05Z2009-10-19T19:33:05ZOxygenXML does this too - probably better even. I did a full write-up on it in another answer. http://stackoverflow.com/questions/1583990/complete-xml-schema-validation/1584364#1584364Comment by Jim McKeeth on Complete XML Schema ValidationJim McKeeth2009-10-19T19:28:56Z2009-10-19T19:28:56ZYou know me too well Jeroen. http://stackoverflow.com/questions/1583990/complete-xml-schema-validation/1585546#1585546Comment by Jim McKeeth on Complete XML Schema ValidationJim McKeeth2009-10-19T19:28:18Z2009-10-19T19:28:18ZYou have to install the XMLtools plug-in, but that seems to work great, thanks! <a href="http://sourceforge.net/projects/npp-plugins/" rel="nofollow">sourceforge.net/projects/npp-plugins</a>http://stackoverflow.com/questions/1585576/rad-studio-2011/1587140#1587140Comment by Jim McKeeth on RAD Studio 2011 ( ? )Jim McKeeth2009-10-19T19:08:39Z2009-10-19T19:08:39ZThe pattern is there will be a road map with vague directions, and that is all we will see, except maybe at a conference, until shortly before (maybe a month before) the release, then they will start reveling a lot of details and features. That is pretty typical. Even Microsoft will make last minute changes up until the point of release.http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top/1585150#1585150Comment by Jim McKeeth on What is needed to get Delphi back on top?Jim McKeeth2009-10-18T20:18:37Z2009-10-18T20:18:37ZThe next version of Delphi is planned to compile to Mac and Linux. http://stackoverflow.com/questions/1557515/how-to-rebuild-view-in-sql-server-2008/1557902#1557902Comment by Jim McKeeth on How to rebuild view in SQL Server 2008Jim McKeeth2009-10-13T18:19:32Z2009-10-13T18:19:32ZThat did the trick. Thanks!http://stackoverflow.com/questions/1557515/how-to-rebuild-view-in-sql-server-2008Comment by Jim McKeeth on How to rebuild view in SQL Server 2008Jim McKeeth2009-10-13T07:02:34Z2009-10-13T07:02:34ZThe view does not reflect the new columns in the table. I want to force the view to include the new columns.