Browse by Tags

02 May 2009
Solution to the “You tried to assign the Null value to a variable that is not a Variant data type.” Exception
By default the DataSource wizard passes parameters for AutoNumber primary keys. If you are getting this error: You tried to assign the Null value to a variable that is not a Variant data type. Then you need to remove that default parameter. This is what Read More...
1 Comments
Filed under: , , , ,
 
02 May 2009
Solution to the “Format of the initialization string does not conform to specification starting at index 0.” Exception
You are probably using the wrong DbConnection class. If you are using Access then make sure you use OleDbConnection, not SqlConnection…and vice versa. Alternatively you could be referencing your MDB file wrong. Here’s the proper way: <connectionStrings> Read More...
2 Comments
Filed under: , , , ,
 
30 April 2009
How to watch ABC.com shows on Windows 7
For some reason ABC.com does an OS check when loading the MoveNetworks player. If you are using Windows 7 you’ll see an error like this: Oops Our new video player is only available for: Windows XP/Vista - Internet Explorer, Firefox Mac - Firefox, Safari. Read More...
7 Comments
Filed under: ,
 
06 April 2009
Solution to “Operation must use an updateable query” Exception when writing to an Access Database from ASP.NET
Could be a couple of things: The file is marked as read-only. Right click on file, uncheck “read only”. The application pool identity doesn’t have write permissions to the folder that contains the MDB. Find the identity of the application pool (using Read More...
03 March 2009
The simplest DataSet to Excel solution
Tim Mackey has a very simple method for converting DataSets to Excel spreadsheets. http://tim.mackey.ie/HowtoExportADatasetToExcelCAspnet.aspx Thanks Tim! Read More...
1 Comments
Filed under: , , ,
 
25 February 2009
Solution to Method has no implementation (no RVA) Error
If you get this exception System.TypeLoadException: Could not load type ‘x’ from assembly 'xx, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' because the method 'SendMessage' has no implementation (no RVA). Make sure you have a DllImport attribute Read More...
1 Comments
Filed under: ,
 
17 February 2009
Delete all Outlook RSS Feeds
My Outlook RSS Feeds were in a really funky state this morning.  I had to create a new profile and I had RSS Sync enabled.  When that is the case Outlook re-adds all Feeds that you have ever added to the machine back into your profile even if Read More...
0 Comments
Filed under: , , , ,
 
19 November 2008
Solution to the SQL Server 2008 with Visual Studio 2008 SP1 Install Exception: "SQL Server 2008 setup requires .NET Framework 3.5 to be installed"
You would have never guess this by the error message, but ""SQL Server 2008 setup requires .NET Framework 3.5 to be installed" when you have Visual Studio 2008 SP1 installed means that you need to install Windows Installer 4.5, which can be found here: Read More...
19 November 2008
Solution to the Windows Exception: "The security database on the server does not have a computer account for this workstation trust relationship"
Got this error when logging into a machine that I hadn't touched in months: "the security database on the server does not have a computer account for this workstation trust relationship" Not exactly sure why, but changing from a FQDN to a short name resolved Read More...
11 Comments
Filed under: ,
 
07 December 2007
System.Net.Mail.MailMessage Mail Header Casing Issue Fixed in .NET 2.0 SP1 & .NET 3.5
With the transition of MailMessage from System.Web.Mail to System.Net.Mail there were some mail header casing changes that caused mail sent to Hotmail and Live email addresses to appear as being successfully sent, but failed to arrive at the destination Read More...
02 December 2007
LINQ: Sequence contains no elements. InvalidOperationException when calling Single
If you call Single to get an object from your DB and the object doesn't exist you will get an InvalidOperationException. return this .DataContext.MemberDaos.Single(m => m.MemberID == id); Instead of Single, use SingleOrDefault, which will return null Read More...
7 Comments
Filed under: , ,
 
01 December 2007
LINQ: "Add" renamed to "InsertOnSubmit"
If you are using LINQ to insert data with RTM bits you won't find the Add method on the DataContext post Beta2. Use the InsertOnSubmit method instead. Read More...
6 Comments
Filed under: , ,
 
14 March 2007
Solution: WPF/e not showing up on new server deployment
I just deployed a new wpf/e control to a new server and found that I need to register the content types for xaml, etc. You will find the configuration steps here: http://msdn2.microsoft.com/en-us/library/ms752346.aspx Read More...
0 Comments
Filed under: , ,
 
06 March 2007
Solution to "is null or not an object" error with ScriptService
I just spent the last few hours trying to track down why I kept getting an "is null or not an object" error when setting up a service with a ScriptService attribute. I started my coding with a PageMethods implementation, but moved to a ScriptReference Read More...
26 February 2007
Solution: How to get the InnerText value of a node when using XmlDataSource
Lets say you have this xml: <Blog> <BlogPost Date="2/21/2006" Title="Blog Title"> Blog Content </BlogPost> </Blog> And you are using an XmlDataSource to run it through a repeater. You can easily get the attributes like so: <%#Eval("Date")%> Read More...
1 Comments
Filed under: ,
 
More Posts Next page »
Page view tracker