Click here to Skip to main content
15,886,362 members

Comments by James R. Twine (Top 2 by date)

James R. Twine 25-Jul-12 13:48pm View    
ClientBounds is not a member of ContentManager. I think you are looking for something derived from GameWindow. If GameScreen already had a field/property called Window (of type GameWindow), you would have hidden it by declaring a field called Window in the GameplayScreen class.

You can see if this is the case by changing the code:

ContentManager Content;
ContentManager Window;

to something like:


ContentManager Content;
ContentManager _Window;

And see if things work. Of course, the second instance of ContentManager could be an error entirely -- you may have wanted a different type there.

-=- James.
James R. Twine 25-Jul-12 13:43pm View    
I thought you would only see active sockets in NETSTAT, so you would have to either called a listen on it, or have it connected to something.