kevmooresblog.blogspot.com
Kev Moore's Blog: Hosting Windows Forms Controls in WPF (Threading)
http://kevmooresblog.blogspot.com/2008/04/hosting-windows-forms-controls-in-wpf.html
Tuesday, 15 April 2008. Hosting Windows Forms Controls in WPF (Threading). The threading model in WPF differs somewhat from the conventional Win32 application model. WPF objects belong to the thread that created them, and cannot be accessed directly by any other thread. As most objects in WPF inherit from the DispatcherObject class, we can get at an objects Dispatcher property to update any properties on the object from another thread. So how do we allow access to our object from a Windows form control?
kevmooresblog.blogspot.com
Kev Moore's Blog: Fun with Extension Methods
http://kevmooresblog.blogspot.com/2008/09/fun-with-extension-methods.html
Monday, 22 September 2008. Fun with Extension Methods. I've recently been brushing up on my c# and .NET skills, and have started to post some blogs on my findings. To start I have been looking at Extension methods, and how they can be useful in every day coding. Firstly, a few rules. MSDN states that ;. So, to start with we will create 2 static classes (in this example the static classes are in the same namespace as the console application). Lets deal with the IntExtensions. And passing the base as a pa...
kevmooresblog.blogspot.com
Kev Moore's Blog: March 2008
http://kevmooresblog.blogspot.com/2008_03_01_archive.html
Monday, 17 March 2008. This is my first global blog. I've been a bit rubbish at getting on the whole blog scene and thought it was about time I jumped on the bandwagon. This blog will mainly be my .NET coding experiences, including samples and in some cases video blogs. However there is non .NET side to me which will also be blogged here. This is the Video editing/screen writing/comedy side. Subscribe to: Posts (Atom). View my complete profile.
kevmooresblog.blogspot.com
Kev Moore's Blog: September 2008
http://kevmooresblog.blogspot.com/2008_09_01_archive.html
Tuesday, 23 September 2008. Debugging .NET Compact Framework Part 1 - Remote Performance Monitor. The Remote Performance Monitor (RPC) application is truly awesome! 160; Ever had your Windows Mobile applications report memory problems? 160; Well this baby can show you where your problems could reside. This blog will show you how to setup the RPC with Visual Studio and remotely check its performance (without even using a proper PDA)! Which can be downloaded from;. Create the SmartDevice Application.
kevmooresblog.blogspot.com
Kev Moore's Blog: Fun with Expression Trees
http://kevmooresblog.blogspot.com/2008/09/fun-with-expression-trees.html
Monday, 22 September 2008. Fun with Expression Trees. I have just been looking through some old code, and found a classic method that most people will use at some point;. Now, I gots a thinking. Instead of using a method (or indeed a property) for this type of expression, why not use the C# 3.0 Expression Tree functionality? 160; So just for a larf I came up with;. The problem here is that in order to use the expression tree I have to call Compile(). On the expression before invoking it. .
kevmooresblog.blogspot.com
Kev Moore's Blog: Importing an Excel spreadsheet using C#
http://kevmooresblog.blogspot.com/2008/04/importing-excel-spreadsheet-using-c.html
Monday, 21 April 2008. Importing an Excel spreadsheet using C#. Here is a simple snippet which shows how to import data from an excel spreadsheet into your domains objects using c#. . The following code snippets form part of a static helper class called ExcelImport.cs. We make use of generics here, in that we assume the developer is aware of the type of object they are trying to populate from the excel spreadsheet. . Snippet 1 - Static import Class, Parse K Method. IEnumerable K Parse K ( string. The Po...
kevmooresblog.blogspot.com
Kev Moore's Blog: My First Blog !
http://kevmooresblog.blogspot.com/2008/03/my-first-blog.html
Monday, 17 March 2008. This is my first global blog. I've been a bit rubbish at getting on the whole blog scene and thought it was about time I jumped on the bandwagon. This blog will mainly be my .NET coding experiences, including samples and in some cases video blogs. However there is non .NET side to me which will also be blogged here. This is the Video editing/screen writing/comedy side. Dot Net Training in Chennai. 16 December 2015 at 21:44. Subscribe to: Post Comments (Atom).
kevmooresblog.blogspot.com
Kev Moore's Blog: Debugging .NET Compact Framework Part 1 - Remote Performance Monitor
http://kevmooresblog.blogspot.com/2008/09/debugging-net-compact-framework-part-1.html
Tuesday, 23 September 2008. Debugging .NET Compact Framework Part 1 - Remote Performance Monitor. The Remote Performance Monitor (RPC) application is truly awesome! 160; Ever had your Windows Mobile applications report memory problems? 160; Well this baby can show you where your problems could reside. This blog will show you how to setup the RPC with Visual Studio and remotely check its performance (without even using a proper PDA)! Which can be downloaded from;. Create the SmartDevice Application.
kevmooresblog.blogspot.com
Kev Moore's Blog: April 2008
http://kevmooresblog.blogspot.com/2008_04_01_archive.html
Monday, 21 April 2008. Importing an Excel spreadsheet using C#. Here is a simple snippet which shows how to import data from an excel spreadsheet into your domains objects using c#. . The following code snippets form part of a static helper class called ExcelImport.cs. We make use of generics here, in that we assume the developer is aware of the type of object they are trying to populate from the excel spreadsheet. . Snippet 1 - Static import Class, Parse K Method. IEnumerable K Parse K ( string. The Po...