Latest Posts
-
C# MySQL On Windows Named Pipes Development Mode
While outlining the scope for a new project I’ve considered the possibility of using MySQL for budgeting purposes with respect to the potential size and growth rate of the database. I downloaded and ran through the latest setup for MySQL… Continue reading
-
C# Application Not Responding Issue on Long Running Threads
Undoubtedly many of you have encountered the dreaded “Application Not Responding” message, programmers and non-programmers alike. In general, this is caused by the OS misinterpretation of long delays in form refresh, even though these can easily be caused by a… Continue reading
-
Get Specific File in Revision SVN
After discussion with my colleague, as well as numerous links on top Google searches which indicated this was not possible or to use “svn export”.. we finally decided to analyze a well known PHP SVN Client which had a “getfile”… Continue reading
-
C# Event Handlers and Delegates in ASP .Net with Web User Controls
This article should help as a general how to on event handlers and delegates in C# as well as propose a different way to handle cross page methods in your ASP .Net website from a web user control or other… Continue reading
-
Track Amazon Price Changes
Products on amazon can change in price as much as hundreds of dollars between days. If the item is in your cart, amazon tells you the next time you log back in how much the price has changed by and… Continue reading
-
call parent page from user control to invoke page methods
To illustrate how we will accomplish this using Reflections, we will be using repeater in a user control within a page. Your repeater loads data easily within the user control code behind, but you want to utilize the “ItemCommand” event… Continue reading
-
C# .Net Clone and Copy Objects using Extension Methods
One of my earliest blog articles – Clone Objects in .Net Using Reflections – briefly discusses shallow and deep object copying and cloning. For more info. on the semantics and what these terms really mean, see referenced wikipedia article. You… Continue reading