Hey Guys,
I am currently making a VB.net version of the Classic Ski Free at the moment. (which is going really well)
But I got a issue where I got a panel on the main form (the player movement area) and when I full screen the application obviously the panel stays in its original position. I would like to position it central to what the current resolution is.
Here is the basic code I am currently using to make the form Full Screen
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
Me.Size = SystemInformation.PrimaryMonitorSize
Me.Location = New Point(0, 0)
Me.TopMost = True
Can anyone help?
Thanks