Click here to Skip to main content
15,908,175 members
Home / Discussions / C#
   

C#

 
GeneralRe: Overriding the Closing event Pin
1-Apr-02 22:57
suss1-Apr-02 22:57 
GeneralRe: Overriding the Closing event Pin
James T. Johnson2-Apr-02 1:19
James T. Johnson2-Apr-02 1:19 
GeneralRe: Overriding the Closing event Pin
2-Apr-02 2:15
suss2-Apr-02 2:15 
GeneralRe: Overriding the Closing event Pin
James T. Johnson2-Apr-02 3:34
James T. Johnson2-Apr-02 3:34 
GeneralRe: Overriding the Closing event Pin
Ludwig Stuyck2-Apr-02 20:24
Ludwig Stuyck2-Apr-02 20:24 
Generalstatic members vs namespace helper functions Pin
myfriendofmisery1-Apr-02 14:15
myfriendofmisery1-Apr-02 14:15 
GeneralRe: static members vs namespace helper functions Pin
Tom Archer2-Apr-02 7:50
Tom Archer2-Apr-02 7:50 
GeneralTrouble with CollectionBase Pin
1-Apr-02 12:26
suss1-Apr-02 12:26 
I created a collection class using the .NET help files, but when I add objects to the collection, it appears as though the each new object copies itself throughout the collection--all objects in the collection become equal to the new added object. Anyone run into this before?

Here's a snip of code to give you a idea of what I'm doing...

namespace NatesKentuckyRook.Classes
{
public class RookCards : System.Collections.CollectionBase
{
// Constructors
public RookCards()
{
}

// Functions
public void Reset()
{
List.Clear();
}

public void AddCard(RookCard Card)
{
List.Add(Card);
}
}
}
GeneralRe: Trouble with CollectionBase Pin
James T. Johnson1-Apr-02 22:58
James T. Johnson1-Apr-02 22:58 
GeneralRe: Trouble with CollectionBase Pin
Tom Archer2-Apr-02 7:25
Tom Archer2-Apr-02 7:25 
GeneralSendMessage/PostMessage via socket Pin
BLaZiNiX31-Mar-02 22:33
BLaZiNiX31-Mar-02 22:33 
Questionhow to immigrate c++'s union? Pin
31-Mar-02 19:32
suss31-Mar-02 19:32 
AnswerRe: how to immigrate c++'s union? Pin
Paul M Watt31-Mar-02 20:35
mentorPaul M Watt31-Mar-02 20:35 
AnswerRe: how to immigrate c++'s union? Pin
James T. Johnson1-Apr-02 22:55
James T. Johnson1-Apr-02 22:55 
GeneralRe: how to immigrate c++'s union? Pin
2-Apr-02 14:59
suss2-Apr-02 14:59 
QuestionCan a component obtain a reference to its container object? Pin
31-Mar-02 14:02
suss31-Mar-02 14:02 
AnswerRe: Can a component obtain a reference to its container object? Pin
James T. Johnson31-Mar-02 17:58
James T. Johnson31-Mar-02 17:58 
GeneralRe: Can a component obtain a reference to its container object? Pin
1-Apr-02 6:38
suss1-Apr-02 6:38 
GeneralRe: Can a component obtain a reference to its container object? Pin
Andy Smith1-Apr-02 6:50
Andy Smith1-Apr-02 6:50 
GeneralRe: Can a component obtain a reference to its container object? Pin
1-Apr-02 9:14
suss1-Apr-02 9:14 
GeneralRe: Can a component obtain a reference to its container object? Pin
1-Apr-02 14:10
suss1-Apr-02 14:10 
GeneralRe: Can a component obtain a reference to its container object? Pin
Andy Smith1-Apr-02 14:50
Andy Smith1-Apr-02 14:50 
GeneralRe: Can a component obtain a reference to its container object? Pin
James T. Johnson1-Apr-02 16:23
James T. Johnson1-Apr-02 16:23 
GeneralRe: Can a component obtain a reference to its container object? Pin
James T. Johnson1-Apr-02 16:25
James T. Johnson1-Apr-02 16:25 
GeneralRe: Can a component obtain a reference to its container object? Pin
Andy Smith1-Apr-02 18:44
Andy Smith1-Apr-02 18:44 

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.