Hannes, nothing but the blank form appears on Win7/VS2010. It upgrades successfully, but complains about no Form1. I changed the form to frmTet to get it to show up.
I haven't yet received VS 2010 , so I can not make a statement as to what happens in it
I did notice though that it has given me that error before ( in VS 2005 ), I guess I should make a new project and copy these things in there and see if that would resolve that issue, hopefully
Thanx for your valuable input David - I'll buy you a sixpack Buddweisers one day LOL!
I have not read the entire thread, but could not resist to suggest replacing this:
Originally Posted by HanneSThEGreaT
...
Code:
''' <summary>
''' Determine Existance Of In Memory Graphic
''' </summary>
''' <returns></returns>
''' <remarks></remarks>
Public Function ValidGraphic() As Boolean
If Not (g Is Nothing) And Not (InMemoryGraphics Is Nothing) Then
Return True 'If There Is A Graphic In Memory
Else
Return False 'If Not
End If
End Function
...
with:
Code:
''' <summary>
''' Determine Existance Of In Memory Graphic
''' </summary>
''' <returns>Return True 'If There Is A Graphic In Memory; Return False 'If Not
''' </returns>
''' <remarks></remarks>
Public Function ValidGraphic() As Boolean
Return (g IsNot Nothing) AndAlso (InMemoryGraphics IsNot Nothing)
End Function
OK, before you shoot me down... I know I should practise what I preach...
I think this is the final version of my Tetris game. Anyone willing to help identify more issues are more than welcome. I have forgotten this thread until recently, and I'd like to get my final version of Tetris up and running and get the last part of this article series published.
If you have any hints, suggestions, fixes let me know and I will obviously credit you in my article as well
* The Best Reasons to Target Windows 8
Learn some of the best reasons why you should seriously consider bringing your Android mobile development expertise to bear on the Windows 8 platform.