I am starting online classes on Visual Studio .NET. I am using a trial
version of VS .NET 2003. One of my first projects says to do the following:
Create Forms
1. If Solution Explorer is not open, on the View menu, click Solution
Explorer.
2. In Solution Explorer, right-click the project name, point to Add,
and then click Add Windows Form.
3. In the Add New Item dialog box, in the Name box, type an appropriate
name for the form, and then click Open.
Add an Event Handler
1. Open the Code Editor for the form for which you want to add an event
handler.
2. In the Class Name list box, click (Base Class Events).
3. Click the drop-down arrow for the Method Name list box to view
events available for the form. Notice that the Event icon to the left of the
event name indicates that it is an event.
4. Click the event to add the event handler.
I was able to do the first step of creating a form, and opened the code
editor.
But where do I find the Class Name list box, so I can click (Base Class
Events)?
In other words, I am stuck at item 2 and beyond...
This is probably right in front of me, but when I tried helpt to search for
either Class Name or Base Class Events, it found 500 answers, none of which
seemed relevant!
Thanks,
Mich
CT - 02 Jul 2005 10:17 GMT
Mich,
The Class Name list box is at the top of the editibale text part of the
editor. There are two list boxes and it's the one to the left.

Signature
Carsten Thomsen
Enterprise Development with VS .NET, UML, AND MSF
http://www.apress.com/book/bookDisplay.html?bID=105
>I am starting online classes on Visual Studio .NET. I am using a trial
>version of VS .NET 2003. One of my first projects says to do the
[quoted text clipped - 39 lines]
>
> Mich
M Skabialka - 05 Jul 2005 14:36 GMT
Thank-you, I had been quite at a loss to find this.
When you are new to an application all of this is quite mysterious, and the
online classes assume you know all of the lingo associated with it, but
really it's like learning a new language, and there's no dictionary
included!
Thanks,
Mich
> Mich,
>
[quoted text clipped - 44 lines]
>>
>> Mich
M Skabialka - 05 Jul 2005 19:23 GMT
Another one I can't find:
Select the control.
Set the TabIndex property to the required value.
Set the TabStop property to True.
I found TabIndex under properties, but not TabStop. Where is this located
so I can change it?
Thanks,
Mich
> Mich,
>
[quoted text clipped - 44 lines]
>>
>> Mich
CT - 08 Jul 2005 07:53 GMT
It should be right below TabIndex in the Property window. However, not all
controls have a TabStop property. Try adding a Button control to your form
and then lookup the TabStop property in the Property window.

Signature
Carsten Thomsen
Enterprise Development with VS .NET, UML, AND MSF
http://www.apress.com/book/bookDisplay.html?bID=105
Communities - http://community.integratedsolutions.dk
> Another one I can't find:
>
[quoted text clipped - 56 lines]
>>>
>>> Mich