User Alister - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:51:54Z http://stackoverflow.com/feeds/user/48445 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1589751/determine-ruby-version-from-within-rails/1760263#1760263 0 Answer by Alister for Determine ruby version from within Rails Alister 2009-11-19T01:03:55Z 2009-11-19T01:03:55Z <p>From the command line </p> <pre><code>ruby --version </code></pre> http://stackoverflow.com/questions/1610564/porting-a-windows-mobile-2003-compact-framework-app-to-smartphone 0 Porting a Windows Mobile 2003 compact framework app to smartphone Alister 2009-10-22T23:21:02Z 2009-10-23T00:41:59Z <p>I'm currently porting an app that was written for Windows Mobile 2003 (compact framework 1.0) and I've decided that my lowest denominator is going to be a smartphone running windows mobile 5. I've successfully got it compiling and running under VS2008 on "Professional" device but there is going to be a significant challenge to getting it working on a smartphone.</p> <p>The problem I have as I need to replace TabControls, RadioButtons, buttons, and so on. I was wondering if there was any clever ways of doing this to cut down on the manual grunt work. Or at least some best practices for doing it.</p> http://stackoverflow.com/questions/1591119/display-progress-from-time-consuming-process/1591637#1591637 3 Answer by Alister for Display progress from time consuming process Alister 2009-10-19T23:08:57Z 2009-10-19T23:08:57Z <p>The bad but easy way to do this is to call <code>Application.ProcessMessages</code> or <code>UpdateWindow(Handle)</code> (to update the form) and increment a progressbar during your <code>time_consuming_method</code>. A slightly better method would be to wrap your <code>time_consuming_method</code> up into a class with an OnProgress event. Finally as other people have suggested you could use a separate thread for your <code>time_consuming_method</code> - which is the most powerful technique, but has the worst learning curve.</p> http://stackoverflow.com/questions/1540108/what-are-good-arguments-to-convince-management-to-upgrade-to-delphi-2009-2010/1541516#1541516 1 Answer by Alister for What are good arguments to convince management to upgrade to Delphi 2009 / 2010? Alister 2009-10-09T02:19:36Z 2009-10-09T02:19:36Z <p>Playing the devils advocate, there may be reasons not to upgrade. For instance you might be missing the source to certain components or you may still need to support Win9X.</p> <p>I think you'll probably find the best reason to upgrade (leaving all the new wizz-bang features aside) is that you'll be significantly more productive in the new IDE. If you don't / can't upgrade I'd recommend grabbing a copy of Castalia, which can give you access to many productivity enhancements (e.g. refactoring) in Delphi 6.</p> http://stackoverflow.com/questions/1523286/how-can-i-search-a-large-xml-data-set/1523444#1523444 2 Answer by Alister for How can I search a large XML data set? Alister 2009-10-06T03:29:17Z 2009-10-06T03:29:17Z <p>I think it is probably important to ask <em>Why are you using XML to store 300k records?</em>. As XML is not the most efficient format to manipulate data with.</p> <p>If you're stuck with XML then you might be best to read the XML file into some sort of database (you might get away with an in memory table, but then again you might run out of memory). I think if you use a TXMLDocument object to load the XML file into you'll either have a serious performance issue or run out of memory (I had trouble when I was playing with a 250k record xml file awhile back).</p> <p>You might be able to use the MSXML DOM directly (you can probably import the type library) or use SAX which will allow you to parse it sequentially, neither of which I have had much experience with.</p> http://stackoverflow.com/questions/1372073/single-user-source-control/1376320#1376320 1 Answer by Alister for Single-user source control? Alister 2009-09-03T22:34:29Z 2009-09-03T22:34:29Z <p>I'm not big on version control, but use SVN/Tortoise and am quite happy with it. The main benefits that I see for a single developer is being able check out older versions of the application, and use multiple computers for development (desktop / laptop) - other than the obvious backup benefit. I tend to not need it for diffing files, as I find the version control tools within the Delphi IDE fairly good for this - provided the "bug" was introduced recently.</p> <p>I think most Delphi developers use SVN/Tortoise (making it a fairly safe choice) - but there are trendyer options such as Mercurial and Git.</p> http://stackoverflow.com/questions/929216/update-databindings-when-a-textbox-changes-rather-than-loses-focus 1 Update databindings when a TextBox changes rather than loses focus Alister 2009-05-30T07:03:12Z 2009-08-29T16:13:40Z <p>I'm learning to develop for compact framework and I've come across an issue that's bugging me.</p> <p>I've bound a couple of textboxes to some properties (firstname &amp; lastname of a person class) and have a menuitem which just does a showmessage of the full name, and it works fairly well except that the properties only get updated once the textbox losses focus. This means that if I change the firstname and press the show name menuitem, I get the old value of firstname.</p> <p>Is there a way I can force an update of the databindings, or make it so that every time a character is changed in one of the textboxes the corresponding property is updated?</p> http://stackoverflow.com/questions/1268459/delphi-unit-testing-include-tested-source-in-project-or-just-use-it/1268851#1268851 5 Answer by Alister for Delphi & unit testing: Include tested source in project, or just use it? Alister 2009-08-12T21:33:29Z 2009-08-12T21:33:29Z <p>You should probably include the units in the test project rather than rely on a search path. You will have a much better understanding of the dependencies between units, and should make any additional dependencies obvious should they occur (particularly if they are undesirable). It might also be desirable to have more than one test project if you want to make sure there is no cross dependencies between certain parts of you main application (for example if you have some shared code with another application)</p> http://stackoverflow.com/questions/1170082/delphi-in-vista/1175296#1175296 1 Answer by Alister for delphi in vista Alister 2009-07-24T00:52:27Z 2009-07-24T00:52:27Z <p>Something else to be aware of is the virtual store. It may contain a copy of your BDE configuration, which you will probably want to delete. I'm currently not in front of a vista machine but the path is something like \users\username\appdata\local\virtual store (or something similar). There will then be a subdirectory for program files\common files\borland shared\bde - you will want to delete the files in here.</p> http://stackoverflow.com/questions/1161623/older-delphi-instructional-materials/1161907#1161907 4 Answer by Alister for Older Delphi Instructional Materials Alister 2009-07-21T21:38:34Z 2009-07-21T21:38:34Z <p>Most Delphi books still have large chunks of relevant stuff in them. Most of the stuff that is still good is the low level stuff, such as writing code, using dlls &amp; bpls. Even writing components is pretty much the same. I referred back to a Delphi 3 book the other day and found what I wanted. </p> <p>As a recommedation I'd get a combination of older and newer books. In terms of new I'd get <a href="http://www.marcocantu.com/" rel="nofollow">Marco Cantu's</a> Delphi 2007 &amp; 2009 handbooks, and his Mastering Delphi 2005 (ignoring the .net stuff) or Mastering Delphi 7 which will give you pretty good coverage and are all excellent books. <a href="http://www.drbob42.com/" rel="nofollow">Bob Swart</a> also has some useful books.</p> <p>You probably don't want to go back to anything earlier than Delphi 3, but some pascal programming books can be helpful.</p> <p>You probably shouldn't be paranoid about reading about outdated stuff, being aware of it is very helpful if you have to work with legacy code, So long as you brush up on some more modern books you should be okay.</p> <p>I'd also recommend reading Code Complete 2 or The Pragmatic Programmer. You may also want to read books on Design Patterns and Refactoring - which there none written for Delphi specifically.</p> http://stackoverflow.com/questions/1156544/whats-the-best-method-for-getting-the-local-computer-name-in-delphi 1 What's the best method for getting the local computer name in Delphi Alister 2009-07-20T23:34:54Z 2009-07-21T08:59:47Z <p>The code needs to be compatible with D2007 and D2009.</p> <p><hr /></p> <p>My Answer: Thanks to everyone who answered, I've gone with:</p> <pre><code>function ComputerName : String; var buffer: array[0..255] of char; size: dword; begin size := 256; if GetComputerName(buffer, size) then Result := buffer else Result := '' end; </code></pre> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1151033#1151033 1 Answer by Alister for How can I play sound file (mp3,wav,etc) directly with no associated application? Alister 2009-07-19T22:17:35Z 2009-07-19T22:17:35Z <p>Have a look at this article: <a href="http://delphi.about.com/od/multimedia/l/aa112800a.htm" rel="nofollow">Your first MP3 Delphi player</a>. It uses TMediaPlayer to be able to play mp3 files. Not exactly what you want, but a very good starting point.</p> http://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title/1151020#1151020 0 Answer by Alister for Sort DBGrid by clicking column's title Alister 2009-07-19T22:08:29Z 2009-07-19T22:08:29Z <p>There are some examples of how to do this <a href="http://delphi.about.com/od/usedbvcl/l/aa042203a.htm" rel="nofollow">Here</a>. As already mentioned, sorting is quite easy if you are using a TClientDataSet (cds.IndexFieldNames := Column.FieldName in the OnTitleClick of the TDBGrid). However if you are not able to do this you can either regenerate your query (which you have stated you don't want to do) or obtain a more advanced data grid such as <a href="http://www.devexpress.com/Products/VCL/ExQuantumGrid/" rel="nofollow">Express Quantum Grid</a> (which I think allows you to sort).</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1117468#1117468 4 Answer by Alister for Why Do You Use Delphi? Alister 2009-07-13T01:59:09Z 2009-07-13T01:59:09Z <p>My main reason for using Delphi is that is what the primary application I work on has been developed in for the past 12 (or more) years (I've been working on it for about 10 of those years). The application has never needed a rewrite, which it certainly would have if it had written it in any language Microsoft produced.</p> <p>I think it's really awesome you can take an application written in Delphi 1, and with minimal (if any) modification have it running in Delphi 2009. I don't think you could even take "hello world" written in VB6 and compile it in VS2008/10 (correct me if I'm wrong here).</p> <p>I've been doing a bit of C# dev lately, and there are some very compelling reasons for using it, but I'm sticking with Delphi for now, especially as it is now under aggressive development and improvement.</p> http://stackoverflow.com/questions/1094011/display-flash-player-in-place-of-url/1101013#1101013 0 Answer by Alister for Display flash player in place of URL Alister 2009-07-08T23:05:45Z 2009-07-08T23:05:45Z <p>To be able to embed a youtube video in a Delphi win32 app you need to wrap the flash activeX control into a component, so <a href="http://codegearguru.com/index.php?option=com%5Fcontent&amp;task=view&amp;id=56&amp;Itemid=27" rel="nofollow">Watch this video</a>.</p> <p>To display the video just set the movie property of the TShockWaveFlash component. If your url is <a href="http://www.youtube.com/watch?v=oGeCqRfRAcQ" rel="nofollow">http://www.youtube.com/watch?v=oGeCqRfRAcQ</a> - convert this to <a href="http://www.youtube.com/v/oGeCqRfRAcQ&amp;hl=en&amp;fs=1" rel="nofollow">http://www.youtube.com/v/oGeCqRfRAcQ&amp;hl=en&amp;fs=1</a></p> <p>It seems to take awhile for the video to become available, and doesn't seem to work the first time I run the application, no idea why, but I'll let you solve that one (it's the first time I've tried this).</p> http://stackoverflow.com/questions/1094653/display-flash-web-widget-in-a-delphi-form/1100904#1100904 0 Answer by Alister for Display Flash Web Widget in a Delphi form Alister 2009-07-08T22:35:59Z 2009-07-08T22:35:59Z <p>I have a video on embedding flash into Delphi Applications <a href="http://codegearguru.com/index.php?option=com%5Fcontent&amp;task=view&amp;id=56&amp;Itemid=27" rel="nofollow">Available Here</a>. If the widget is a flash file (.swf) it should be fairly easy. The other option (as already mentioned) is to use the Delphi TWebBrowser component.</p> http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi 6 Drawing on a DataModule in Delphi Alister 2009-06-29T03:40:14Z 2009-07-01T02:51:56Z <p>I wonder how difficult it would be to be able to have a custom background or be able to draw on the datamodule canvas somehow so that the relationships of all the datasets can be nicely represented with arrows and stuff. Way back in Delphi 7 or so I seem to remember some sort of datamodule designer which has disappeared (I always found it annoying anyway).</p> <p>Does anyone know if this is possible through some sort of IDE plugin or something?</p> http://stackoverflow.com/questions/1057672/detect-if-my-application-is-running-under-the-ide-delphi-2007-net/1061556#1061556 0 Answer by Alister for Detect if my application is running under the IDE "Delphi 2007 .Net" Alister 2009-06-30T03:18:13Z 2009-06-30T03:18:13Z <p>Something like:</p> <pre><code>Function IDEIsRunning : boolean; begin result := DebugHook &lt;&gt; 0; end; </code></pre> <p>Might Suit.</p> http://stackoverflow.com/questions/938030/sharing-a-datatable-across-multiple-forms-in-winforms 0 Sharing a DataTable across multiple forms in winforms Alister 2009-06-02T05:37:15Z 2009-06-16T07:59:18Z <p>I'm trying to write a simple Compact Framework winforms app. The main form has a DataGrid bound to a DataTable (with data from an xml file). I want to bring up another form that displays the details of the current record. I have something like the following code as the constructor for the detail form.</p> <pre><code>public DetailsForm(DataTable dtLandlords, int Index) //the constructor { InitializeComponent(); lLandlordCode.DataBindings.Add("Text", dtLandlords, "LandlordID"); ....... } </code></pre> <p>I'm Calling the constructor with the following code</p> <pre><code> Form frm = new LandlordDetailsForm(dtLandlords, dataGrid1.CurrentRowIndex); frm.Show(); </code></pre> <p>How do I get it to display the current record (specified in Index - currently not used) rather than just the first record. Or is there a better way that I should be doing this?</p> http://stackoverflow.com/questions/944648/how-can-i-update-a-datasnap-server-while-clients-are-still-connected/979302#979302 1 Answer by Alister for How can I update a DataSnap server while clients are still connected? Alister 2009-06-11T04:17:04Z 2009-06-11T04:17:04Z <p>There is probably not a simple answer to this question, and I suspect that you will have to modify the client. The simplest solution I can think of is to have a flag (a property or an out parameter on some commonly called method) on the server that the client checks periodically that tells the client to disconnect and reconnect (called something like ImBeingRetired).</p> <p>It's also possible to write callbacks under certain circumstances for datasnap (although I've never done this). This would allow the server to inform the client that it should restart or reconnect.</p> <p>The last option I can think of (that hasn't already been mentioned) would be to make the client/server stateless, so that every time the client wants something it connects, gets what it wants then disconnects.</p> <p>Unfortunately none of these options are the answer you want to your question, but might give you some ideas.</p> http://stackoverflow.com/questions/963254/changing-the-color-of-dropdown-items-in-tdblookupcombobox 1 Changing the color of dropdown items in TDBLookupComboBox Alister 2009-06-08T02:29:01Z 2009-06-08T14:43:08Z <p>I want to change the color of the dropdown items in a TDBLookupComboBox (in Delphi 2007). This seems to be non-trivial due to the lack of an OnDrawItem event. Is there an easy way of doing this?</p> http://stackoverflow.com/questions/905085/code-analysis-tool-for-delphi-4/908567#908567 1 Answer by Alister for Code Analysis tool for Delphi 4 Alister 2009-05-26T01:29:57Z 2009-05-26T01:29:57Z <p>Another option would be <a href="http://www.campwoodsw.com/" rel="nofollow">Source Monitor</a> or you could update to a new version of Delphi which has static code analysis. I would certainly recommend trying them all out, particularly Pascal Analyser &amp; Source Monitor as they are free.</p> http://stackoverflow.com/questions/891678/what-would-be-the-best-solution-for-my-delphi-apps-on-linux-delphiwine-or-laza/896195#896195 3 Answer by Alister for What would be the best solution for my Delphi apps on Linux - Delphi+Wine or Lazarus? Alister 2009-05-22T02:55:19Z 2009-05-22T02:55:19Z <p>I think either Wine or Lazarus would probably work for you. I've tested some of our quite large Delphi Apps (Many 3rd party controls) with wine, and they have worked pretty well. There were a few annoying font issues. The two thing that really failed majorly was where I used TWebBrowser (which looked like it almost worked, I think it was using the gecko rendering engine instead of IE). The other was a muli-tier (Datasnap) server, which ran but, I couldn't work out how to connect to.</p> <p>I think holding out for Mac/Linux support for Delphi would be a mistake, the fact that they can compile a console "hello world" application for OS/X is impressive - but I think porting the VCL is a different story (unless you've written a console app).</p> <p>If you already have a working application, then give wine a go - testing can't hurt.</p> <p>The other thing to consider is who your users are (and how many)? If they are Linux geeks then they are going to have no problems configuring and tweaking wine (although they might find it offensive to use a native windows app). If it's a bunch of grandmothers then that's a different story.</p> http://stackoverflow.com/questions/881446/databinding-a-list-in-c-on-compact-framework 1 Databinding a list in c# on Compact Framework Alister 2009-05-19T07:48:04Z 2009-05-19T08:01:22Z <p>I'm currently learning to develop for the .net compact framework using c# in VS2008 and have a databinding query. The list binds fine in Form1_Load, however when I add additional people to the list they don't appear in dataGrid1 (although if I remove and re-add the binding they do appear). Is there something that I need to do after I add a person?</p> <pre><code> class Person { private string firstname; private string surname; public string FirstName { get { return firstname; } set { firstname = value; } } public string Surname { get { return surname; } set { surname = value; } } public Person(string F, string S) { this.firstname = F; this.surname = S; } } private void btnAdd_Click(object sender, EventArgs e) { people.Add(new Person(tbFirstName.Text, tbSurname.Text)); } class People : List&lt;Person&gt; { } People people = new People(); private void Form1_Load(object sender, EventArgs e) { people.Add(new Person("Jim", "Jones")); people.Add(new Person("Al", "Hill")); people.Add(new Person("Darth", "Vader")); dataGrid1.DataSource = people; } </code></pre> http://stackoverflow.com/questions/866485/bde-initialization-failure-on-vista 1 BDE Initialization Failure on Vista Alister 2009-05-15T00:10:00Z 2009-05-15T14:02:16Z <p>I have a small datasnap server written in Delphi 2007 that accesses the BDE. It works fine on Windows 2000 and XP but from time to time (actually quite regularly) on Vista I get the error message:</p> <p>An error occurred while attempting to initialize the Borland Database Engine (error $2501)</p> <p>Closing everything down that uses the BDE fixes the error (although you sometimes need to "End Process" the datasnap server to close it).</p> <p>This is becoming rather annoying as more and more of our clients are running Vista for their "server". Does anyone have any suggestions?</p> http://stackoverflow.com/questions/858634/sqlite-or-blackfish-what-should-i-use-with-a-delphi-application/861657#861657 2 Answer by Alister for SQLite or Blackfish - what should I use with a delphi Application ? Alister 2009-05-14T05:07:46Z 2009-05-14T05:07:46Z <p>Another thing to consider is how are you going to access your data. If you are using DBX4 for instance, it is very easy to change what database you are looking at. In which case I would suggest trying both (plus any others that people highly recommend you try). On the other hand if you are using the the Interbase or ADO data access components then your ability to change is somewhat more limited.</p> http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/818377#818377 0 Answer by Alister for Which embedded database to use in a Delphi application? Alister 2009-05-04T00:00:18Z 2009-05-04T00:00:18Z <p>Hmmm, no one has recommended the BDE - I wonder why that is ;-)</p> <p>BlackFishSQL is another possibility, although I haven't tested in depth as yet.</p> http://stackoverflow.com/questions/757691/what-is-the-fastest-and-most-stable-version-of-delphi/766578#766578 1 Answer by Alister for What is the fastest and most stable version of Delphi? Alister 2009-04-20T01:08:50Z 2009-04-20T01:08:50Z <p>I'm currently developing in D2007 and find it fairly stable - It does crash from time to time - but not enough to make me feel the need to save every 2 minutes. I've played with D2009, but not sufficiently for me to be able to make a credible comment. D2007 is certainly better than D2006. I would think that D2007's stability is very close to that of D7 (close enough that I can't tell), but it is a significantly more productive environment.</p> http://stackoverflow.com/questions/751850/temporary-table-resource-limit/754381#754381 1 Answer by Alister for Temporary table resource limit Alister 2009-04-16T00:52:15Z 2009-04-16T00:52:15Z <p>The error might be from the TQuery rather than the TClientDataSet. When using a TQuery it creates a temporary table and it might be this limit that you are hitting. However in saying this, loading 3,000,000 records into a TClientDataSet is a bad idea also as it will try to load every record into memory - which maybe possible if they are only a few bytes each but it is probably still going to kill your machine (obviously at 1kb each you are going to need 3GB of RAM minimum).</p> <p>You should try to break your data into smaller chunks. If it is the TQuery failing this will mean adjusting the SQL (fewer fields / fewer records) or moving to a better database (the BDE is getting a little tired after all).</p> http://stackoverflow.com/questions/179319/what-language-or-rad-ide-do-you-recommend-for-building-shareware/754186#754186 7 Answer by Alister for What language or RAD IDE do you recommend for building shareware? Alister 2009-04-15T23:38:35Z 2009-04-15T23:38:35Z <p>I'm flogging a dead horse here by saying Delphi is alive and kicking (unlike the horse). There may be some interesting announcements coming up regarding cross platform development which have been rumored (OS/X and possibly Linux and native ARM).</p> <p>You probably need to describe your problem in a bit more detail if you want credible answers - otherwise you're just going to get people evangelizing their favorite tool.</p> http://stackoverflow.com/questions/1610564/porting-a-windows-mobile-2003-compact-framework-app-to-smartphone/1610620#1610620 Comment by Alister on Porting a Windows Mobile 2003 compact framework app to smartphone Alister 2009-10-23T00:43:10Z 2009-10-23T00:43:10Z Unfortunately we do have a few clients running smartphones, one of which keeps reminding me about it. The number of users probably doesn't justify the expense of the effort, but I might do it anyway. http://stackoverflow.com/questions/1590983/low-level-keyboard-hook-issue-keyboard-state-losed-when-application-is-not-focu/1591421#1591421 Comment by Alister on Low-level keyboard hook issue : Keyboard state losed when application is not focused (Delphi) Alister 2009-10-19T23:14:00Z 2009-10-19T23:14:00Z I've done this in Delphi 2007 in Vista with great success - but yes unicode might get in your way. I think Bruce is correct and a global hook is your only option. http://stackoverflow.com/questions/1523286/how-can-i-search-a-large-xml-data-set/1523318#1523318 Comment by Alister on How can I search a large XML data set? Alister 2009-10-06T03:14:51Z 2009-10-06T03:14:51Z I just read that Joel on Software post, it's pretty on topic - even if it was written in 2001. http://stackoverflow.com/questions/1359654/best-algorithm-for-hashing-number-values/1360719#1360719 Comment by Alister on Best algorithm for hashing number values? Alister 2009-09-04T01:26:22Z 2009-09-04T01:26:22Z Doesn't 32bits give you ~4 billion numbers, a wee bit larger than 65536? Or am I missing something obvious? Nice answer by the way. http://stackoverflow.com/questions/1195689/best-practices-for-creating-and-parsing-xml-documents/1195956#1195956 Comment by Alister on Best practices for creating and parsing XML documents. Alister 2009-07-29T21:39:03Z 2009-07-29T21:39:03Z High quality version of the video tutorial: <a href="http://codegearguru.com/index.php?option=com_content&amp;task=view&amp;id=71&amp;Itemid=27" rel="nofollow">codegearguru.com/index.php?option=com_content&amp&hellip;</a> http://stackoverflow.com/questions/1156544/whats-the-best-method-for-getting-the-local-computer-name-in-delphi/1156578#1156578 Comment by Alister on What's the best method for getting the local computer name in Delphi Alister 2009-07-21T00:54:47Z 2009-07-21T00:54:47Z Just as a note, this requires using the unit Winsock. http://stackoverflow.com/questions/1137167/how-to-start-unit-test-old-and-new-code/1137221#1137221 Comment by Alister on How to start unit-test old and new code ? Alister 2009-07-16T21:18:50Z 2009-07-16T21:18:50Z I agree this is an excellent book, it's a bit of a dry read however. I've been inserting tests into an application I've been working on, at the moment each test covers a large chunk of code, but as I have to modify the code, I've been refactoring it to make it more testable with finer granularity. If you don't know much about refactoring, you should get a book or two on this as well. Perhaps the classic Refactoring by Martin Fowler. http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi Comment by Alister on Drawing on a DataModule in Delphi Alister 2009-06-29T22:50:29Z 2009-06-29T22:50:29Z Yes, that is the kind of thing I had in mind. Something visible at design time, to provide a bit of visual documentation of relationships of stuff on a datamodule. http://stackoverflow.com/questions/1056472/drawing-on-a-datamodule-in-delphi/1056489#1056489 Comment by Alister on Drawing on a DataModule in Delphi Alister 2009-06-29T04:51:17Z 2009-06-29T04:51:17Z I remember the Diagram tab and tried to use it a number of times, but never actually found it helpful. I was just staring at a datamodule with about 30 tables on it and felt that if I could draw a circle around those, and a couple of arrows and bla bla bla, things would make so much more sense - however it probably wouldn't. http://stackoverflow.com/questions/963254/changing-the-color-of-dropdown-items-in-tdblookupcombobox/963389#963389 Comment by Alister on Changing the color of dropdown items in TDBLookupComboBox Alister 2009-06-08T21:44:01Z 2009-06-08T21:44:01Z Dude, this is not the answer I want, although it's pretty much along the lines of what I was thinking - but you can have an up vote for honesty. http://stackoverflow.com/questions/938030/sharing-a-datatable-across-multiple-forms-in-winforms/938247#938247 Comment by Alister on Sharing a DataTable across multiple forms in winforms Alister 2009-06-02T08:33:43Z 2009-06-02T08:33:43Z Your first suggestion works, thanks. However I'd like to know more about your second suggestions about adding the DataGrid to the DataBindings http://stackoverflow.com/questions/929216/update-databindings-when-a-textbox-changes-rather-than-loses-focus/931135#931135 Comment by Alister on Update databindings when a TextBox changes rather than loses focus Alister 2009-05-31T03:29:43Z 2009-05-31T03:29:43Z This does indeed work (thanks), how about the case where I just want to make sure that the textbox is synchronized with my object. The only way I can think of is to move focus away from the textbox (and perhaps back again), I'm guessing there is a cleaner way. http://stackoverflow.com/questions/881446/databinding-a-list-in-c-on-compact-framework/881464#881464 Comment by Alister on Databinding a list in c# on Compact Framework Alister 2009-05-19T08:04:22Z 2009-05-19T08:04:22Z dude, you rock - answered my question in 7 minutes ;-) http://stackoverflow.com/questions/866485/bde-initialization-failure-on-vista/866594#866594 Comment by Alister on BDE Initialization Failure on Vista Alister 2009-05-19T02:15:04Z 2009-05-19T02:15:04Z This seems to have fixed it. Changing the SharedMemLocation in the BDE Administrator has stopped the phone ringing from this particular client. Thanks Marshall.