Hi friends i am getting an error while creating the .dll for a component in vb.net....
the error is
Inherits System.ComponentModel.icontainer is not defined...
my code is:
pls give me a idea whats my mistake and let me know how to craete a .dll for component.....
Thank you
Satya
the error is
Inherits System.ComponentModel.icontainer is not defined...
my code is:
Visual Basic:
Imports System
Imports System.Data
Imports System.ComponentModel.Component
Public Class Component1
Inherits System.ComponentModel.Component
Public Function func() As String
func = "func from component1"
End Function
#Region " Component Designer generated code "
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
MyClass.New()
'Required for Windows.Forms Class Composition Designer support
Container.Add(Me)
End Sub
Public Sub New()
MyBase.New()
'This call is required by the Component Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Component 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 Component Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Component Designer
'It can be modified using the Component Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
components = New System.ComponentModel.Container()
End Sub
#End Region
End Class
pls give me a idea whats my mistake and let me know how to craete a .dll for component.....
Thank you
Satya
Last edited by a moderator: