Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Need some info for VS.Net

Options
  • 24-04-2002 8:09pm
    #1
    Moderators, Science, Health & Environment Moderators Posts: 8,947 Mod ✭✭✭✭


    Howdy. If anyone has VS.Net official release could they paste the contents of the designer code in a generated vb form. i.e. the bit in #Region " Windows Form Designer generated code "
    This is because I have beta 2 which has outdated desgner code and won't work with the current version of the framework and I want to use it between now and when I get the official version. Thanks.


Comments

  • Registered Users Posts: 437 ✭✭Spunj


    here you go...
    #Region " Windows Form Designer generated code "
    
        Public Sub New()
            MyBase.New()
    
            'This call is required by the Windows Form Designer.
            InitializeComponent()
    
            'Add any initialization after the InitializeComponent() call
    
        End Sub
    
        'Form overrides dispose to clean up the component list.
        Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
            If disposing Then
                If Not (components Is Nothing) Then
                    components.Dispose()
                End If
            End If
            MyBase.Dispose(disposing)
        End Sub
    
        'Required by the Windows Form Designer
        Private components As System.ComponentModel.IContainer
    
        'NOTE: The following procedure is required by the Windows Form Designer
        'It can be modified using the Windows Form Designer.  
        'Do not modify it using the code editor.
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
            '
            'Form1
            '
            Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
            Me.ClientSize = New System.Drawing.Size(292, 266)
            Me.Name = "Form1"
            Me.Text = "Form1"
    
        End Sub
    
    #End Region
    
    


  • Moderators, Science, Health & Environment Moderators Posts: 8,947 Mod ✭✭✭✭mewso


    Many thanks. Just came from a developers conference where they gave us a 60 day trial version so that will probably do me until I the full version I persuaded the boss to buy arrives :)


Advertisement