User Jamie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T12:40:24Zhttp://stackoverflow.com/feeds/user/922http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1661948/looking-for-a-delphi-gantt-chart-component0Looking for a Delphi Gantt chart componentJamie2009-11-02T15:28:17Z2009-11-26T15:12:02Z
<p>Hi,</p>
<p>Does anyone have any experience with using a Gantt chart control in Delphi? I'm looking for a native VCL one but ActiveX would also do.</p>
<p>I don't have too many requiremetnts other than it looking half decent and has very basic editing.</p>
<p>thanks for any suggestions</p>
<p>Edit: I am on Delphi 2009</p>
http://stackoverflow.com/questions/1661948/looking-for-a-delphi-gantt-chart-component/1804228#18042280Answer by Jamie for Looking for a Delphi Gantt chart componentJamie2009-11-26T15:12:02Z2009-11-26T15:12:02Z<p>I ended up going with Gantt-Grid from Exontrol</p>
<p><a href="http://www.exontrol.com/exg2antt.jsp" rel="nofollow">http://www.exontrol.com/exg2antt.jsp</a></p>
<p>Really good looking, lots of functionality and great support.</p>
<p>If your using it with Delphi watch out for this <a href="http://www.exontrol.com/sg.jsp?content=support/faq/delphi/#fpu" rel="nofollow">http://www.exontrol.com/sg.jsp?content=support/faq/delphi/#fpu</a></p>
http://stackoverflow.com/questions/673519/send-email-in-html-format0Send Email in HTML FormatJamie2009-03-23T14:12:38Z2009-10-12T19:24:16Z
<p>At the moment we are using MAPI to send a plain text email from our application. We specify the dialog flag when the user invokes this function, so that the email will appear in their email client and they can then modify it and send it.</p>
<p>We would like to embelish the email and send it in an HTML format.<br />
According to this link MSDN link MAPI is not sutiable for this <a href="http://support.microsoft.com/kb/268440" rel="nofollow">http://support.microsoft.com/kb/268440</a></p>
<p>I have seen an article on ExpertsExchange that say you can use MAPI to do it but I can't get the example to work with Outlook (not tried anyother client yet)</p>
<pre><code>procedure ShowMailDlg(ToName,Address,HTMLMessage: string);
var
li: integer;
lMessage: TMapiMessage;
lRecipArray: array of TMapiRecipDesc;
lREs: DWord;
begin
SetLength(lRecipArray,1);
lRecipArray[0].ulRecipClass:=MAPI_TO;
lRecipArray[0].lpszName:=pChar(ToName);
lRecipArray[0].lpszAddress:=pChar(Address);
lMessage.ulReserved:=0;
lMessage.lpszSubject:=nil;
lMessage.lpszNoteText:=pChar(HTMLMessage);
lMessage.lpszMessageType:= nil;//pChar('HTML');
lMessage.lpszDateReceived:=nil;
lMessage.lpszConversationID:=nil;
lMessage.flFlags:=0;
lMessage.lpOriginator:=nil;
lMessage.nRecipCount:=length(lRecipArray);
lMessage.lpRecips:=PMapiRecipDesc(lRecipArray);
lMessage.nFileCount:=0;
lMessage.lpFiles:=PMapiFileDesc(nil);
lRes:=MapiSendMail(0, 0 , lMessage,MAPI_DIALOG, 0);
end;
</code></pre>
<p>Anyone have any ideas how I can do this. I could probably automate Outlook but I would like to keep it fairly independant of email client (hence MAPI)</p>
<p>Thanks</p>
<p>Update: thanks to everyone for the suggestions. The feature is question is not that heavily used, so asking the user to configure SMTP details is not really an option. I think we will just stick to the plain text email. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1312569/tcomboboxex-items-wont-indent-when-populated-at-runtime2TComboBoxEx Items wont indent when populated at runtimeJamie2009-08-21T15:13:35Z2009-10-09T15:02:23Z
<p><strong>Edit: Update at bottom.</strong></p>
<p>Hope someone can help here as it's driving me round the bend!</p>
<p>Delphi 2009</p>
<p>I have a form with two TComboxBoxEx components on it</p>
<p>One I populate at runtime with the following code</p>
<pre><code>procedure TForm1.btn1Click(Sender: TObject);
var
N: Integer;
begin
cb1.ItemsEx.Add.Caption := 'Test';
for N := 0 to 5 do
with cb1.ItemsEx.Add do
begin
Caption := 'Item ' + IntToStr(N);
Indent := 1;
end;
end;
</code></pre>
<p>The other I populate at design time using the same data and setting the same properties.</p>
<p>The items in the one I populate at runtime don't indent at all, while the design time ones indent just fine.</p>
<p>Any ideas? The help says that ident is the number of pixels to indent by but the design time ones are indented by more than one pixel even though indent is set to 1. </p>
<p>Setting indent to 10, for example, in the code above has no effect.</p>
<p>Here is the section of the DFM for the design time comobo</p>
<pre><code>object cb2: TComboBoxEx
Left = 184
Top = 8
Width = 145
Height = 22
ItemsEx = <
item
Caption = 'Test'
end
item
Caption = 'Item 0'
Indent = 1
end
item
Caption = 'Item 1'
Indent = 1
end
item
Caption = 'Item 2'
Indent = 1
end
item
Caption = 'Item 3'
Indent = 1
end
item
Caption = 'Item 4'
Indent = 1
end
item
Caption = 'Item 5'
Indent = 1
end>
ItemHeight = 16
TabOrder = 2
Text = 'cb1'
end
</code></pre>
<p><strong>Update</strong></p>
<p>Setting the Data property of the combo item after caption and indent seems to get it to work.</p>
<pre><code>procedure TForm1.btn1Click(Sender: TObject);
var
N: Integer;
begin
cb1.ItemsEx.Add.Caption := 'Test';
for N := 0 to 5 do
with cb1.ItemsEx.Add do
begin
Caption := 'Item ' + IntToStr(N);
Indent := 1;
Data := Pointer(N); // New Line
end;
end;
</code></pre>
<p>All a bit odd.</p>
http://stackoverflow.com/questions/1369589/add-a-file-to-an-msi/1375775#13757752Answer by Jamie for Add a file to an MSIJamie2009-09-03T20:31:58Z2009-09-04T08:21:16Z<p>Use <a href="http://msdn.microsoft.com/en-us/library/aa370557%28VS.85%29.aspx" rel="nofollow">Orca</a> to edit the msi file to tell the windows installer where to put the file. Read up on the <a href="http://msdn.microsoft.com/en-us/library/aa368596%28VS.85%29.aspx" rel="nofollow"><strong>File</strong></a>, <a href="http://msdn.microsoft.com/en-us/library/aa368596%28VS.85%29.aspx" rel="nofollow"><strong>Directory</strong></a> and <a href="http://msdn.microsoft.com/en-us/library/aa368007%28VS.85%29.aspx" rel="nofollow"><strong>Component</strong></a> tables on MSDN and start from there</p>
http://stackoverflow.com/questions/1327640/how-to-stop-a-dialogs-default-and-cancel-behaviour-when-editing-a-ttreeview-node3How to stop a dialogs default and cancel behaviour when editing a TTreeView nodeJamie2009-08-25T11:21:13Z2009-08-28T09:31:45Z
<p>I have a dialog with a TTreeView control on it and an OK and Cancel button. The buttons have the Default and Canel properties set to true respectivly and the ModalResult has been set correctly.</p>
<p>The user is able to edit the captions of the tree nodes using the controls built in functionality.</p>
<p>If the user hits escape or enter <strong>while editing a tree node</strong> the dialog will disapper instead of just canceling or accepting the edit to the node caption.</p>
<p>In the case of escape, for example, I would expect to hit escape once to canel the edit of the caption and then hit escape a second time to cancel the dialog.</p>
<p>What is the best way to deal with this situation? </p>
<p>TMemo has the WantReturns property to deal with this but I can't see anything for TTreeView.</p>
http://stackoverflow.com/questions/1341131/how-to-tell-if-a-file-has-no-associated-icon2How to tell if a file has no associated iconJamie2009-08-27T13:33:33Z2009-08-27T23:53:54Z
<p>I am using the <strong>SHGetFileInfo</strong> api to get a handle to and display the icon associated with a particular file.</p>
<p>If the file has no icon associated with it Windows will return you the default one that it uses in explorer for unknown file types. In this case I <strong>don't</strong> want to display the icon.</p>
<p>How can I tell if the file has no associated icon and Windows is giving me back the default one?</p>
<p>On my system <code>SHFILEINFO.iIcon</code> is always equal to 3 in this case but i'm not sure how reliable that is and I expect there is a better way to check this.</p>
<p>Edit: I am targeting Windows XP and upwards</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1130454/how-to-get-a-stack-trace-from-fastmm3How to get a stack trace from FastMMJamie2009-07-15T09:50:13Z2009-07-15T20:11:12Z
<p>I've noticed in this post that you can get stack trace out of FastMM to show what appears to be where the object was allocated.</p>
<p><a href="http://stackoverflow.com/questions/271850/how-to-track-down-tricky-memory-leak-with-fastmm">http://stackoverflow.com/questions/271850/how-to-track-down-tricky-memory-leak-with-fastmm</a></p>
<p>I can't find any information on how to enable this in Delphi 2009.</p>
<p>I have set <strong>ReportMemoryLeaksOnShutdown</strong> to true so I get the basic report, but how do I get the stack trace report?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1073351/windows-service-do-work-at-specified-times-delphi/1073503#107350310Answer by Jamie for Windows Service: Do work at specified times (Delphi)Jamie2009-07-02T09:51:03Z2009-07-02T09:58:53Z<p>Does this need to be a service? Could you maybe setup a scheduled task in Windows?</p>
http://stackoverflow.com/questions/587772/using-in-strings-in-delphi/587796#5877964Answer by Jamie for using ' in strings in delphiJamie2009-02-25T20:53:08Z2009-02-25T20:53:08Z<p>Similar Question here:</p>
<p><a href="http://stackoverflow.com/questions/302409/how-does-one-escape-characters-in-delphi-string/302431#302431">How does one escape characters in Delphi string</a></p>
<p>Covers single quotes and escape characters </p>
http://stackoverflow.com/questions/485736/is-there-a-speedfolder-like-entity-in-installshield/487964#4879640Answer by Jamie for Is there a speedfolder like entity in installshield?Jamie2009-01-28T15:10:39Z2009-01-28T15:10:39Z<p>There are a couple of ways you can do this.</p>
<p><a href="http://helpnet.acresso.com/robo/projects/HelpLibDevStudio9/IHelpDynamicFileLinking.htm" rel="nofollow">Dynamic File Linking</a> or using the <a href="http://helpnet.acresso.com/robo/projects/installshield12helplib/IHelpISXFiles.htm" rel="nofollow">Files and Folders</a> view.</p>
<p>With Dynamic File linking you can point your project to a directory or directories and IS will refresh the list of files at build time and add them to your install.</p>
<p>The files and folder view can be used to drag and drop a whole load of files and folders in to your project in one go.</p>
<p>If you choose to use Dynamic File Linking be sure to read up on the implications first. Check out the Installshield help file</p>
http://stackoverflow.com/questions/472337/installshield-runtime/477809#4778093Answer by Jamie for InstallShield Runtime?Jamie2009-01-25T15:19:04Z2009-01-25T15:28:33Z<p>InstallShield Premier includes a <a href="http://helpnet.acresso.com/robo/projects/HelpLibDevStudio9/StandAloneBuild.htm" rel="nofollow">Standalone Builder</a> command line tool which you can install on your build server and use as part of an automated process.</p>
<p>I can't remember if this come on the CD or if you need to download it through the InstallShield updates.</p>
<p>Note that this is not included in the Professional edition anymore. </p>
http://stackoverflow.com/questions/448579/processing-incoming-email/448694#4486941Answer by Jamie for Processing incoming emailJamie2009-01-15T22:16:12Z2009-01-15T22:23:58Z<p>We have actually just implemented the same kind of thing.</p>
<p>We process the content of email messages and push the data in to our CRM via a web service. We use c# with .net 3.5</p>
<p>To process the mail we went with IMap . There are a few .net client libraries on CodeProject. I think we used the one from <a href="http://www.lumisoft.ee/lsWWW/download/downloads/net/" rel="nofollow">LumiSoft</a> .</p>
<p>We tried WebDav but didn't have much luck. This left us with Pop3 or IMap. IMap supports folders, which we needed, so we went with that. I'm sure it would be easy to do the same thing with POP3 if your server does not support IMap.</p>
<p>Basically we connect our Exchange server every hour and pull down any new email and process them.
So far it's working well.</p>
<p>Edit: We also use <a href="http://anmar.eu.org/projects/sharpmimetools/" rel="nofollow">SharpMimeTools</a> to get the raw emails in to a more usable format.</p>
http://stackoverflow.com/questions/427049/where-can-i-get-a-free-flash-player-component-for-delphi/427367#4273674Answer by Jamie for Where can I get a free Flash player component for Delphi?Jamie2009-01-09T07:55:58Z2009-01-09T08:07:04Z<p>We are actually doing this just now. We just used the TWebBrowser component and loaded an locally installed HTML page in which played a flash video (a locally installed swf file) if the user has flash installed. Just the same way any website would do it.</p>
<p>Have a look at <a href="http://code.google.com/p/swfobject/" rel="nofollow">SWFObject</a> for details on how to embedded a .swf file in a web page and how to detect if flash is installed or not. </p>
http://stackoverflow.com/questions/370837/why-does-my-application-allow-me-to-save-files-to-the-windows-and-system32-folder4Why does my application allow me to save files to the Windows and System32 folders in Vista?Jamie2008-12-16T09:51:52Z2008-12-17T12:51:11Z
<p>I have an application written in Delphi 7 which does not require an admin privilages to run. </p>
<p>For some reason I am able to save files to c:\windows and c:\windows\system32 from within the application even though the application <b>has not requested UAC elevation</b>. I am logged in as an admin with <b>UAC turned on</b> and I haven't changed any of the default UAC settings. The files actually show up under Windows Explorer as well. I am not using the 'Run as Administrator' option.</p>
<p>If I try to do the same thing using WordPad under the same profile I get an error as expected.</p>
<p>Any ideas what is going on?</p>
<p>Th application is using Ole Structured Storage to save and includes the following manifest, if that helps.</p>
<pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="DelphiApplication" version="1.0.0.0" processorArchitecture="*"/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
publicKeyToken="6595b64144ccf1df"
language="*"
processorArchitecture="*"/>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
</code></pre>
<p>Edit: To be clear my application does not save anything to these locations by default. I am choosing these locations via the standard file save dialog. </p>
<p><strong>Update</strong></p>
<p>I have found out why my application was being treated as legacy despite including the above manifest. It turns out a 2nd manifest was also being included which did not have the 'trustInfo' section. I have removed this 2nd manifest and all is well now.</p>
<p>Thanks for all the help</p>
http://stackoverflow.com/questions/268062/delphi-2009-where-is-the-treat-warnings-as-errors-option8Delphi 2009 where is the 'treat warnings as errors' option?Jamie2008-11-06T09:29:10Z2008-12-11T21:11:39Z
<p>In Delphi 2009 whereabouts do you turn on the option to treat warnings as errors?</p>
http://stackoverflow.com/questions/353253/system-net-mail-mailmessage-fields-dictionary/353374#3533742Answer by Jamie for System.Net.Mail.MailMessage Fields DictionaryJamie2008-12-09T16:32:08Z2008-12-09T16:32:08Z<p>Have a look at this site <a href="http://www.systemnetmail.com/" rel="nofollow">http://www.systemnetmail.com/</a></p>
<p>It should cover all the SMTP related fields that you need to map e.g. ssl, sendusing</p>
http://stackoverflow.com/questions/316949/casting-a-twebbrowser-as-a-twincontrol1Casting a TWebBrowser as a TWinControlJamie2008-11-25T10:33:16Z2008-11-25T11:02:10Z
<p>Can anyone tell me why the second cast fails to compile in Delphi 7?</p>
<pre><code>var
WebBrowser: TWebBrowser;
begin
WebBrowser := TWebBrowser.Create(Self);
TWinControl(WebBrowser).Parent := Self;
(WebBrowser as TWinControl).Parent := Self; // fail here
end
</code></pre>
<p>Parent in TWebBrowser is a read-only IDispatch property, but why does the first cast see the TWinControl parent property ok but the second one does not?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/315585/scrum-and-fogbugz/315753#3157531Answer by Jamie for Scrum and FogbugzJamie2008-11-24T22:37:04Z2008-11-24T22:44:25Z<p>We are currently in the process of trying out FogBugz on a SCRUM based project.</p>
<p>We are still very much finding our feet with SCRUM (and FogBugz) so what we are doing may not be 'pure' SCRUM.</p>
<p>First of all, we are using Excel for the release backlog e.g. what we will be delivering in version x.xx</p>
<p>I had actually written a blog <a href="http://jamie-rorrison.blogspot.com/2008/08/using-fogbugz-as-product-backlog.html" rel="nofollow">post</a> on using FogBugz as a backlog but ended up going with Excel as what I was proposing was a bit complicated in retrospect and I don't think I was really gaining anything. </p>
<p>In the backlog spreadsheet we keep the name of the back log item, a size estimates, so we can calculate velocity, and some other information such as which sprint we will deliver each item in.</p>
<p>We keep our product specifications in the FogBugz wiki and add links to this from each entry in the backlog. </p>
<p>In Fogbugz we map releases to sprints and use schedule items to track our tasks for each backlog item. </p>
<p>Before we start a sprint we choose which backlog items we are going to deliver in this sprint. In FogBugz I create a new release and set the end date to two weeks down the line. We then break down the chosen backlog items in to tasks and add them to the release as 'schedule items'. </p>
<p>Everyone estimates their own tasks and tracks time against them using the 'working on' menu as you normally would. Every day the team members revise their estimates and we can then use the various reports to see how things are progressing. The ship date confidence chart give you a sort of reverse burndown. </p>
<p>Each member of the team also has a 'status' schedule item that they edit every day to record there status report for the daily stand up meeting e.g. what did I do yesterday? , What am I doing today? What obstacles are in my way?</p>
<p>As you can see we a really just using FogBugz for task management. </p>
<p>We picked it more for the <a href="http://www.joelonsoftware.com/items/2007/10/26.html" rel="nofollow">EBS</a> and the Wiki. </p>
<p>So far it's working quite well but the project I'm using it one is a 3 person 6 week project.</p>
<p>Hope some of this helps. Let me know if you need any clarification.</p>
<p>Edit: I'm also not trying to get the perfect system up and running first time. I'm very much taking the approach of trying something out and if it's not working out, then change it. So far so good with FogBugz though.</p>
http://stackoverflow.com/questions/315470/why-do-people-ask-for-computer-it-help-if-you-tell-them-youre-a-programmer/315487#3154875Answer by Jamie for Why do people ask for computer (IT) help if you tell them you're a programmer?Jamie2008-11-24T21:13:37Z2008-11-24T21:13:37Z<p>Because I'm a programmer I'm assumed to know how to do things like Mail Merge and print out mailing labels in Word. Even when I'm no where near a PC.</p>
<p>Thing is I usually have a better chance of figuring it out than my parents do, so I don't mind so much.</p>
http://stackoverflow.com/questions/16550/best-net-build-tool/16600#166007Answer by Jamie for best .net build toolJamie2008-08-19T17:27:58Z2008-11-23T13:54:11Z<p>I'd just like to throw FinalBuilder in to the mix. It's not free, but if your fed up with editing xml files and want a somewhat nicer (imo) environment to work in I would give it a go. </p>
<p>I've worked with all of them and have always went back to FB.</p>
http://stackoverflow.com/questions/309895/vdproj-auto-upgrading-vs-uninstall-reinstall/309910#3099105Answer by Jamie for VDPROJ auto upgrading vs. uninstall/reinstallJamie2008-11-21T19:33:49Z2008-11-21T19:40:20Z<p>Yes Visual Stuido will be passing the <a href="http://msdn.microsoft.com/en-us/library/aa371182(VS.85).aspx" rel="nofollow">REINSTALLMODE</a> and the <a href="http://msdn.microsoft.com/en-us/library/aa371175(VS.85).aspx" rel="nofollow">REINSTALL</a> properties to the windows installer when it runs your install</p>
<p>something like:</p>
<pre><code>msiexec /i your.msi REINSTALLMODE=vomus REINSTALL=ALL
</code></pre>
<p>Check the MSDN documents linked above to see what these options are doing</p>
<p>Edit:<br />
Now I come to think of it. Studio may also just be uninstalling your application first by using the /x command line arg </p>
<pre><code>msiexec /x <package> or <product code>
</code></pre>
<p>Maybe someone else can confirm which is being used?</p>
http://stackoverflow.com/questions/280462/lesser-known-language-constructs-of-object-pascal-delphi/302661#3026612Answer by Jamie for Lesser known language constructs of Object Pascal (Delphi)Jamie2008-11-19T17:17:11Z2008-11-19T17:17:11Z<p>I've been using Delphi since version 3 and only just today discovered <a href="http://www.delphibasics.co.uk/RTL.asp?Name=ThreadVar" rel="nofollow">threadvar</a> </p>
<p>It lets you do <a href="http://en.wikipedia.org/wiki/Thread-Specific_Storage" rel="nofollow">Thread Local Storage</a> by using some compiler magic</p>
<p>Will probably never use it mind you!</p>
http://stackoverflow.com/questions/302409/how-does-one-escape-characters-in-delphi-string/302431#3024319Answer by Jamie for How does one escape characters in Delphi stringJamie2008-11-19T16:15:40Z2008-11-19T16:22:37Z<p>To add a single quote to a string you do 2 ' marks e.g. </p>
<pre><code>str := '''test string''';
Writeln(str)
</code></pre>
<p>In the string above you have the normal single quotation to start a string and then two for the single quote. Same goes for the end of the string. </p>
<p>You can also use # followed by a number for other escape character e.g.<br />
For a new line:</p>
<pre><code>str := 'Newline' + #13 + #10
</code></pre>
<p>or just </p>
<pre><code>str := 'Newline'#13#10
</code></pre>
<p>Of course using the platform dependant constant for new line is better</p>
http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291048#2910481Answer by Jamie for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited?Jamie2008-11-14T19:05:25Z2008-11-14T19:37:47Z<p>Could make TAncestor.GetFile abtract so it has to be overriden but provide a helper method for people who don't want to implement it themselves?</p>
<p>Also, do you not have control over who is overriding this method? e.g. is it used by people external to your team?</p>
<pre><code>procedure TDescentdent.GetFile;
begin
FileUtils.GetFile
end;
</code></pre>
<p>Edit: Steve is of course right if you have control over the descendant code</p>
http://stackoverflow.com/questions/283890/include-another-msi-file-in-my-setup-project/284255#2842554Answer by Jamie for Include another msi file in my setup projectJamie2008-11-12T15:15:50Z2008-11-12T19:41:43Z<p>Looks like you need to 'chain' the installs <a href="http://objectmix.com/xml-soap/84668-installing-sqlxml-net-app.html" rel="nofollow">http://objectmix.com/xml-soap/84668-installing-sqlxml-net-app.html</a></p>
<p>You can get the redist here <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=51D4A154-8E23-47D2-A033-764259CFB53B&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=51D4A154-8E23-47D2-A033-764259CFB53B&displaylang=en</a></p>
<p>CAn you add this as a pre-req for your install?
What are you using to build the create the install?</p>
<p>Edit:<br />
I had a look to see how you can check of the SQLXML is installed and come across this:<br />
<a href="http://www.tech-archive.net/Archive/SQL-Server/microsoft.public.sqlserver.xml/2005-04/msg00110.html" rel="nofollow">http://www.tech-archive.net/Archive/SQL-Server/microsoft.public.sqlserver.xml/2005-04/msg00110.html</a></p>
<p>The system I am on just now has the following key HKEY_CLASSES_ROOT \ SQLXMLX (note the X at the end), so you might need to do a bit more investigation in to what the actual key is.</p>
<p>I'm not familer with Visual Studio install authoring but if you can add an entry to the AppSearch and RegLocator tables you should be able to check for the existance of the registry key when the install starts. See here<br />
<a href="http://msdn.microsoft.com/en-us/library/aa371564(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa371564(VS.85).aspx</a></p>
<p>The Reglocator table gives you the option to set a property with a value from the registry if found. You can then use this in the condition on a custom action.</p>
<p>A lot to put together, but I hope it move you in the right direction.</p>
http://stackoverflow.com/questions/283759/convert-string-to-pansichar-in-delphi-2009/283817#2838170Answer by Jamie for Convert string to PAnsiChar in Delphi 2009Jamie2008-11-12T12:37:12Z2008-11-12T12:37:12Z<p>Does this help you <a href="http://msdn.microsoft.com/en-us/library/ms776420(VS.85).aspx" rel="nofollow">WideCharToMultiByte</a> ?</p>
http://stackoverflow.com/questions/283275/what-is-best-way-to-implement-variable-length-arrays/283565#2835653Answer by Jamie for What is best way to implement variable length arrays?Jamie2008-11-12T10:43:55Z2008-11-12T11:02:59Z<p>Not sure I totally follow you, but have a look at TList.</p>
<p>In Delphi 7 at least, it is implemented as an arrary of pointers. You can use the capacity property to pre allocate the list ahead of time if you know how many results are coming back.</p>
<p>The list will automatically grow if it runs out of space. How much it grows by depends on how big the list is. </p>
<p>Take a look at the source for the classes unit to see what it's doing.</p>
<p>Edit: Also in D2009 genric support was added to TList which makes it a bit nicer to use.</p>
http://stackoverflow.com/questions/272489/delphi-7-embedded-file-open-dialog-in-a-form0Delphi 7 - Embedded file open dialog in a formJamie2008-11-07T15:44:27Z2008-11-10T08:04:48Z
<p>(Note: I am using Delphi 7)</p>
<p>Does anyone know if it is possible to embed a file open dialog inside your own form?</p>
<p>We have a tabbed dialog and on one of the tabs we want the user to be able to browse for a file with the same functionality as the the standard open dialog e.g. 'Look in' combo box, places bar, shell file list, file name combo edit with name completion etc etc.</p>
<p>I've looked at recreating the dialog with some 3rd party components, namely <a href="http://www.jam-software.com/shellbrowser_delphi/components.shtml" rel="nofollow">Jam Shell Browser Components</a> </p>
<p>I can get most of the functionality this way, but I'm missing a couple of things e.g. the places bar and the filename auto completion\suggestion</p>
<p>Any idea?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/268062/delphi-2009-where-is-the-treat-warnings-as-errors-option/268067#26806710Answer by Jamie for Delphi 2009 where is the 'treat warnings as errors' option?Jamie2008-11-06T09:31:13Z2008-11-08T12:14:54Z<p>Just found the answer soon after I posted this! Might be useful for other people.</p>
<p>Navigate to '<code>Project -> Options - > Delphi Compiler -> Hints and Warnings</code>' and change the value of '<code>Output Warnings</code>' to '<code>as errors</code>'</p>
<p>I was looking for an option similar to what Visual Studio has</p>
http://stackoverflow.com/questions/1372141/how-to-write-avi-file-from-sequence-of-tbitmapsComment by Jamie on How to write avi file from sequence of TBitmaps?Jamie2009-09-03T12:32:37Z2009-09-03T12:32:37ZIt has been for a while now.http://stackoverflow.com/questions/1341131/how-to-tell-if-a-file-has-no-associated-icon/1341582#1341582Comment by Jamie on How to tell if a file has no associated iconJamie2009-08-27T14:58:21Z2009-08-27T14:58:21ZXP and Upwards. I'll update my post. Thanks for the infohttp://stackoverflow.com/questions/1327640/how-to-stop-a-dialogs-default-and-cancel-behaviour-when-editing-a-ttreeview-node/1327823#1327823Comment by Jamie on How to stop a dialogs default and cancel behaviour when editing a TTreeView nodeJamie2009-08-26T10:59:56Z2009-08-26T10:59:56ZThis seems to suffer from the same issue as Mason Wheeler's answer. The dialog wont close but the edit also won't commit or rollbackhttp://stackoverflow.com/questions/1327640/how-to-stop-a-dialogs-default-and-cancel-behaviour-when-editing-a-ttreeview-node/1327663#1327663Comment by Jamie on How to stop a dialogs default and cancel behaviour when editing a TTreeView nodeJamie2009-08-26T10:57:08Z2009-08-26T10:57:08ZYeah but if you don't have any event handlers then you have nothing to call? maybe calling TButton.Click would be better?http://stackoverflow.com/questions/1327640/how-to-stop-a-dialogs-default-and-cancel-behaviour-when-editing-a-ttreeview-node/1327663#1327663Comment by Jamie on How to stop a dialogs default and cancel behaviour when editing a TTreeView nodeJamie2009-08-25T14:13:40Z2009-08-25T14:13:40ZI went with this one but I had to put a check for 'if not TreeView.IsEditing' around your if...else statement. Can you update your anwser to include this and I can then accept it. Also, you can just set ModalResult instead of calling the CancelClick and OnClick if your buttons have no logic behind themhttp://stackoverflow.com/questions/1312569/tcomboboxex-items-wont-indent-when-populated-at-runtimeComment by Jamie on TComboBoxEx Items wont indent when populated at runtimeJamie2009-08-21T19:13:45Z2009-08-21T19:13:45ZYeah think I willhttp://stackoverflow.com/questions/1312569/tcomboboxex-items-wont-indent-when-populated-at-runtime/1312666#1312666Comment by Jamie on TComboBoxEx Items wont indent when populated at runtimeJamie2009-08-21T15:45:53Z2009-08-21T15:45:53ZThanks, that worked. also see my updatehttp://stackoverflow.com/questions/1130454/how-to-get-a-stack-trace-from-fastmm/1130506#1130506Comment by Jamie on How to get a stack trace from FastMMJamie2009-07-15T11:27:21Z2009-07-15T11:27:21ZSuper. thanks very muchhttp://stackoverflow.com/questions/685160/office-2007-style-ui-ribbons-devexpress-or-tms/688585#688585Comment by Jamie on Office 2007 Style UI Ribbons: DevExpress or TMS?Jamie2009-07-13T14:22:21Z2009-07-13T14:22:21ZDevExpress now supports contextual tabshttp://stackoverflow.com/questions/1074655/delphi-overload-example-for-these-event-handlers-procedures-hdd-i-o-quotingComment by Jamie on Delphi Overload example for these event handlers / procedures; HDD I/O Quoting ( Read/Write ); ... Jamie2009-07-02T14:21:37Z2009-07-02T14:21:37ZYou should split each of these points up in to it's own question
http://stackoverflow.com/questions/960158/light-weight-database-engine-for-delphi-1Comment by Jamie on Light-weight database engine for Delphi 1?Jamie2009-06-07T10:00:53Z2009-06-07T10:00:53ZI thought I had problems!http://stackoverflow.com/questions/839206/adfs-and-asp-netComment by Jamie on ADFS and ASP.NETJamie2009-05-08T14:16:09Z2009-05-08T14:16:09ZWould you have better luck on ServerFault.com with this question? See here for details on how to access <a href="http://blog.stackoverflow.com/2009/04/server-fault-private-beta-begins/" rel="nofollow">blog.stackoverflow.com/2009/04/…</a>http://stackoverflow.com/questions/494385/error-during-upgrade-installation-of-my-productComment by Jamie on Error during upgrade installation of my productJamie2009-01-30T19:59:58Z2009-01-30T19:59:58ZAre you running setup.exe or the .msi file to upgrade your application?http://stackoverflow.com/questions/427049/where-can-i-get-a-free-flash-player-component-for-delphi/427367#427367Comment by Jamie on Where can I get a free Flash player component for Delphi?Jamie2009-01-09T10:20:17Z2009-01-09T10:20:17ZYeah, good point. Had not thought about the ActiveX route. Is it easy enough to handle the case where Falsh is not installed or not at the correct version?http://stackoverflow.com/questions/370837/why-does-my-application-allow-me-to-save-files-to-the-windows-and-system32-folder/370856#370856Comment by Jamie on Why does my application allow me to save files to the Windows and System32 folders in Vista?Jamie2008-12-16T10:06:41Z2008-12-16T10:06:41ZI am logged in as an admin. I have not used the 'Run as Administator' option. Will update to clarify