Click here to Skip to main content
15,915,703 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Function that returns a dataset Pin
Christian Graus19-Dec-06 18:24
protectorChristian Graus19-Dec-06 18:24 
AnswerRe: Function that returns a dataset Pin
ChandraRam19-Dec-06 23:52
ChandraRam19-Dec-06 23:52 
QuestionCloning an object Pin
MikeMarq19-Dec-06 12:46
MikeMarq19-Dec-06 12:46 
AnswerRe: Cloning an object Pin
Keith Malwitz19-Dec-06 13:32
Keith Malwitz19-Dec-06 13:32 
GeneralRe: Cloning an object Pin
MikeMarq19-Dec-06 14:18
MikeMarq19-Dec-06 14:18 
AnswerRe: Cloning an object Pin
Andre L.A.C Bittencourt19-Dec-06 14:48
Andre L.A.C Bittencourt19-Dec-06 14:48 
GeneralRe: Cloning an object Pin
MikeMarq19-Dec-06 17:49
MikeMarq19-Dec-06 17:49 
GeneralRe: Cloning an object Pin
Keith Malwitz19-Dec-06 17:45
Keith Malwitz19-Dec-06 17:45 
The previous poster is dead-on.

You will need to write a function in your class that implements the ICloneable.Clone.

For example:

Public Class MyClass

Public Function Clone() as Object Implements ICloneable.Clone
Return Me.MemberwiseClone()
End Function

End Class

You can then call the Clone function from outside the class to create a shallow copy of your type.
Questionaotomating Word doc Pin
rey195119-Dec-06 7:54
rey195119-Dec-06 7:54 
QuestionTyping Tuition Program in VB.NET Pin
harveyhanson19-Dec-06 6:30
harveyhanson19-Dec-06 6:30 
AnswerRe: Typing Tuition Program in VB.NET Pin
The ANZAC19-Dec-06 10:24
The ANZAC19-Dec-06 10:24 
AnswerRe: Typing Tuition Program in VB.NET Pin
MikeMarq19-Dec-06 13:30
MikeMarq19-Dec-06 13:30 
GeneralRe: Typing Tuition Program in VB.NET Pin
Paul Conrad19-Dec-06 13:38
professionalPaul Conrad19-Dec-06 13:38 
GeneralRe: Typing Tuition Program in VB.NET Pin
MikeMarq19-Dec-06 14:39
MikeMarq19-Dec-06 14:39 
GeneralRe: Typing Tuition Program in VB.NET Pin
Paul Conrad19-Dec-06 15:07
professionalPaul Conrad19-Dec-06 15:07 
GeneralRe: Typing Tuition Program in VB.NET Pin
Steven J Jowett19-Dec-06 22:48
Steven J Jowett19-Dec-06 22:48 
AnswerRe: Typing Tuition Program in VB.NET Pin
Paul Conrad19-Dec-06 13:40
professionalPaul Conrad19-Dec-06 13:40 
QuestionDAO and Data Reports Pin
ZulnurainAdil19-Dec-06 5:24
ZulnurainAdil19-Dec-06 5:24 
AnswerRe: DAO and Data Reports Pin
Dave Kreskowiak19-Dec-06 5:41
mveDave Kreskowiak19-Dec-06 5:41 
GeneralRe: DAO and Data Reports Pin
ZulnurainAdil19-Dec-06 5:49
ZulnurainAdil19-Dec-06 5:49 
GeneralRe: DAO and Data Reports Pin
Dave Kreskowiak19-Dec-06 8:07
mveDave Kreskowiak19-Dec-06 8:07 
QuestionI have a question about WDSL and SOAP Pin
Tom Wright19-Dec-06 5:21
Tom Wright19-Dec-06 5:21 
QuestionTalking over the wire Pin
Karma3125119-Dec-06 3:40
Karma3125119-Dec-06 3:40 
AnswerRe: Talking over the wire Pin
Dave Kreskowiak19-Dec-06 4:57
mveDave Kreskowiak19-Dec-06 4:57 
AnswerRe: Talking over the wire Pin
infra2k419-Dec-06 5:01
infra2k419-Dec-06 5:01 

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.