Click here to Skip to main content
15,886,833 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
Gideon Engelberth22-Jul-09 12:36
Gideon Engelberth22-Jul-09 12:36 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
Luc Pattyn22-Jul-09 12:49
sitebuilderLuc Pattyn22-Jul-09 12:49 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
i_kant_spel22-Jul-09 15:37
i_kant_spel22-Jul-09 15:37 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
Gideon Engelberth22-Jul-09 16:02
Gideon Engelberth22-Jul-09 16:02 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
Gideon Engelberth22-Jul-09 15:50
Gideon Engelberth22-Jul-09 15:50 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
i_kant_spel22-Jul-09 17:42
i_kant_spel22-Jul-09 17:42 
AnswerRe: How do I modify a class so you can convert a String to it? Pin
Steven J Jowett23-Jul-09 1:48
Steven J Jowett23-Jul-09 1:48 
GeneralRe: How do I modify a class so you can convert a String to it? Pin
i_kant_spel23-Jul-09 5:48
i_kant_spel23-Jul-09 5:48 
I haven't set any default properties. It compiles fine without default properties. The IKGrid.vb file looks like this now:

Public Class IKGrid

    Public Property Columns(ByVal s As Short) As IKColumn
        Get
            Return Nothing
        End Get
        Set(ByVal value As IKColumn)

        End Set
    End Property

End Class

Public Class IKColumn

    Public Shared Widening Operator CType(ByVal src As String) As IKColumn
        Return Nothing
    End Operator

    Public Property Caption() As String
        Get
            Return ""
        End Get
        Set(ByVal value As String)

        End Set
    End Property

End Class


And I can call myIKGrid.Columns(0).Caption = "English" just fine without Caption being a default property.
GeneralRe: How do I modify a class so you can convert a String to it? Pin
Steven J Jowett23-Jul-09 23:28
Steven J Jowett23-Jul-09 23:28 
QuestionClass Objects Accessing in different Form- Same Project Pin
Paramu197322-Jul-09 6:03
Paramu197322-Jul-09 6:03 
AnswerRe: Class Objects Accessing in different Form- Same Project Pin
Nagy Vilmos22-Jul-09 6:11
professionalNagy Vilmos22-Jul-09 6:11 
QuestionFind the active window on a computer. Pin
nolesce22-Jul-09 5:31
nolesce22-Jul-09 5:31 
AnswerRe: Find the active window on a computer. Pin
Muhammad Mazhar22-Jul-09 6:18
Muhammad Mazhar22-Jul-09 6:18 
Questionsaving data problem when using function for dataadapter and data set Pin
hemrk22-Jul-09 5:18
hemrk22-Jul-09 5:18 
AnswerRe: saving data problem when using function for dataadapter and data set Pin
DoctorMick22-Jul-09 6:20
DoctorMick22-Jul-09 6:20 
GeneralRe: saving data problem when using function for dataadapter and data set Pin
hemrk22-Jul-09 7:56
hemrk22-Jul-09 7:56 
QuestionProject Publish Pin
Paramu197322-Jul-09 4:57
Paramu197322-Jul-09 4:57 
AnswerRe: Project Publish Pin
Vimalsoft(Pty) Ltd22-Jul-09 5:09
professionalVimalsoft(Pty) Ltd22-Jul-09 5:09 
GeneralRe: Project Publish Pin
Paramu197322-Jul-09 5:20
Paramu197322-Jul-09 5:20 
GeneralRe: Project Publish Pin
Vimalsoft(Pty) Ltd22-Jul-09 20:05
professionalVimalsoft(Pty) Ltd22-Jul-09 20:05 
QuestionOutlook Add-In Setup Problem Pin
dcdhingra22-Jul-09 3:40
dcdhingra22-Jul-09 3:40 
Questionhow to generate reports using crystal report in vb Pin
myperacq22-Jul-09 0:07
myperacq22-Jul-09 0:07 
AnswerRe: how to generate reports using crystal report in vb Pin
Steven J Jowett22-Jul-09 1:49
Steven J Jowett22-Jul-09 1:49 
QuestionError :The Workgroup information file is missing or opeaned exclusively by another user Pin
rhtbhegade22-Jul-09 0:02
rhtbhegade22-Jul-09 0:02 
AnswerRe: Error :The Workgroup information file is missing or opeaned exclusively by another user Pin
Ashfield22-Jul-09 1:51
Ashfield22-Jul-09 1: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.