User MB - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T13:49:12Z http://stackoverflow.com/feeds/user/11961 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/101673/alternative-to-excels-refedit-control-that-can-be-used-outside-of-vba 1 Alternative to Excel's RefEdit control that can be used outside of VBA MB 2008-09-19T13:05:42Z 2009-10-16T07:08:41Z <p>The RefEdit control that comes as part of VBA is a little buggy, but it's good for putting on a form when you want people to specify one or more ranges of cells (i.e. <code>Excel.Range</code> objects).</p> <p>The main problem is that you can only use the RefEdit control on a VBA UserForm (<a href="http://support.microsoft.com/kb/q281542/" rel="nofollow">Microsoft states this</a>, and my tests confirm it too). I'm making an Excel add-in using <strong>Delphi</strong>, and I'm looking for an <strong>alternative to the RefEdit control</strong>.</p> <p><code>Excel.Application.InputBox Type:=8</code> is one alternative way of selecting a range of cells, but it's not very user-friendly when you need people to select <em>multiple</em> ranges of cells on a single form. The best real alternative I have at the moment is to call a VBA form from my Delphi add-in, but that's far from ideal.</p> <p>So ideally I could do with a <em>drop-in replacement for RefEdit</em> - one that I can use on a Delphi form. If there is one, it's not easy to find (I've been searching pretty hard, and I've not been able to find a drop-in RefEdit replacement for Delphi, VB6, or .NET).</p> <p>Failing a drop-in replacement I might try cobbling together my own alternative, but I suspect it would be difficult if not impossible to make one that works as well as RefEdit. RefEdit lets you "select" cells without actually selecting them: it uses marching ants around the cells that you choose instead of highlighting them and changing the <code>Excel.Application.Selection</code>. I don't know of a way to do that by manipulating the Excel object model through VBA, Delphi, or whatever.</p> <p>Any tips, tricks, hacks, or, if I'm really lucky, pointers to drop-in RefEdit replacements would be most welcome.</p> http://stackoverflow.com/questions/188281/delphi-tthread-currentthread-and-eaccessviolation-is-this-a-bug-or-my-incompete 7 Delphi TThread.CurrentThread and EAccessViolation - Is This a Bug or My Incompetence..? MB 2008-10-09T17:20:59Z 2009-09-07T13:01:48Z <p>In Delphi 2009 I'm finding that any time I use TThread.CurrentThread in an application, I'll get an error message like the following when the application closes:</p> <pre><code>Exception EAccessViolation in module ntdll.dll at 0003DBBA. Access violation at address 7799DBBA in module 'ntdll.dll'. Write of address 00000014. </code></pre> <p>Unless it's just my machine, you can replicate this in a few seconds: create a new Delphi Forms Application, add a button to the form, and use something like the following for the button's event handler:</p> <pre><code>procedure TForm1.Button1Click(Sender: TObject); begin TThread.CurrentThread; end; </code></pre> <p>On both my Vista machine and my XP machine I'm finding that, if I <em>don't</em> click the button everything's fine, but if I <em>do</em> click the button I get the above error message when I close the application.</p> <p>So... I'm wondering if this is a bug, but at the same time I think it's rather likely that I'm simply not understanding something very basic about how you're supposed to work with TThreads in Delphi. I am a bit of a Delphi newbie I'm afraid.</p> <p>Is there something obviously wrong with using TThread.CurrentThread like that?</p> <p>If not, and you have Delphi 2009, do you get the same problem if you implement my simple sample project?</p> <p><hr /></p> <h2><strong>Update: As François noted below, this actually is a bug in Delphi 2009 at the moment - you can <a href="http://qc.codegear.com/wc/qcmain.aspx?d=67726" rel="nofollow">vote for it here</a>.</strong></h2> <p><hr /></p> <h2><strong>Update: This bug was fixed in Delphi 2010.</strong></h2> http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi 1 Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T14:15:22Z 2009-08-18T23:11:37Z <p>Delphi 2009 added the GetHashCode function to TObject. GetHashCode returns an Integer which is used for hashing in TDictionary.</p> <p>If you want an object to work well in TDictionary, you need to override GetHashCode appropriately such that, in general, different objects return different integer hash codes.</p> <p>But what do you do for objects containing double fields? How do you turn those double values into a integers for GetHashCode?</p> <p>The way it's usually done in Java, say, is to use a method like Double.doubleToLongBits or Float.floatToIntBits. The latter has documentation that describes it as follows: "Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "single format" bit layout." This involves some bitwise operations with different masks for the different bits of a floating point value.</p> <p>Is there a function that does this in Delphi?</p> http://stackoverflow.com/questions/1093206/calling-specific-win32-api-from-delphi-why-do-exceptions-fly-without-an-asm-po 4 Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an "asm pop..."? MB 2009-07-07T15:57:09Z 2009-07-07T16:47:44Z <p>I'm using Delphi to make an XLL add-in for Excel, which involves making a lot of calls to the <a href="http://msdn.microsoft.com/en-us/library/bb687917.aspx" rel="nofollow">Excel4v</a> function of xlcall32.dll. However, as I'm guessing very few Delphi experts here have worked with that specific API, I'm hoping that the problem might have been observed in other APIs too.</p> <p>In C, specifically in the xlcall.h file that comes with the <a href="http://msdn.microsoft.com/en-us/library/bb687883.aspx" rel="nofollow">Microsoft Excel 2007 XLL SDK</a>, Excel4v is defined as:</p> <pre><code>int pascal Excel4v(int xlfn, LPXLOPER operRes, int count, LPXLOPER opers[]); </code></pre> <p>In Delphi I'm using:</p> <pre><code>function Excel4v(xlfn: Integer; operRes: LPXLOPER; count: Integer; opers: array of LPXLOPER): Integer; stdcall; external 'xlcall32.dll'; </code></pre> <p>LPXLOPER is a pointer to a struct (in C) or record (in Delphi).</p> <p>I've been doing my homework on declaring C functions in Delphi (<a href="http://rvelthuis.de/articles/articles-convert.html" rel="nofollow">this excellent article</a> was a great help), and I think I'm declaring Excel4v properly. However, calls from Delphi code into that function cause exceptions ("access violation..." is what I keep seeing) <em>unless</em> they are followed by the following line:</p> <pre><code>asm pop sink; end; </code></pre> <p>Where "sink" is defined somewhere as an integer.</p> <p>I have no clue about assembly... So there's no way would I have thought to try fixing the exceptions with "asm pop sink; end;". But "asm pop sink; end;" does indeed fix the exceptions. I first saw it used in <a href="http://www.aspfree.com/c/a/Windows-Scripting/Writing-Excel-Addons/2/" rel="nofollow">this useful article on making XLLs using Delphi</a>. Here's the most relevant quote:</p> <blockquote> <p>"From Delphi the big stumbling block with add-ins is the extra parameter after the return address on the stack. This comes free with every call to Excel. I’ve never found out what it holds, but so long as you throw it away, your add-in will work fine. Add the line asm pop variable, end; after every call where variable can be any global, local or object variable that is at least 4 bytes long- integer is fine. To repeat- THIS MUST BE INCLUDED after every Excel4v call. Otherwise you are constructing a time-bomb."</p> </blockquote> <p>Basically <strong>I want to understand what's actually happening, and why</strong>. What could be causing a Win32 function to return an "extra parameter after the return address on the stack", and what does that actually mean?</p> <p>Might there be another way to fix this, e.g. with a different compiler option or a different way of declaring the function?</p> <p>And is there anything risky about calling "asm pop sink; end;" after every call to Excel4v...? It seems to work fine, but, as I don't understand what's going on, it feels a little dangerous...</p> http://stackoverflow.com/questions/71766/class-static-constants-in-delphi 2 Class/Static Constants in Delphi MB 2008-09-16T12:38:14Z 2009-06-24T13:13:10Z <p>In Delphi, I want to be able to create an private object that's associated with a class, and access it from all instances of that class. In Java, I'd use:</p> <pre><code>public class MyObject { private static final MySharedObject mySharedObjectInstance = new MySharedObject(); } </code></pre> <p>Or, if MySharedObject needed more complicated initialization, in Java I could instantiate and initialize it in a static initializer block.</p> <p>(You might have guessed... I know my Java but I'm rather new to Delphi...)</p> <p>Anyway, I don't want to instantiate a new MySharedObject each time I create an instance of MyObject, but I do want a MySharedObject to be accessible from each instance of MyObject. (It's actually logging that has spurred me to try to figure this out - I'm using Log4D and I want to store a TLogLogger as a class variable for each class that has logging functionality.)</p> <p>What's the neatest way to do something like this in Delphi?</p> http://stackoverflow.com/questions/84798/whats-the-best-logging-package-for-delphi 0 What's the Best Logging Package for Delphi? MB 2008-09-17T15:58:38Z 2009-04-28T20:34:38Z <p>Choosing the "best" logging package for Delphi will naturally be rather subjective, but it would be good to know what the main options are, and the popular opinion on them. I'm basically looking for a robust logging package that will:</p> <ul> <li>Log to a file that I specify.</li> <li>Record a stack trace if I pass it an Exception.</li> <li>Ideally be popular, and likely to be around for some time to come.</li> <li>Open source would also be good, but that's not absolutely essential if something commercial stands head-and-shoulders above the rest.</li> </ul> <p>I've been experimenting with Log4D (a Delphi equivalent of Java's log4j) - it's decent enough although I don't think it supports stack traces out of the box (please correct me if I'm wrong), and I'm wondering what other people are successfully using?</p> <p>I'm using Delphi 2006 right now and I might upgrade to Delphi 2009 at some point soon. Backwards compatibility across earlier Delphi versions is not a consideration for me.</p> http://stackoverflow.com/questions/132725/are-delphi-variables-initialized-with-a-value-by-default 10 Are delphi variables initialized with a value by default? MB 2008-09-25T11:28:58Z 2009-01-30T13:30:56Z <p>I'm new to Delphi, and I've been running some tests to see what object variables and stack variables are initialized to by default:</p> <pre><code>TInstanceVariables = class fBoolean: boolean; // always starts off as false fInteger: integer; // always starts off as zero fObject: TObject; // always starts off as nil end; </code></pre> <p>This is the behaviour I'm used to from other languages, but I'm wondering if it's safe to rely on it in Delphi? For example, I'm wondering if it might depend on a compiler setting, or perhaps work differently on different machines. Is it normal to rely on default initialized values for objects, or do you explicitly set all instance variables in the constructor?</p> <p>As for stack (procedure-level) variables, my tests are showing that unitialized booleans are true, unitialized integers are 2129993264, and uninialized objects are just invalid pointers (i.e. not nil). I'm guessing the norm is to always set procedure-level variables before accessing them?</p> http://stackoverflow.com/questions/359005/any-tips-for-doing-all-your-work-in-a-single-virtual-machine 7 Any Tips for Doing *All* Your Work in a Single Virtual Machine? MB 2008-12-11T11:05:31Z 2009-01-14T22:29:01Z <p>I bought a new Vista PC recently but was having lots of problems getting everything to work on it, so I continued doing most of my work (development and other) on a slow XP machine that I've had for years.</p> <p>Until now, that is - I used VMware Convertor to take an image of my old XP machine, and now I'm running it on my Vista machine, and doing pretty much all my work within that XP virtual machine. I'm using VMware Worstation.</p> <p><strong>So each morning I boot up my Vista machine, and then I boot up my XP virtual machine and spend the whole day working in the XP virtual machine.</strong></p> <p>Yes, you can probably guess: I'm the complete opposite of a VMware power user... I've not figured out snapshots, linked clones, or anything more than the absolute basics of running a VM. But I set this system up OK, and it's working well. Everything's running a lot faster than it was on my old machine anyway.</p> <p>However, I'm concerned about the VM getting corrupted or something and causing me to lose everything. Of course I can back the whole VM up, and I can back up files from on the VM, and I will, but <strong>I'm wondering if it might be easier and safer to use a mapped drive or public folder or something for all my work</strong>, so that if the XP VM goes kaput, my files will all be available from the Vista machine.</p> <p>This would also be good because I could share files easily between the Vista and the XP machine (I do use Vista for the odd thing). But I'm wondering if it'll make it much slower to read and write files from my XP machine? (e.g. if I'm compiling a big Java project, which will involve lots of IO at once.)</p> <p>The information on <em>how</em> to set these things up is readily available, but I haven't found it so easy to figure out the best approach for what I'm doing. Most people are using VMs for much more advanced purposes than mine.</p> <p>Also I'm wondering if there are any other tips or important considerations for this doing-all-your-work-in-one-VM type of setup? e.g. what's likely to go wrong, and how can I avoid it? Anything else?</p> http://stackoverflow.com/questions/180358/delphi-versus-c-builder-which-is-better-choice-for-a-java-programmer-doing-wi 9 Delphi versus C++ Builder - Which is Better Choice for a Java Programmer Doing Win32 MB 2008-10-07T20:51:12Z 2009-01-13T19:32:40Z <p>I'm a pretty experienced Java programmer that's been doing quite a bit of Win32 stuff in the last couple of years. Mainly I've been using VB6, but I really need to move to something better.</p> <p>I've spent a month or so playing with Delphi 2009. I like the VCL GUI stuff, Delphi seems more suited to Windows API calls than VB6, I really like the fact that it's much better at OO than VB6, and I like the unit-testing framework that comes with the IDE.</p> <p>But I really struggle with the fact that there's no widely-used garbage collector for Delphi - having to free every object manually or use interfaces for everything seems to have a pretty big impact on the way that you can do things effectively in an object oriented way. Also I'm not particularly keen on the syntax, or the fact that you have to declare variables all at the top of a method.</p> <p>I can handle Delphi, but I'm wondering if C++ Builder 2009 might be a better choice for me. I know very little about C++ Builder and C++, but then I know very little about Delphi either. I know there's a lot to the C++ language, but I suspect it's only necessary to know a subset of it to get things done productively... I have heard that the C++ of today is a lot more productive to program in than the C++ of 10 years ago. </p> <p>I'll be doing new development only so I wouldn't need to master every aspect of the C++ language - if I can find an equivalent for each of Java's language features I'll be happy enough, and as I progress I could start looking at the more advanced stuff a bit more. (Sorry if that sounds painfully naive - if so please set me straight!)</p> <p>So, for a Java programmer that's new to both Delphi and C++ Builder, which would you consider to be a better choice for productive development of Win32 exes and dlls, and why? What do you see to be the pros and cons of each?</p> http://stackoverflow.com/questions/17653/which-vista-edition-is-the-best-for-developer-machine/269978#269978 0 Answer by MB for Which Vista edition is the best for developer machine? MB 2008-11-06T19:38:20Z 2008-11-06T19:38:20Z <p>I've been using Vista Business 64 for the last couple of months, fully Windows Updated.</p> <p>Every hour or two it freezes on me completely and I have to reset the whole machine. It's been years since XP did anything like that. I'm starting to hate Vista with a real passion.</p> http://stackoverflow.com/questions/178138/how-to-pass-an-object-method-as-a-parameter-in-delphi-and-then-call-it 7 How to Pass an Object Method as a Parameter in Delphi, and then Call It? MB 2008-10-07T12:04:18Z 2008-10-07T18:22:49Z <p>I fear this is probably a bit of a dummy question, but it has me pretty stumped.</p> <p>I'm looking for the simplest way possible to pass a method of an object into a procedure, so that the procedure can call the object's method (e.g. after a timeout, or maybe in a different thread). So basically I want to:</p> <ul> <li>Capture a reference to an object's method.</li> <li>Pass that reference to a procedure.</li> <li>Using that reference, call the object's method from the procedure.</li> </ul> <p>I figure I could achieve the same effect using interfaces, but I thought there was another way, since this "procedure of object" type declaration exists.</p> <p>The following <em>doesn't</em> work, but might it help explain where I'm confused...?</p> <pre><code>interface TCallbackMethod = procedure of object; TCallbackObject = class procedure CallbackMethodImpl; procedure SetupCallback; end; implementation procedure CallbackTheCallback(const callbackMethod: TCallbackMethod); begin callbackMethod(); end; procedure TCallbackObject.CallbackMethodImpl; begin // Do whatever. end; procedure TCallbackObject.SetupCallback; begin // following line doesn't compile - it fails with "E2036 Variable required" CallbackTheCallback(@self.CallbackMethodImpl); end; </code></pre> <p>(Once the question is answered I'll remove the above code unless it aids the explanation somehow.)</p> http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php/138337#138337 -1 Answer by MB for How to extract img src, title and alt from html using php? MB 2008-09-26T08:47:22Z 2008-09-26T08:47:22Z <p>How about using a regular expression to find the img tags (something like <code>"&lt;img[^&gt;]*&gt;"</code>), and then, for each img tag, you could use another regular expression to find each attribute.</p> <p>Maybe something like <code>" ([a-zA-Z]+)=\"([^"]*)\""</code> to find the attributes, though you might want to allow for quotes not being there if you're dealing with tag soup... If you went with that, you could get the parameter name and value from the groups within each match.</p> http://stackoverflow.com/questions/120646/how-do-you-get-a-spreadsheet-to-open-excel-instead-of-a-browser-window/120761#120761 0 Answer by MB for How do you get a spreadsheet to open Excel instead of a browser window? MB 2008-09-23T12:45:34Z 2008-09-23T12:45:34Z <p>If it's just a static file, and you're using Apache on Linux, check for a file called /etc/mime.types, and ensure that it has the following line in there to associate the .xls file extension with the correct MIME type:</p> <pre><code>application/vnd.ms-excel xls </code></pre> <p>I'm guessing the location of that file might vary across systems, but it's in /etc/mime.types on my server which is running RHEL4.</p> http://stackoverflow.com/questions/120662/java-could-not-find-the-main-class-program-will-exit/120729#120729 1 Answer by MB for Java: "Could not find the main class. Program will exit" MB 2008-09-23T12:39:20Z 2008-09-23T12:39:20Z <p>Is Java installed on your computer? Is the path to its bin directory set properly (in other words if you type 'java' from the command line do you get back a list of instructions or do you get something like "java is not recognized as a .....")?</p> <p>You could try try running squirrel-sql.jar from the command line (from the squirrel sql directory), using:</p> <p>java -jar squirrel-sql.jar</p> http://stackoverflow.com/questions/120107/guidelines-for-email-newsletter-service/120216#120216 1 Answer by MB for Guidelines for email newsletter service MB 2008-09-23T10:23:39Z 2008-09-23T10:23:39Z <p>Unless you have a very specific reason to host the newsletter yourself, I think you'd be much better off using a third party service. There are lots out there, and some are very cheaply priced.</p> <ol> <li><p>It'll save you on development work (no point in re-inventing the wheel).</p></li> <li><p>Their system will handle all the unsubscribe link stuff that you need to include in email newsletters to comply with CAN SPAM laws or whatever.</p></li> <li><p>They handle the spam reports that you will inevitably get if you have a list of any non-trivial size. They keep records of who signed up, how they signed up, and their IP address, and can present those on receipt of a spam report to prove that their service wasn't sending out spam.</p></li> <li><p>You can use double-opt in (or confirmed opt in), for extra evidence to prove that the people you're sending emails to actually signed up to receive them.</p></li> </ol> <p>If you really do need to host it yourself I'd suggest you search the web for "email deliverability". Things that are known to help include properly set up SPF records, DomainKeys/DKIM, correct DNS settings (reverse DNS especially - best to just use an online service to check your DNS settings). You can test a lot of these things by sending an email to check-auth@verifier.port25.com.</p> <p>It's best to avoid using spammy words in your email - always a bit of guesswork this but you some words can trip filters.</p> <p>But I'd guess that by far the most important thing is to be sending your email from a trusted server that maintains good relationships with ISPs (i.e. ensuring that ISPs don't think that the server is sending out spam). This is a big reason why it's much much easier to get a third party to handle everything for you.</p> http://stackoverflow.com/questions/106591/do-you-ever-use-the-volatile-keyword-in-java/107907#107907 1 Answer by MB for Do you ever use the volatile keyword in Java? MB 2008-09-20T11:07:48Z 2008-09-20T11:07:48Z <p>Yes, I use it quite a lot - it can be very useful for multi-threaded code. The article you pointed to is a good one. Though there are two important things to bear in mind:</p> <ol> <li>You should only use volatile if you completely understand what it does and how it differs to synchronized. In many situations volatile appears, on the surface, to be a simpler more performant alternative to synchronized, when often a better understanding of volatile would make clear that synchronized is the only option that would work.</li> <li>volatile doesn't actually work in a lot of older JVMs, although synchronized does. I remember seeing a document that referenced the various levels of support in different JVMs but unfortunately I can't find it now. Definitely look into it if you're using Java pre 1.5 or if you don't have control over the JVMs that your program will be running on.</li> </ol> http://stackoverflow.com/questions/101267/is-there-any-way-to-define-a-constant-value-to-java-at-compile-time/101334#101334 1 Answer by MB for Is there any way to define a constant value to Java at compile time MB 2008-09-19T12:06:33Z 2008-09-19T12:06:33Z <p>Personally I'd go for a separate properties file in your jar that you'd load at runtime... The classloader has a defined order for searching for files - I can't remember how it works exactly off hand, but I don't think another file with the same name somewhere on the classpath would be likely to cause issues.</p> <p>But another way you could do it would be to use Ant to copy your .java files into a different directory before compiling them, filtering in String constants as appropriate. You could use something like:</p> <pre><code>public String getBuildDateTime() { return "@BUILD_DATE_TIME@"; } </code></pre> <p>and write a filter in your Ant file to replace that with a build property.</p> http://stackoverflow.com/questions/89710/what-fundamental-skills-are-needed-for-programming/91850#91850 0 Answer by MB for What fundamental skills are needed for programming? MB 2008-09-18T11:52:39Z 2008-09-18T11:52:39Z <p>An ability to think of the things that could potentially go wrong (so that you can cater for them).</p> http://stackoverflow.com/questions/83886/how-do-you-get-yourself-to-focus/83986#83986 0 Answer by MB for How do you get yourself to focus? MB 2008-09-17T14:43:25Z 2008-09-17T14:43:25Z <p>I hate to say it, but targets and deadlines can help one to focus on getting things done. Plan a time for when you'll do that boring task, and then, when that time comes, close your browser and your email, and don't stop working on it until you've got it out the way.</p> <p>(Naturally larger boring tasks need to be broken into smaller ones.)</p> <p>One possible approach: at the end of each day, write a list of the things you want to get done on the next day. And then on the next day, work through them until you've crossed them all off your list.</p> <p>Perhaps you won't need targets for the things you enjoy most. Just don't let yourself get started on those things until you've done the stuff on your list.</p> http://stackoverflow.com/questions/83073/why-not-use-tables-for-layout-in-html/83292#83292 8 Answer by MB for Why not use tables for layout in HTML? MB 2008-09-17T13:37:01Z 2008-09-17T14:19:31Z <p>CSS layouts are generally much better for accessibility, provided the content comes in a natural order and makes sense without a stylesheet. And it's not just screen readers that struggle with table-based layouts: they also make it much harder for mobile browsers to render a page properly.</p> <p>Also, with a div-based layout you can very easily do cool things with a print stylesheet such as excluding headers, footers and navigation from printed pages - I think it would be impossible, or at least much more difficult, to do that with a table-based layout.</p> <p>If you're doubting that separation of content from layout is easier with divs than with tables, take a look at the div-based HTML at <a href="http://www.csszengarden.com/" rel="nofollow">CSS Zen Garden</a>, see how changing the stylesheets can drastically change the layout, and think about whether you could achieve the same variety of layouts if the HTML was table based... If you're doing a table-based layout, you're unlikely to be using CSS to control all the spacing and padding in the cells (if you were, you'd almost certainly find it easier to use floating divs etc. in the first place). Without using CSS to control all that, and because of the fact that tables specify the left-to-right and top-to bottom order of things in the HTML, tables tend to mean that your layout becomes very much fixed in the HTML.</p> <p>Realistically I think it's very hard to completely change the layout of a div-and-CSS-based design without changing the divs a bit. However, with a div-and-CSS-based layout it's much easier to tweak things like the spacing between various blocks, and their relative sizes.</p> http://stackoverflow.com/questions/82109/should-a-log4j-logger-be-declared-as-transient/82275#82275 0 Answer by MB for Should a Log4J logger be declared as transient? MB 2008-09-17T11:48:22Z 2008-09-17T11:48:22Z <p>If you want the Logger to be per-instance then yes, you would want to make it transient if you're going to serialize your objects. Log4J Loggers aren't serializable, not in the version of Log4J that I'm using anyway, so if you don't make your Logger fields transient you'll get exceptions on serialization.</p> http://stackoverflow.com/questions/81631/htaccess-mod-rewrite-301-redirect/81760#81760 1 Answer by MB for .htaccess mod rewrite 301-redirect MB 2008-09-17T10:19:52Z 2008-09-17T10:55:25Z <p>I think the following might work:</p> <pre><code>RewriteEngine on RewriteCond %{REQUEST_URI} ^/[^\.]+[^/]$ RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L] </code></pre> <p>When it comes to mod_rewrite I can never be sure without testing though...</p> http://stackoverflow.com/questions/81786/can-i-add-new-methods-to-the-string-class-in-java/81946#81946 0 Answer by MB for Can I add new methods to the String class in Java? MB 2008-09-17T10:47:34Z 2008-09-17T10:47:34Z <p>As everybody else has said, no you can't subclass String because it's final. But might something like the following help?</p> <pre><code>public final class NamespaceUtil { // private constructor cos this class only has a static method. private NamespaceUtil() {} public static String getDefaultNamespacedString( final String afterDotString) { return DEFAULT_NAMESPACE + "." + afterDotString; } } </code></pre> <p>or maybe:</p> <pre><code>public final class NamespacedStringFactory { private final String namespace; public NamespacedStringFactory(final String namespace) { this.namespace = namespace; } public String getNamespacedString(final String afterDotString) { return namespace + "." + afterDotString; } } </code></pre> http://stackoverflow.com/questions/79111/net-c-getting-child-windows-when-you-only-have-a-process-handle-or-pid/79205#79205 4 Answer by MB for .NET (C#): Getting child windows when you only have a process handle or PID? MB 2008-09-17T02:15:28Z 2008-09-17T02:15:28Z <p>If you don't mind using the Windows API, you could use EnumWindowsProc, and check each of the handles that that turns up using GetWindowThreadProcessId (to see that it's in your process), and then maybe IsWindowVisible, GetWindowCaption and GetWindowTextLength to determine which hWnd in your process is the one you want.</p> <p>Though if you haven't used those functions before that approach will be a right pain, so hopefully there's a simpler way.</p> http://stackoverflow.com/questions/71766/class-static-constants-in-delphi/73486#73486 1 Answer by MB for Class/Static Constants in Delphi MB 2008-09-16T15:20:38Z 2008-09-16T15:20:38Z <p>For what I want to do (a private class constant), the neatest solution that I can come up with (based on responses so far) is:</p> <pre><code>unit MyObject; interface type TMyObject = class private class var FLogger: TLogLogger; end; implementation initialization TMyObject.FLogger:= TLogLogger.GetLogger(TMyObject); finalization // You'd typically want to free the class objects in the finalization block, but // TLogLoggers are actually managed by Log4D. end. </code></pre> <p>Perhaps a little more object oriented would be something like:</p> <pre><code>unit MyObject; interface type TMyObject = class strict private class var FLogger: TLogLogger; private class procedure InitClass; class procedure FreeClass; end; implementation class procedure TMyObject.InitClass; begin FLogger:= TLogLogger.GetLogger(TMyObject); end; class procedure TMyObject.FreeClass; begin // Nothing to do here for a TLogLogger - it's freed by Log4D. end; initialization TMyObject.InitClass; finalization TMyObject.FreeClass; end. </code></pre> <p>That might make more sense if there were multiple such class constants.</p> http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288663#1288663 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T17:10:11Z 2009-08-17T17:10:11Z Not a bad idea, but wouldn't it cause trouble if Value is greater than the maximum size that Single allows? Also if you have lots of doubles that round to the same Integer value you'll get a lot of duplicated hashcodes. http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288610#1288610 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T17:07:02Z 2009-08-17T17:07:02Z Will do. Appreciate the input Mason. http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288610#1288610 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T16:41:56Z 2009-08-17T16:41:56Z Actually... I just wrote a couple of simple test cases using TDictionary. I made an object containing one field - an integer. If two of these objects contain the same integer I want them to be considered equal, so I overrided Equals to specify that. But I also want to use these objects as keys in TDictionary. I want to be able to access the value for any particular key by having an equal object (equal according to my Equals, not memory address). Anyway, unless I messed up somehow, my tests showed that you actually <i>need</i> to override GetHashCode as well as Equals if you want this to work. http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288610#1288610 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T16:04:28Z 2009-08-17T16:04:28Z Hmm yes I think you're right there. GetBucketIndex uses FComparer, internal to TDictionary, but by default it looks like that does an identity comparison. So, whilst in Java &quot;equal objects must have equal hash codes&quot; is the rule that means you have to override hashCode a lot, it appears that that's not the case in Delphi... That's good :) http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288610#1288610 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T15:38:19Z 2009-08-17T15:38:19Z Indeed I think it would cause trouble if you used mutable objects as keys in a hashtable, and then modified them while they were in the hashtable. But I think you need to override GetHashCode if you override Equals. That's how it works in Java anyway. Is there anything different about Delphi in that respect (I'm not all that clued up when it comes to Delphi)? As I understand it, hashtables (and presumably TDictionary) typically rely on both GetHashCode and Equals to locate a particular item. http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288589#1288589 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T15:31:39Z 2009-08-17T15:31:39Z Excellent - that seems to work great, thanks :) http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T15:27:14Z 2009-08-17T15:27:14Z I think you need to override GetHashCode if you're overriding Equals, if you want the objects to work as keys in a dictionary. Sometimes you want to override Equals so as to compare the object's fields to test whether two objects are equal, as opposed to just testing to see if they're the exact same instance. http://stackoverflow.com/questions/1288176/converting-a-double-to-an-integer-for-gethashcode-in-delphi/1288210#1288210 Comment by MB on Converting a Double to an Integer for GetHashCode in Delphi MB 2009-08-17T15:15:19Z 2009-08-17T15:15:19Z Thanks Gamecat. Those methods seem to work well for some double numbers, but you get a lot of double numbers that give the same integer figures. For example, it seems that all whole numbers give an integer value of zero. Might it be possible to improve on this somehow to reduce the chances of hash codes being identical? Or is this just because I'm testing with regular patterns of numbers? http://stackoverflow.com/questions/274823/displaying-time-and-timezone-information-to-the-user-what-not-how/422960#422960 Comment by MB on Displaying time and timezone information to the user (what, not how) MB 2009-07-29T07:59:32Z 2009-07-29T07:59:32Z Great point about using relative times when possible. http://stackoverflow.com/questions/1093206/calling-specific-win32-api-from-delphi-why-do-exceptions-fly-without-an-asm-po/1093256#1093256 Comment by MB on Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an "asm pop..."? MB 2009-07-07T20:44:45Z 2009-07-07T20:44:45Z Thanks for the links ChrisW. http://stackoverflow.com/questions/1093206/calling-specific-win32-api-from-delphi-why-do-exceptions-fly-without-an-asm-po/1093268#1093268 Comment by MB on Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an "asm pop..."? MB 2009-07-07T20:44:01Z 2009-07-07T20:44:01Z MSDN doesn't seem to have much to say about pascal other than that it's &quot;obsolete&quot; according to the link that ChrisW kindly pointed to: <a href="http://msdn.microsoft.com/en-us/library/wda6h6df(VS.80).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> I hunted through the code in the XLL SDK and I couldn't find anything defining pascal as stdcall or anything else, so it's a bit of a mystery. But things are working fine now the array issue is fixed so I'm satisfied albeit still a bit confused (as I usually am with Win32...) :) http://stackoverflow.com/questions/1093206/calling-specific-win32-api-from-delphi-why-do-exceptions-fly-without-an-asm-po/1093361#1093361 Comment by MB on Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an "asm pop..."? MB 2009-07-07T17:15:05Z 2009-07-07T17:15:05Z Fantastic! As far as I can tell it's working perfectly. Define the function as function Excel4v(xlfn: Integer; operRes: LPXLOPER; count: Integer; opers: PLPXLOPER): Integer; stdcall; external 'xlcall32.dll'; then to call it, make a Delphi array of LPXLOPER, and call Excel4v with @myArray[0] for PLPXLOPER. Works great, with stdcall, and no need for suspect-looking asm pop calls :) http://stackoverflow.com/questions/1093206/calling-specific-win32-api-from-delphi-why-do-exceptions-fly-without-an-asm-po/1093361#1093361 Comment by MB on Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an "asm pop..."? MB 2009-07-07T16:43:11Z 2009-07-07T16:43:11Z Thanks Michael, that sounds like the explanation to me :) I'll play about with it a bit to be sure and comment again when I am. http://stackoverflow.com/questions/1093206/calling-specific-win32-api-from-delphi-why-do-exceptions-fly-without-an-asm-po/1093268#1093268 Comment by MB on Calling Specific Win32 API from Delphi - Why do Exceptions Fly Without an "asm pop..."? MB 2009-07-07T16:25:46Z 2009-07-07T16:25:46Z I tried specifying it as pascal but I couldn't get any calls to it to work then. But the function definitely does work properly with stdcall, provided it's followed with the &quot;asm pop...&quot; line. The article at <a href="http://rvelthuis.de/articles/articles-convert.html" rel="nofollow">rvelthuis.de/articles/articles-convert.html/&hellip;</a> mentions pascal having a counter-intuitive meaning though it's not all that specific. http://stackoverflow.com/questions/359005/any-tips-for-doing-all-your-work-in-a-single-virtual-machine/359016#359016 Comment by MB on Any Tips for Doing *All* Your Work in a Single Virtual Machine? MB 2008-12-11T13:45:09Z 2008-12-11T13:45:09Z Yes, that would probably make the most sense in many respects. However, I have a million and one things installed on my XP machine and it would take me ages to install them all on another machine...