Declaring module variables ??

jaymcfly

New member
Joined
Feb 11, 2009
Messages
1
Programming Experience
Beginner
Hi guys,

I am new to the forum and new to the visual studio set up and have been working at a practical at home and have ran into some difficulty. The notes say that I am to declare several module variables below the section entitled ‘Windows Form Designer Generated Code’

I have the rest of the form complete but have been unable to locate where I am to place this code. Can someone please tell me how I can locate it as it has been driving me mad for the last few hours lol

Your help is greatly appreciated in advance.

Thank you
 
You place it in the same user code area you have put your other class code. "module level" means "class level", ie not within a method body. ‘Windows Form Designer Generated Code’ was removed from the user code area after .Net 1.1 and put in partial class files.
 
Back
Top