Click here to Skip to main content
15,884,841 members
Home / Discussions / C#
   

C#

 
GeneralRe: can any body tell the syntex of reading and writing an object into file? Pin
imran_rafique29-Sep-02 15:49
imran_rafique29-Sep-02 15:49 
GeneralRe: can any body tell the syntex of reading and writing an object into file? Pin
Nnamdi Onyeyiri29-Sep-02 20:59
Nnamdi Onyeyiri29-Sep-02 20:59 
GeneralVFW in C# Pin
Jarrett Vance27-Sep-02 10:43
Jarrett Vance27-Sep-02 10:43 
GeneralRe: VFW in C# Pin
Stephane Rodriguez.27-Sep-02 22:29
Stephane Rodriguez.27-Sep-02 22:29 
GeneralRe: VFW in C# Pin
Daniel Strigl29-Sep-02 20:15
Daniel Strigl29-Sep-02 20:15 
GeneralWindows Form Designer Pin
Nnamdi Onyeyiri27-Sep-02 8:38
Nnamdi Onyeyiri27-Sep-02 8:38 
GeneralRe: Windows Form Designer Pin
leppie27-Sep-02 9:15
leppie27-Sep-02 9:15 
GeneralRe: Windows Form Designer Pin
Nnamdi Onyeyiri27-Sep-02 9:26
Nnamdi Onyeyiri27-Sep-02 9:26 
public class EBGroupCollection : CollectionBase
public EBGroup this[int index]
   {
    get
    {
     return (EBGroup)this.List[index];
    }

    set
    {
     this.List[index] = value;
    }
   }

   public EBGroupCollection()
   {
   }

   public void Add(EBGroup value)
   {
    this.List.Add(value);
   }

 }



Suspicious | :suss: Email: theeclypse@hotmail.com   URL: http://www.onyeyiri.co.uk
Suspicious | :suss: "All programmers are playwrights and all computers are lousy actors."


GeneralRe: Windows Form Designer Pin
Maciej Pirog27-Sep-02 9:48
Maciej Pirog27-Sep-02 9:48 
GeneralRe: Windows Form Designer Pin
leppie27-Sep-02 9:55
leppie27-Sep-02 9:55 
GeneralRe: Windows Form Designer Pin
Nnamdi Onyeyiri27-Sep-02 10:13
Nnamdi Onyeyiri27-Sep-02 10:13 
GeneralRe: Windows Form Designer Pin
leppie27-Sep-02 10:38
leppie27-Sep-02 10:38 
GeneralRe: Windows Form Designer Pin
Nnamdi Onyeyiri27-Sep-02 11:17
Nnamdi Onyeyiri27-Sep-02 11:17 
GeneralRe: Windows Form Designer Pin
leppie28-Sep-02 1:53
leppie28-Sep-02 1:53 
GeneralRe: Windows Form Designer Pin
Tomas Petricek27-Sep-02 11:08
Tomas Petricek27-Sep-02 11:08 
GeneralRe: Windows Form Designer Pin
Nnamdi Onyeyiri27-Sep-02 12:03
Nnamdi Onyeyiri27-Sep-02 12:03 
GeneralRe: Windows Form Designer Pin
leppie27-Sep-02 13:36
leppie27-Sep-02 13:36 
GeneralInterfaces Pin
Nick Parker27-Sep-02 7:46
protectorNick Parker27-Sep-02 7:46 
GeneralRe: Interfaces Pin
Paul Riley27-Sep-02 7:59
Paul Riley27-Sep-02 7:59 
GeneralRe: Interfaces Pin
Nick Parker27-Sep-02 8:15
protectorNick Parker27-Sep-02 8:15 
GeneralRe: Interfaces Pin
Paul Riley27-Sep-02 8:26
Paul Riley27-Sep-02 8:26 
GeneralRe: Interfaces Pin
Nick Parker27-Sep-02 8:42
protectorNick Parker27-Sep-02 8:42 
GeneralRe: Interfaces Pin
Nick Parker27-Sep-02 8:52
protectorNick Parker27-Sep-02 8:52 
GeneralRe: Interfaces Pin
Paul Riley27-Sep-02 10:16
Paul Riley27-Sep-02 10:16 
GeneralRe: Interfaces Pin
afronaut27-Sep-02 11:07
afronaut27-Sep-02 11:07 

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.