this blog contains information for .net and sql stuffs. You can find various tips and tricks to overcome problem you may be facing in ...
Monday, October 1, 2012
Add Event/Appointment in Google Calendar with Google account credential.
Tuesday, June 5, 2012
Change default time out of strongly typed dataset table adapter command.
Public Sub SetCustomCommandTimeout()
Utility.SetCommandTimeout(CommandCollection)
End Sub
End Class
If (commands IsNot Nothing) Then
If (timeout < 0) Then timeout = GetConfigTimeout()
For Each cmd As System.Data.SqlClient.SqlCommand In commands
cmd.CommandTimeout = timeout
Next
End If
End Sub
Private Shared Function GetConfigTimeout() As Integer
Dim timeOut As Integer
If Not System.Configuration.ConfigurationManager.AppSettings("CommandExecutionTimeOut") Is Nothing Then
timeOut = CType(System.Configuration.ConfigurationManager.AppSettings("CommandExecutionTimeOut"), Integer)
Else
timeOut = 0
End If
Return timeOut
End Function
Thursday, January 12, 2012
Prerequisites could not be found for bootstrapping (while upgrading from VS 2005, 2008 to VS 2010)
When you try to add prerequisites, you will be surprised that it will not find your older version any more. Many forums said that Microsoft has disabled it and you need to upgrade to higher version of prerequisites.
You can see that in the given below images that shows unavailability.

To resolve this issue you need to copy boots trapper files.
Older version of VS files can be found at
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages
You need to copy files from above location to below location and once you copy required folders, you will be able to access those in prerequisites.
C:\Program Files\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages
Cheers!!