Click here to Skip to main content
15,895,799 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Panels Pin
Henry Minute23-Jun-09 1:45
Henry Minute23-Jun-09 1:45 
GeneralRe: Panels Pin
mirzamujib23-Jun-09 10:39
mirzamujib23-Jun-09 10:39 
GeneralRe: Panels Pin
Henry Minute23-Jun-09 11:58
Henry Minute23-Jun-09 11:58 
QuestionMS Chart - Problem to display the records in Range Column Chart Pin
Jegansinna23-Jun-09 0:06
Jegansinna23-Jun-09 0:06 
QuestionExecute MSWord Label Mail-Merge Using VB.NET Pin
Indra PR22-Jun-09 23:30
Indra PR22-Jun-09 23:30 
QuestionProperty grid [modified] Pin
bhargava240922-Jun-09 23:28
bhargava240922-Jun-09 23:28 
AnswerRe: Property grid Pin
Christian Graus23-Jun-09 1:20
protectorChristian Graus23-Jun-09 1:20 
GeneralRe: Property grid Pin
bhargava240923-Jun-09 1:43
bhargava240923-Jun-09 1:43 
above i modified my question in proper way.
My main problem is i am creating multiple drop downs using class for each dropdown.i created one drop down but i can not able to create multiple.
Getting error called base class have multiple definetions. code i am trying for drope down is:
Imports System.ComponentModel
Public Class MotoList1 : Inherits System.ComponentModel.StringConverter
'''
'''
Private _Title As String
Private _Show As Boolean
Private _Number As Short
'''

<CategoryAttribute("Other Inputs"), _
Browsable(True), _
[ReadOnly](False), _
BindableAttribute(False), _
DefaultValueAttribute(""), _
DesignOnly(False), _
DescriptionAttribute("Enter Title for the application")> _
Public Property Title() As String
Get
Return _Title
End Get
Set(ByVal Value As String)
_Title = Value
End Set
End Property
'''
<CategoryAttribute("Other Inputs"), _
Browsable(True), _
[ReadOnly](False), _
BindableAttribute(False), _
DefaultValueAttribute("True"), _
DesignOnly(False), _
DescriptionAttribute("Show option")> _
Public Property Show() As Boolean
Get
Return _Show
End Get
Set(ByVal Value As Boolean)
_Show = Value
End Set
End Property
'''
<CategoryAttribute("Other Inputs"), _
Browsable(True), _
[ReadOnly](False), _
BindableAttribute(False), _
DefaultValueAttribute("0"), _
DesignOnly(False), _
DescriptionAttribute("Enter a number")> _
Public Property Number() As Short
Get
Return _Number
End Get
Set(ByVal Value As Short)
_Number = Value
End Set
End Property
Dim _Motor1in As String() = New String() {"400", "500"}

Public Overloads Overrides Function GetStandardValues(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.ComponentModel.TypeConverter.StandardValuesCollection
Return New StandardValuesCollection(_Motor1in)
End Function
'''
Public Overloads Overrides Function GetStandardValuesSupported(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean
Return True
End Function
'''
Public Overloads Overrides Function GetStandardValuesExclusive(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean
Return True
End Function
'''
End Class


here while am trying to create another drop down --GetStandardValues-- i got error as function can not be over ride
that is the my problem
Questionvb6 database Pin
spruha36922-Jun-09 18:35
spruha36922-Jun-09 18:35 
AnswerRe: vb6 database Pin
TheMrProgrammer22-Jun-09 18:59
TheMrProgrammer22-Jun-09 18:59 
GeneralRe: vb6 database Pin
spruha36922-Jun-09 22:20
spruha36922-Jun-09 22:20 
AnswerRe: vb6 database Pin
Christian Graus22-Jun-09 19:26
protectorChristian Graus22-Jun-09 19:26 
AnswerRe: vb6 database Pin
Pasan14822-Jun-09 22:19
Pasan14822-Jun-09 22:19 
GeneralRe: vb6 database Pin
spruha36922-Jun-09 22:21
spruha36922-Jun-09 22:21 
AnswerRe: vb6 database Pin
David Skelly22-Jun-09 22:41
David Skelly22-Jun-09 22:41 
GeneralRe: vb6 database Pin
spruha36922-Jun-09 23:20
spruha36922-Jun-09 23:20 
QuestionOpenGL with VB .NET Pin
Forgon22-Jun-09 14:17
Forgon22-Jun-09 14:17 
AnswerRe: OpenGL with VB .NET Pin
Eslam Afifi22-Jun-09 14:55
Eslam Afifi22-Jun-09 14:55 
QuestionWith clouse Pin
Bahram.Zarrin22-Jun-09 11:02
Bahram.Zarrin22-Jun-09 11:02 
AnswerRe: With clouse Pin
Christian Graus22-Jun-09 11:05
protectorChristian Graus22-Jun-09 11:05 
GeneralRe: With clouse Pin
EliottA22-Jun-09 11:11
EliottA22-Jun-09 11:11 
GeneralRe: With clouse Pin
Dalek Dave22-Jun-09 23:54
professionalDalek Dave22-Jun-09 23:54 
GeneralRe: With clouse Pin
dan!sh 23-Jun-09 2:53
professional dan!sh 23-Jun-09 2:53 
QuestionWinsock 2005 Problem Pin
morpheusv622-Jun-09 6:48
morpheusv622-Jun-09 6:48 
AnswerRe: Winsock 2005 Problem Pin
Dave Kreskowiak23-Jun-09 5:43
mveDave Kreskowiak23-Jun-09 5:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.