Posts

Showing posts from 2016

.Net framework 4.5.2 for Visual Studio 2010

Image
.Net framework 4.5.2 for Visual Studio 2010 Visual Basic 2010 Advanced Compiler If you have installed Visual Studio 2010 on Windows 7, 8, 10 recently, you will notice that you have all .Net Framework versions available, and you will notice also that you Windows updates .net framework versions to a higher versions (i.e. If you have .net framework 4, windows will update this to 4.5) but you won't find .net framework v4.5 in your Visual Studio 2010, why ?! Because targeting .net framework 4.5 via Visual Studio 2010 Each version of VS prior to Visual Studio 2010 is tied to a certain .NET framework. (VS2008 is .NET 3.5, VS2005 is .NET 2.0, VS2003 is .NET1.1) VS2010 and beyond allow for targeting of prior framework versions but cannot be used for future releases. You must use Visual Studio 2012 in order to utilize .NET 4.5. ♥ Here are some online Visual Basic lessons and courses : Visual Basic .Net snippets collection Visual Basic .Net - How to chec

VB 2010 with MS Access 2010 Error Conversion from type 'DBNull' to type 'String' is not valid.

Image
VB .NET Error Conversion from type 'DBNull' to type 'String' is not valid. VB .NET Conversion from type 'DBNull' to type 'String' is not valid. Error : Conversion from type 'DBNull' to type 'String' is not valid. Cause : Trying to Fetch Data From empty database table field, where database table field doesn't have any data 'null'. Solution : According to StackOverFlow , you may also try this solution instead, which also work fine but you need to determine at which end your problem exists "The application" or "The Database table", because you can workaround your this problem "DBNull" from Database table or from Visual Basic .Net. ♥ Here are some online Visual Basic lessons and courses : Visual Basic .Net - Snippets collection Visual Basic .Net - How to check for the internet connection Visual Basic .Net - POP3 and Receiving E-mails Visual Basic .Net - Generate Random Combinations Visual Ba