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

Visual Basic

 
GeneralRe: i want code please someone help Pin
Sk9324-Jun-09 3:02
Sk9324-Jun-09 3:02 
JokeRe: i want code please someone help Pin
Christian Graus24-Jun-09 10:39
protectorChristian Graus24-Jun-09 10:39 
GeneralRe: i want code please someone help Pin
Steven J Jowett25-Jun-09 0:38
Steven J Jowett25-Jun-09 0:38 
GeneralRe: i want code please someone help Pin
Jon_Boy25-Jun-09 1:31
Jon_Boy25-Jun-09 1:31 
GeneralRe: i want code please someone help Pin
Steven J Jowett25-Jun-09 2:39
Steven J Jowett25-Jun-09 2:39 
AnswerRe: i want code please someone help Pin
Dave Kreskowiak24-Jun-09 4:07
mveDave Kreskowiak24-Jun-09 4:07 
AnswerRe: i want code please someone help Pin
dan!sh 24-Jun-09 7:39
professional dan!sh 24-Jun-09 7:39 
Questionproperty grid Pin
bhargava240923-Jun-09 23:42
bhargava240923-Jun-09 23:42 
hi,i am trying to design a property grid that consisits of multiple drop downs of user defined and move those values selected to a variable in back end vb.net code and perform some matha matical calculations.
But i am not able to create multiple dropdowns in single group can any one help?
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
AnswerRe: property grid PinPopular
Christian Graus23-Jun-09 23:45
protectorChristian Graus23-Jun-09 23:45 
GeneralRe: property grid Pin
bhargava240924-Jun-09 0:11
bhargava240924-Jun-09 0:11 
GeneralRe: property grid Pin
Jon_Boy24-Jun-09 1:30
Jon_Boy24-Jun-09 1:30 
GeneralRe: property grid Pin
Henry Minute24-Jun-09 1:33
Henry Minute24-Jun-09 1:33 
AnswerRe: property grid Pin
Jon_Boy24-Jun-09 1:28
Jon_Boy24-Jun-09 1:28 
GeneralRe: property grid Pin
bhargava240925-Jun-09 0:39
bhargava240925-Jun-09 0:39 
Questioncan't write all text to txt file Pin
TheMrProgrammer23-Jun-09 22:50
TheMrProgrammer23-Jun-09 22:50 
AnswerRe: can't write all text to txt file PinPopular
Christian Graus23-Jun-09 23:06
protectorChristian Graus23-Jun-09 23:06 
GeneralRe: can't write all text to txt file Pin
Jon_Boy24-Jun-09 1:31
Jon_Boy24-Jun-09 1:31 
GeneralRe: can't write all text to txt file Pin
TheMrProgrammer24-Jun-09 4:25
TheMrProgrammer24-Jun-09 4:25 
GeneralRe: can't write all text to txt file Pin
Christian Graus24-Jun-09 10:41
protectorChristian Graus24-Jun-09 10:41 
GeneralRe: can't write all text to txt file Pin
TheMrProgrammer24-Jun-09 19:51
TheMrProgrammer24-Jun-09 19:51 
AnswerRe: can't write all text to txt file Pin
Luc Pattyn24-Jun-09 13:34
sitebuilderLuc Pattyn24-Jun-09 13:34 
GeneralRe: can't write all text to txt file Pin
TheMrProgrammer24-Jun-09 19:55
TheMrProgrammer24-Jun-09 19:55 
GeneralRe: can't write all text to txt file Pin
Luc Pattyn24-Jun-09 23:29
sitebuilderLuc Pattyn24-Jun-09 23:29 
GeneralRe: can't write all text to txt file Pin
TheMrProgrammer25-Jun-09 3:37
TheMrProgrammer25-Jun-09 3:37 
GeneralRe: can't write all text to txt file Pin
Luc Pattyn25-Jun-09 3:51
sitebuilderLuc Pattyn25-Jun-09 3:51 

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.