Hi! I use Visual Basic 2010 Express. I am learning this now, and after a few days googling without any result. Please-please help:

1) At the beginning of the program, I want to declare an array Pass(500) as Boolean and all has True value from the beginning.
I don't want to declare one by one like this:
Pass(1) as Boolean = True
Pass(2) as Boolean = True
etc...

How can I do that? (I should use For I=1 to 500 : Pass(I)=True : Next I, but where?)
Can I put in the Main() Procedure? If yes, how? If not, where should I put those lines?

2) About Main(): I still don't know how to use Main()...it reacts differently than any other Procedure I made...
I can't declare variable, I can't declare TextBox1.Text="Try try try". Always error. Why?
How can I declare that? (I want to add "Try Try Try" to my TextBox1.Text at the beginning of the program. How? --> I don't want to add via the TextBox1 Property in the Design Tab, but I want to do it manually at the beginning of the program).

3). How can I make the program wait until the user press a key?
I have a TextBox and a RichTextBox.
When the user type Quit in the TextBox & press enter, I will add "Are you sure ? (Y/N)" to the RichTextBox.
Then I want the program to stop, waiting for the user to press Y or N (it will loop forever if the user press another button).
Note: I know I can use MsgBox easily, but I don't want to use MsgBox.

Thx alot!