User mj2008 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T09:06:09Zhttp://stackoverflow.com/feeds/user/5544http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1916084/how-do-i-get-the-handle-for-locking-a-file-in-delphi2How do I get the handle for locking a file in Delphi?mj20082009-12-16T17:00:56Z2009-12-17T09:01:12Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/aa365202%28VS.85%29.aspx" rel="nofollow">LockFile</a> API takes a file handle. I normally use TStream for file access, so I'm unsure how to get the appropriate handle, given an ANSIString filename only. My purpose is to lock a file (which may not exist originally) during a process, write some information to other users, and then unlock and delete it. </p>
<p>I would appreciate sample code or pointers to it to make this reliable. </p>
http://stackoverflow.com/questions/1839827/running-down-a-stack-overflow-bug/1839943#183994312Answer by mj2008 for Running down a 'stack overflow' bugmj20082009-12-03T13:45:38Z2009-12-03T13:45:38Z<p>Get <a href="http://www.madshi.net/madExceptDescription.htm" rel="nofollow">madExcept</a> and it will tell you exactly what is happening at the time of the fault. You'll see the full stack, and particularly where it is running away.</p>
http://stackoverflow.com/questions/1837173/installaware-problem-with-delphi-2010/1838664#18386642Answer by mj2008 for InstallAware problem with Delphi 2010mj20082009-12-03T09:13:40Z2009-12-03T09:13:40Z<p>FWIW, one of the great things about Delphi is that you can pretty much install on any system without worry if you turn off the "build with packages" option. This would eliminate the need for these files, and solve your problem, and also make the application more robust against updates and changes. IMO packages are only needed if you are building multi-module applications which are more advanced, and in that case you wouldn't want to be using any Express installer. </p>
http://stackoverflow.com/questions/1729294/what-are-the-ways-of-interchanging-string-data-between-clients-and-a-server-in-de/1748159#17481590Answer by mj2008 for What are the ways of interchanging string data between clients and a server in Delphi?mj20082009-11-17T11:14:15Z2009-11-17T11:14:15Z<p>I use <a href="http://www.remobjectssdk.com/" rel="nofollow">RemObjects SDK</a> for this sort of purpose. It takes care of all the difficult stuff, and I just ask it to connect and make function calls to pass the data. </p>
http://stackoverflow.com/questions/1701671/how-to-monitor-or-visualize-memory-fragmentation-of-a-delphi-application/1701917#170191716Answer by mj2008 for How to monitor or visualize memory fragmentation of a delphi applicationmj20082009-11-09T15:51:04Z2009-11-09T15:51:04Z<p>Most Delphi applications use <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">FastMM</a> now, and if you have the source code version linked in you can use the FastMMUsageTracker.pas file which creates a separate window showing how memory is used updated every second or so. </p>
<p>I took the code in that file and created a version which logs to file, so that I could use it in a service, but for a desktop app that standard tracker will work well.</p>
http://stackoverflow.com/questions/1698922/override-default-show-behaviour-setvisible-of-tforms-descendant-delphi-vcl/1699995#16999950Answer by mj2008 for Override default Show behaviour / SetVisible of TForm's descendant (Delphi VCL)mj20082009-11-09T09:35:08Z2009-11-09T09:35:08Z<p>There are two ways to do what I think you are asking, which is embedding a form in a panel or similar. There is a TForm.CreateParented(handle) function, but in our code we tend not to use that. Instead, we create the form with this sort of code:</p>
<pre><code>MyForm := TMyForm.Create(Self);
MyForm.Parent := MyTabSheet;
MyForm.Border := bsNone;
MyForm.Align := alClient;
MyForm.Show;
</code></pre>
http://stackoverflow.com/questions/1687074/how-can-i-test-my-applications-against-the-popular-virus-scanners6How can I test my applications against the popular virus scanners?mj20082009-11-06T11:42:21Z2009-11-06T19:19:45Z
<p>I need to find out whether my apps are being flagged as viruses by the most popular anti-virus packages (not best, but biggest by user base). I therefore would like to know how others go about this. Some background:</p>
<p>I have an application written in Delphi. Ever since the Delphi virus was found, I've had problems with false positives on my applications, particularly my demonstration versions for some reason (they all share the same code). AVG has been good, and I can now whitelist my files easily, but then I got the latest DevExpress installer and it was false-positived too. Given this is getting more widespread, it struck me that I need to find out if my apps are being flagged by the most popular anti-virus packages. I therefore would like to know how others go about this. I don't want people to be downloading our demonstration versions, getting an AV warning, and deciding not to try it.</p>
<p>The only options I have so far are buying a load of AV packages and putting them in a VM, or using a service like <a href="http://www.virustotal.com/sobre.html" rel="nofollow">VirusTotal</a>. The latter seemed an ideal option but for the fact that they limit the test to files under 20Mb, and my files are bigger than this. There is no paid for option either to expand the capability. (I thought this an odd limit, but Kaperskis free checker is limited to 1Mb!)</p>
<p>How do you check your applications?</p>
http://stackoverflow.com/questions/1687074/how-can-i-test-my-applications-against-the-popular-virus-scanners/1687783#16877831Answer by mj2008 for How can I test my applications against the popular virus scanners?mj20082009-11-06T14:00:56Z2009-11-06T14:00:56Z<p>My thoughts on this are as follows:
I set up a computer (nothing special) with a lot of disk space. I'll call this the ScanPC. Every time I do a build, the script will copy the new files to the ScanPC into a build specific directory. This will ensure that I have an archive of all builds that can be examined. Any one may have been released to customers.</p>
<p>Now, I then install VMWare server, and set up a number of virtual PCs. In each, I set up the anti-virus software to scan the network share, but in a read-only mode so that no scanner can accidentally modify or remove the false positive. Each VM can then be automatically updated from the vendor, and hopefully they will have an email option to tell me when they spot a virus, which I will then know is a false positive and can report to the vendor.</p>
<p>The benefit of this is that I have a complete build archive (something I need anyway), and it means that old versions out with customers that trigger the AV are identified as well as the most recent. It means I can add or remove AV products as appropriate. It means that I only need a single computer (performance is not important).</p>
http://stackoverflow.com/questions/1681434/registry-access-in-non-admin-mode/1681890#16818901Answer by mj2008 for Registry access in non-admin modemj20082009-11-05T16:41:56Z2009-11-05T16:41:56Z<p>One option, which I don't favour but will mention, is to give everyone (or a defined group etc) permission to access your key. There are various ways to do this, and there is code in the JCL that will do it, or you can use Regedit. But if you give permission (to that specific branch of HKLM) then it will work as you intended.</p>
http://stackoverflow.com/questions/1602068/save-printer-setup-parameters/1605862#16058621Answer by mj2008 for Save Printer Setup Parametersmj20082009-10-22T08:48:51Z2009-10-22T08:48:51Z<p>This is all possible, but for a specific printer on a specific computer. Basically, you ask the printer driver for its custom config data, and store that exactly as is. You can then pass it back later to print with.</p>
<p>Check out the following Windows API functions. If you want C code for this, ask in a comment. Actually, I'll copy a chunk here of the code I use, sorry it isn't translated to Delphi! This is from real working code though, hard fought over. Hopefully it will give you some clues.</p>
<pre><code>bGood = OpenPrinter(pcDeviceName, &hPrinter, NULL);
int sBuffSize = DocumentProperties(hDlg, hPrinter, pcDeviceName, NULL, NULL, 0);
PDEVMODE pxDevMode = (PDEVMODE)malloc(sBuffSize);
gl_memset(pxDevMode, '\0', sBuffSize);
pxDevMode->dmSize = sBuffSize;
DocumentProperties(hDlg, hPrinter, pcDeviceName, pxDevMode, pxDevMode, DM_PROMPT | DM_COPY);
DocumentProperties(hDlg, hPrinter, pcDeviceName, pxDevMode, NULL, DM_COPY);
DocumentProperties(hDlg, hPrinter, pcDeviceName, pxDevMode, pxDevMode, DM_PROMPT | DM_COPY);
DocumentProperties(hDlg, hPrinter, pcDeviceName, pxDevMode, pxDevMode, DM_UPDATE | DM_MODIFY);
ClosePrinter(hPrinter);
</code></pre>
http://stackoverflow.com/questions/1587410/delphi-access-violation-after-calling-function-from-external-dll-c/1587445#1587445-1Answer by mj2008 for Delphi: Access violation after calling function from external DLL (C++)mj20082009-10-19T07:59:01Z2009-10-19T13:27:35Z<p>Check that the definition of your Delphi function matches what you are declaring the C++ function as too. In particular, make sure that you have stdcall at the end, and that your bool values are going to be consistent. C++ and Delphi use different values and sizes for bool, depending on the C++ compiler, so it may be better to use an appropriately sized Integer. As the size of the bool may not match the C++ size, this can affect the stack, and thus cause access violations.</p>
<p>[edited to remove mixed language duff response]</p>
http://stackoverflow.com/questions/1543959/does-it-make-more-sense-to-upgrade-to-delphi-2009-2010-or-to-buy-software-assuran/1544048#15440483Answer by mj2008 for Does it make more sense to upgrade to Delphi 2009/2010 or to buy Software Assurance?mj20082009-10-09T14:15:26Z2009-10-09T14:15:26Z<p>I bought SA for D2007, renewed twice, and have had D2009 and D2010 for my troubles.</p>
<p>I think it makes it worth it for me, as I have less to think about and get the software when it comes out.</p>
http://stackoverflow.com/questions/1465542/cant-delete-a-folder-using-deletefile-command/1465598#14655984Answer by mj2008 for cant delete a folder using deletefile commandmj20082009-09-23T12:10:03Z2009-09-23T14:46:55Z<p>Use the RemoveDir() procedure instead. Make sure it is not a current directory for your app, or any other too, or it will remain. SysUtils must be used to get the function.</p>
<p>If you need to, delete the contents of the directory first (below). Recursive deleting is possible, and consider the implications of the '.' test if you use directories or files with '.'.</p>
<pre><code>procedure DeleteFiles( szDBDirectory : string );
var
szFile : string;
SearchRec: TSearchRec;
szSearchPath : string;
nResult : integer;
begin
szSearchPath := szDBDirectory;
nResult := FindFirst(szSearchPath + '\*.*', faAnyFile, SearchRec);
try
while 0 = nResult do
begin
if('.' <> SearchRec.Name[1]) then
begin
szFile := szSearchPath + '\' + SearchRec.Name;
{$IFDEF DEBUG_DELETE}
CodeSite.Send('Deleting "' + szFile + '"');
{$ENDIF}
FileSetAttr(szFile, 0);
DeleteFile(szFile);
end;
nResult := FindNext(SearchRec);
end;
finally
FindClose(SearchRec);
end;
end;
</code></pre>
http://stackoverflow.com/questions/1464778/delphi-frames-vs-forms-what-for-multi-document-interface/1464859#14648590Answer by mj2008 for Delphi, frames vs forms. What for multi-document interface?mj20082009-09-23T09:07:12Z2009-09-23T09:07:12Z<p>Frames are good when you want to repeat a "sub-form" multiple times in a form. I'd not use them for tabbed interfacing, as the embedded form is a better solution for MDI/Tabbed interface use.</p>
http://stackoverflow.com/questions/1458842/need-to-open-and-write-a-dbase4-table-which-delphi-route-please/1459141#14591411Answer by mj2008 for Need to open and write a DBASE4 table. Which Delphi route please?mj20082009-09-22T09:53:19Z2009-09-22T09:53:19Z<p>If you try any of the commercial components, be sure to check you can get your money back if they don't work. DBASE was a sort of standard, but various packages introduced new index and field types. As you may not be able to get a dcu only version for testing, buying it to get the source only to find that it won't work for the files you have could be painful without the money back guarantee. Been there, got the refund.</p>
http://stackoverflow.com/questions/1420129/cross-platform-development-delphi-2011-how-to-made-a-windows-tied-library-cros/1420352#14203521Answer by mj2008 for Cross-platform development - Delphi 2011: How to made a Windows-tied library cross-platform?mj20082009-09-14T08:36:26Z2009-09-14T08:36:26Z<p>Experience so far has shown that the best way to get a Delphi app compatible with future versions is to stick to pure Delphi components, and use nothing third party. Such an app will probably suck, but that's how it seems to me. I use lots of third party components, and the apps are great and successful. But the chances of them moving to this future too are not certain, and that may cause problems with such changes, but I'd rather have a great app now and have the problem than have a poor app now and not need to worry about it.</p>
http://stackoverflow.com/questions/1373794/what-is-best-practice-for-defining-extensions-in-an-xml-standard3What is best practice for defining extensions in an XML standard?mj20082009-09-03T14:36:12Z2009-09-03T15:03:59Z
<p>I'm working on an XML Schema which is going to be used for data transfer between a number of applications, not all under our control. The core data is going to be the same for all, but we want to allow specific applications to store additional data to allow "round-tripping" of the files so they can save and reload and not lose anything that is specific to that app. What is the best practice for this?</p>
<p>The thoughts we have so far are to define an node for each main node, which will allow us to validate against a schema (no unexpected nodes, or nodes in the wrong place), which allowing anything to be stored under the Extension node.</p>
<p>It is likely that we will also want to define one or more of these extended schemas as schemas in their own right.</p>
<p>How is this done in other standards please? What should we adopt?</p>
http://stackoverflow.com/questions/759464/remote-activation-deactivation-and-protecting-against-out-of-business0Remote activation/deactivation and protecting against out of businessmj20082009-04-17T08:04:48Z2009-08-31T14:29:50Z
<p>I'm in charge of an app that uses the internet to transfer data between sites, and some customers are being awkward about paying, so we need a mechanism that will allow us to cut off the service of non-payers. I'd like to protect against the admin people using firewalls to block off our checks, but conversely I'd like to give some allowance for our company web site disappearing for some reason and not being accessible.</p>
<p>The scheme I'm imagining is:</p>
<pre><code>server makes twice daily check to web page using a URL like:
http://www.ourcompany.com/check.php?myID=GUID&Code=MyCode
</code></pre>
<p>This then returns a response that contains either nothing of interest, or the GUID and a value.</p>
<pre><code>GUID=0
</code></pre>
<p>That zero indicates that the server should stop operation. To make it work again, the server will check every 5 mins for the same info, until the value matches what it thinks the code that it passed in should be transformed to. </p>
<p>This scheme makes sense to me, but the question really is how to protect against blocking. Given we know we must have internet access, how long should we continue to operate without being able to get the response from our web server? Is something like 14 days and then we just shut it off anyway the best way? </p>
http://stackoverflow.com/questions/759464/remote-activation-deactivation-and-protecting-against-out-of-business/1357737#13577371Answer by mj2008 for Remote activation/deactivation and protecting against out of businessmj20082009-08-31T14:29:50Z2009-08-31T14:29:50Z<p>The solution I used in the end was pretty much as I suggested. Yes, it is defeatable using tools outlined here, but it is better than nothing. </p>
<p>The app checks daily to access a web site that contains a control file encrypted using public key encryption. It decrypts in memory, and if it finds its GUID, then it must match a code. To disable the operation, the code is set to 0 (zero) which will always fail. When disabled, it checks every two minutes to allow rapid restoration. There is also a manual mechanism to generate a code that will work for a week in case of server trouble.</p>
<p>The code will allow up to 14 days without connecting to the server before it takes this as a deliberate attempt to block it. After 10 days, it shows an error message which asks them to contact support. </p>
http://stackoverflow.com/questions/1260738/whats-the-best-way-of-allowing-a-client-to-review-an-xml-schema2What's the best way of allowing a client to review an XML Schema?mj20082009-08-11T14:30:12Z2009-08-11T14:38:27Z
<p>We are working on a schema for a client, and we want them to be able to review it so that tyey can understand it. They are not "untechnical", but a schema file or large diagram seems very unfriendly for the purposes of someone learning what it contains. Further down the line other developers are going to have to learn to use the schema, and a decent documenting system would be good.</p>
<p>Is there a tool or diagram or similar that is useful for this?
How do you handle this situation? What do you recommend?</p>
http://stackoverflow.com/questions/1260181/delphi-2009-how-to-communicate-between-windows-service-desktop-application-und/1260576#12605763Answer by mj2008 for Delphi 2009: How to communicate between Windows service & desktop application under Vista?mj20082009-08-11T14:02:22Z2009-08-11T14:02:22Z<p>Have a look at the answers in <a href="http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan">Exchange Data between two apps across PC on LAN</a> which is pretty much the same question nowadays. Local comms via TCP is standard. As I said in my response there, solutions that use "Remote Procedure Call" type interfaces work well. I use <a href="http://www.remobjectssdk.com/" rel="nofollow">RemObjects SDK</a> for this sort of thing, and it makes it easy to expand to control across the network if you wish to later. </p>
<p>Both of these allow you to create a connection that for most of your code is "transparent", and you just call an interface which sends the data over the wire and gets results back. You can then program how you usually do, and forget the details of sockets etc.</p>
http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan/1255344#12553441Answer by mj2008 for Exchange Data between two apps across PC on LANmj20082009-08-10T14:48:35Z2009-08-10T14:48:35Z<p>Look at solutions that use "Remote Procedure Call" type interfaces. I use <a href="http://www.remobjectssdk.com/" rel="nofollow">RemObjects SDK</a> for this sort of thing, but there are open source versions of <a href="http://www.realthinclient.com/" rel="nofollow">RealThinClient</a> which would do just as well. </p>
<p>Both of these allow you to create a connection that for most of your code is "transparent", and you just call an interface which sends the data over the wire and gets results back. You can then program how you usually do, and forget the details of sockets etc.</p>
http://stackoverflow.com/questions/1251678/how-to-prevent-processmessages-in-delphi/1253722#12537221Answer by mj2008 for How to Prevent ProcessMessages in Delphimj20082009-08-10T08:33:18Z2009-08-10T08:33:18Z<p>I learned way back in Windows 2 that windows messages will happen at times you don't expect them. Any part of a library can cause your app's message processing to happen. Rather than hold back the tide, make your code robust against the situation. This may be as simple as usinga a BeginUpdate/EndUpdate pair, or more complex (using a temporary and doing the final update at the end).</p>
http://stackoverflow.com/questions/1206470/natural-language-statistics-query-to-sql-query-converter0Natural language statistics query to SQL query convertermj20082009-07-30T13:04:06Z2009-07-30T14:01:37Z
<p>We would like to include a facility in an ASP.NET web application that will allow a user to type in a natural language (or reasonably close to natural) question about a SQL data set (SQL Server) and get useful information in return. The sort of results required is to include min, max, std deviation, top 10, total for a column, and anything else that makes sense with a bunch of numbers. </p>
<p>What are the tools that are available for this sort of operation, and what are the considerations that we should be aware of?</p>
http://stackoverflow.com/questions/1037517/website-talking-to-client-application/1040116#10401160Answer by mj2008 for Website talking to client application?mj20082009-06-24T18:32:54Z2009-06-24T18:32:54Z<p>Me, I'd forget the browser compatibility issues (how do you think you will stop IE8 being used?) and use the <a href="http://www.pbear.com/index.htm" rel="nofollow">PBear browser component</a> direct. Using this you can intercept your links easily, and thus spot whatever reference you wish. In my app, I have things like "act://actHelp" and I spot the link type as 'act' and then search for an action with the name "actHelp". If available, I execute it. You can also pre-parse the HTML code to look for these links, and insert an image of the icon that the action uses, thus matching your UI and ensuring it is kept up to date. </p>
<p>Go integrated, and forget external browser issues.</p>
http://stackoverflow.com/questions/1026513/comparing-a-pointer-to-functions-value-in-delphi3Comparing a pointer to function's value in Delphimj20082009-06-22T10:45:53Z2009-06-22T17:56:24Z
<p>How can I compare the <strong>value</strong> of a variable that contains a pointer to a function with a function address?</p>
<p>I'm maintaining some code, and it is failing in Delphi 2007. The declaration is:</p>
<pre><code>var
EditorFrameWindow: Function: HWnd Of Object = Nil;
</code></pre>
<p>In a form activation, I've got:</p>
<pre><code>procedure TEditForm.FormActivate(Sender: TObject);
begin
EditorFrameWindow := GetFrameWindow;
end;
</code></pre>
<p>And in the form deactivation I've got:</p>
<pre><code>procedure TEditForm.FormDeactivate(Sender: TObject);
begin
if EditorFrameWindow = GetFrameWindow then
EditorFrameWindow := nil;
end;
</code></pre>
<p>So what is happening is that the form is being deactivated twice, and it is failing as nothing else got activated. The FormDeactivate is called, it matches, and the EditorFrameWindow global is set to (nil,nil) (according to the debugger). Then it is being called again, and the function stored in the variable is called, but of course there isn't one stored so it jumps through nil and creates an exception. </p>
<p>What should I do to stop this happening? (The framework has been changed to a tabbed system, so the operation probably changed.)</p>
http://stackoverflow.com/questions/1019822/process-for-localization-of-delphi-2009-app-by-volunteer-translators/1021247#10212472Answer by mj2008 for Process for localization of Delphi 2009 app by volunteer translators?mj20082009-06-20T08:40:41Z2009-06-20T08:40:41Z<p>I've used <a href="http://www.sicomponents.com/tsilang1.html" rel="nofollow">TsiLang Translation Suite</a> for enabling end users to translate. I modified the code to allow encryption so that if someone does a really good job they can protect their name against a translation file, but in general the idea is that people can share their translations, and add/edit any small part they wish to. Given that it all happens within the app, and with instant visibility, it works really nicely.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/944604#9446040Answer by mj2008 for What was your first home computer?mj20082009-06-03T13:00:12Z2009-06-03T13:00:12Z<p>Microtan 65. It was 6502 based, had a hex keypad, 1k of memory (half of which was the screen memory), output to a telly. When I could afford it, I added the ASCII keyboard.</p>
http://stackoverflow.com/questions/931296/advanced-report-generation-library/934079#9340791Answer by mj2008 for Advanced report generation librarymj20082009-06-01T09:09:18Z2009-06-01T09:09:18Z<p>I think you can do most of what you want with <a href="http://www.wptools.com/products/wpreporter/index.htm" rel="nofollow">WPTools Reporter</a>. Certainly I am using this for building complex textual reports, with graphics, various table layouts (done by making them conditional) and all driven by internal "tables" rather than a database. It makes it easy to build up a complex document quickly, and then either edit in my app, or press a button to load into Word.</p>
http://stackoverflow.com/questions/923200/is-there-a-function-like-phps-vardump-in-delphi/924962#9249622Answer by mj2008 for Is there a function like PHP's vardump in Delphi?mj20082009-05-29T08:25:58Z2009-05-29T08:25:58Z<p>Consider something like <a href="http://www.raize.com/DevTools/CodeSite/Default.asp" rel="nofollow">Codesite</a> which is a much more complete tracing solution. It allows you to output much more complex info, and then search, print, and analyse the data. But for your purposes, you can simply send an object to it with Codesite.Send('Before', self); and you get all the RTTI available properties in the log. Do an "After" one too, and then you can compare the two in the Codesite output just by selecting both. It's saved me many times.</p>
http://stackoverflow.com/questions/1916084/how-do-i-get-the-handle-for-locking-a-file-in-delphi/1916243#1916243Comment by mj2008 on How do I get the handle for locking a file in Delphi?mj20082009-12-17T08:59:49Z2009-12-17T08:59:49ZOkay, I've read the source, and it does end up at a lock call, so it is good.http://stackoverflow.com/questions/1916084/how-do-i-get-the-handle-for-locking-a-file-in-delphi/1916243#1916243Comment by mj2008 on How do I get the handle for locking a file in Delphi?mj20082009-12-17T08:51:36Z2009-12-17T08:51:36ZThat isn't quite the same as a lock though is it? And is it safe over a network to a shared drive? I have to be able to guarantee it as much as sensibly possible.http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focusComment by mj2008 on Closing a secondary delphi form causes the main form to lose focusmj20082009-12-14T09:15:52Z2009-12-14T09:15:52ZTry setting the nil parameter to self instead.http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus/1899329#1899329Comment by mj2008 on Closing a secondary delphi form causes the main form to lose focusmj20082009-12-14T09:15:15Z2009-12-14T09:15:15ZMost important, the nil in the parameter sets the parent, so there is no parent, so it isn't a child form...http://stackoverflow.com/questions/1873110/how-to-check-if-application-runs-from-program-filesComment by mj2008 on How to check if application runs from \program files\ mj20082009-12-10T13:54:59Z2009-12-10T13:54:59Z@Vegar: The key to giving a choice is to have a sensible default. I read the location from the registry, but default to the My Documents location. The user can then have files here if they don't care, or they can be changed in the UI if someone wants to. http://stackoverflow.com/questions/1837173/installaware-problem-with-delphi-2010/1838664#1838664Comment by mj2008 on InstallAware problem with Delphi 2010mj20082009-12-04T08:52:19Z2009-12-04T08:52:19ZKen, some people don't know you can turn off packages. But my underlying answer is that you should use a better (full) installer of some kind.http://stackoverflow.com/questions/1825735/delphi-6-stack-trace/1825938#1825938Comment by mj2008 on Delphi 6 stack tracemj20082009-12-01T13:56:36Z2009-12-01T13:56:36ZSo just use the part that you want! I do similar, but madExcept has hooks that allow you to get the stack as a string, and then you can do what you want. In my app I handle everything else. madExcept is well worth all the extras that come in handy sometime.http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee/1806947#1806947Comment by mj2008 on Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread?mj20082009-11-27T08:57:28Z2009-11-27T08:57:28Z"Create thread-safe data structures" - this is what I do. The threads store their info there, and the UI retrieves it in a timer or similar. This stops any thread being held up by the UI.http://stackoverflow.com/questions/1717844/how-to-determine-delphi-application-version/1720501#1720501Comment by mj2008 on How to determine Delphi Application Versionmj20082009-11-12T10:04:30Z2009-11-12T10:04:30ZIf resources are anything like they were in my API days, they aren't already in memory, but are fetched from the file. Also, it would be unusual to be doing a swap underneath the app, so I don't think it worth worrying about for most people.http://stackoverflow.com/questions/1707544/printing-on-citrix-serverComment by mj2008 on Printing on citrix servermj20082009-11-10T13:04:31Z2009-11-10T13:04:31ZI can't help directly, but when I had a big customer with Citrix, Citrix sent me a set of install CDs for testing against. I think it was a 60 day trial or something, but it allowed me to trial it properly.http://stackoverflow.com/questions/1687074/how-can-i-test-my-applications-against-the-popular-virus-scanners/1687403#1687403Comment by mj2008 on How can I test my applications against the popular virus scanners?mj20082009-11-06T13:17:44Z2009-11-06T13:17:44ZThanks, but that appears to be a single vendor test? I need to check against all the main AV products.http://stackoverflow.com/questions/1687074/how-can-i-test-my-applications-against-the-popular-virus-scanners/1687117#1687117Comment by mj2008 on How can I test my applications against the popular virus scanners?mj20082009-11-06T12:00:10Z2009-11-06T12:00:10ZThe first has a 15Mb limit, and the second a 20Mb limit. The second is what I meant in my text, but I got the name the wrong way round (now corrected). If I could pay to upload loads of files over time and have an email when any one triggers, that would be perfect! Doing one at a time is not too hot as the false trigger may happen after I check.http://stackoverflow.com/questions/1681434/registry-access-in-non-admin-mode/1681890#1681890Comment by mj2008 on Registry access in non-admin modemj20082009-11-06T09:09:02Z2009-11-06T09:09:02ZI agree - hence me not favouring it. But if this is an internal app used by three people, then it may be acceptable. And it would affect only that application. It certainly isn't something to do for a new application, or any mass-distributed app. For them, do it properly.http://stackoverflow.com/questions/1644786/masking-an-image-with-another-image/1645070#1645070Comment by mj2008 on Masking an image with another imagemj20082009-10-30T14:23:07Z2009-10-30T14:23:07Z"lot of hassle" - welcome to programming!http://stackoverflow.com/questions/1420129/cross-platform-development-delphi-2011-how-to-made-a-windows-tied-library-cros/1420352#1420352Comment by mj2008 on Cross-platform development - Delphi 2011: How to made a Windows-tied library cross-platform?mj20082009-10-26T15:45:19Z2009-10-26T15:45:19ZAs I said, I use additional components too - I don't want my apps to suck. But that's probably where you are with vanilla Delphi apps. (Though the more recent Delphi's have made big improvements.)