Hey everyone. I am having trouble with writing settings from a Windows form for my game. What I'm trying to do is have the user input the screen resolution width and height in a Windows form, write it to a binary file, then open the file with the game and pass the variables to Viewport.Width and Height.
These are the 2 errors I'm getting:
Code:
An object reference is required for the non-static field, method, or property 'ShovelShovel.WindowSize.Width.get'
An object reference is required for the non-static field, method, or property 'ShovelShovel.WindowSize.Height.get'
I'll attach my code, since I think it would be easier for anyone who could help me to see the whole code instead of just snippets.
Thank you so much to anyone who can help me. I admit I am still a beginner, so I get confused easily...
Usually we do not delete, if question could help somenone. That's why we encourage to post solution when quester itself find out.
Error you got was about a variable instance used before being created. Sounds as if somewhere you forgot a
Code:
x= new theRequiredType()
...at present time, using mainly Net 4.0, Vs 2010
Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
all the other wonderful people who made and make Codeguru a great place.
Come back soon, you Gurus.
Bookmarks