i'm playing with vs7. It looks like the dogs!!!

Opened up a vb project, first thing i see is a basic template for a form...Check this out!


Code:
Imports System.ComponentModel
Imports System.Drawing
Imports System.WinForms


Public Class Form1
    Inherits System.WinForms.Form

    Public Sub New()
        MyBase.New

        Form1 = Me

        'This call is required by the Win Form Designer.
        InitializeComponent

        'TODO: Add any initialization after the InitializeComponent() call
    End Sub

    'Form overrides dispose to clean up the component list.
    Overrides Public Sub Dispose()
        MyBase.Dispose
        components.Dispose
    End Sub 
   
    Protected Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        
    End Sub
    
End Class

oh yes:-)


td.