Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Understanding and Creating Classes - 14
Apr 23, 2012 at 10:22 AMI installed the free version of Microsoft Visual Basic 2010 Express and it works fine without adding the code snip-its.
Otherwise you need to add them...
Private _make As String
Public Property Make() As String
Get
Return _make
End Get
Set(ByVal value As String)
_make = value
End Set
End Property
Understanding and Creating Classes - 14
Apr 19, 2012 at 10:26 AMOK, What we needed to do Antonio, is let it fill in the pseudo code.
It should only give you a warning.
Everything should then work as advertised.
At least it does for me. I am also running using Visual Studio 2008.