SQL Server 2008 “Timeout expired” error and SP1
Posted by andrewcushen in SQL Server on April 6, 2011
I recently came across another error when using SQL Server 2008. I recently applied Service Pack 1 to my server’s installation of SQL Server 2008. I had not done any development since then using the full version of SQL Server on the server; instead, as you will note from my recent blog entries on the [...]
Norton Internet Security: you have exceeded the number of activations allowed—and you are cut off!
Posted by andrewcushen in Uncategorized on April 6, 2011
WOW. I am shocked at the user-unfriendliness of Norton’s approach here. I had my Norton Internet Security automatically renewed last month. Although I was surprised at the price increase, I decided to live with it. Until today. Just now, I was working on an issue with Windows Installer on my desktop machine, when Norton suddenly [...]
Fixing SQL error 5170: Cannot create file ‘C:\[...]\APP_DATA\ASPNETDB_TMP.MDF’ because it already exists.in ASP.NET
Posted by andrewcushen in ASP.NET, SQL Server, Visual Studio on April 6, 2011
The problem I recently had, for the first time, to create a brand-new ASP.NET web application that made use of the built-in Membership/Roles functionality, using the default of SQL Server Express, NOT a full installation of SQL Server. I had previously wrestled with issues when upgrading an older application using Membership/Roles to ASP.NET 4.0, and [...]
ASP.NET/SQL Server: Failed to generate a user instance of SQL Server; Login failed for user ‘NT AUTHORITY\NETWORK SERVICE’
Posted by andrewcushen in ASP.NET, SQL Server on March 8, 2011
While working on an ASP.NET 4.0 web application that uses the built-in Membership tools, I recently encountered the above two errors which prevented the site from working until sorted. I suspect the errors were triggered by the SP1 update to SQL Server 2008, as the application was working fine prior to my finally applying the [...]
CSS 3.0: fixing IE 8 and below with PIE
Posted by andrewcushen in CSS, jQuery UI, Programming Tools on January 25, 2011
I recently set out to spice up my website with some CSS 3 features; namely, border-radius and box-shadow. These can be very effective in causing parts of your page to stand out, especially when used together, though there are some caveats to doing so, which I will discuss later. The main point of this post, [...]
Google’s App Inventor for Android – no programming required?
Posted by andrewcushen in Android phone programming, Programming Tools on December 3, 2010
Creating Android apps with App Inventor: no programming required? Created my first Android app last night using App Inventor–the claim is, “no programming required”, and it seems to live up to that—in a way. Rather than typing programming commands into an editor, per standard programming practice, you snap together pre-defined “blocks” of functionality by dragging and dropping [...]
How-to: upgrading BugZilla on Windows Server 2003 and IIS
Posted by andrewcushen in BugZilla, Programming Tools on October 13, 2010
This is a follow-up post to Installing BugZilla on Windows Server 2003 and IIS, which I posted back in April of 2008. Upgrading BugZilla on Windows: gotchas Recently, having gotten sick of seeing the blurb about new versions of BugZilla every time I logged in, having gotten bored with the somewhat plain-vanilla look, and having [...]
MS Test data-driven tests/.CSV file error: Column ‘columnname’ does not belong to table
Posted by andrewcushen in Unit Testing, Visual Studio on September 30, 2010
This is a maddening error, in the best Microsoft tradition of error-text-tells-you-nothing-about-the-real-cause. You are happily running your unit tests using MS Test, and you write a new unit test that requires a series of data to be thrown at the test. An example could be testing the validation code of a property setter. A perfect [...]
Hello WordPress!
Posted by andrewcushen in Andrew on September 27, 2010
I have just moved my Blog from Windows Live Spaces to WordPress. Welcome, everyone who followed me on Live Spaces.
VB.Net’s My.Settings and custom objects/classes; Part Two: Getting My.Settings to recognize your custom object
Posted by andrewcushen in My.Settings, VB.Net on September 27, 2010
Read Part one OK, so far everything has been pretty simple: adhere to the guidelines for making your class Serializable, and deal with complexities by Implementing ISerializable. So, your next step is to add a Setting, of the type of your custom class, to your application: Right-click your Project name at the top of Solution [...]