Code
Code
Diego has upgraded my deACM source to work with Delphi 2009.
http://unitonedev.blogspot.com/2009/08/deaudio-convertido-para-delphi-2009.html
I wanted to use a common base class for a set of UserControls in my WPF application, but when I changed the class’s ancestor in the code file and compiled I would get the error “Partial declarations of must not specify different base classes” This is because when you compile a WPF application Visual Studio generates a partial class in a code-behind file automatically, the base type specified is always “UserControl”. To solve this problem change your XAML from this 1: <UserControl
2: ...
I’m working on a new app which will have WPF as its user interface. With the slight nag in the back of my mind that someone might say “No, we want WinForms” (I hope not) I decided there should be as little code in the UI as possible so I opted for a view/controller approach where my controller will perform all of the logic and the view will only do “viewy” things. One of the features of this app is that some of the views should appear as modal windows (such as a splash window during start-up) but others...
Carlo Kok from RemObjects suggested a book to me “Getting things done” a while back (I’d recommend it too) – since then I have been using Get On Tracks, which is a web based app based on the suggestions in the book. It’s a pretty good app but I find it is very slow, painfully slow. So, due to the relentless part of my personality which compels me to constantly learn new things I have started an open source project on sourceforge.net – TaskSmart. This will be a web app I can use as a replacement for Get On Tracks,...