Click here to Skip to main content
15,890,123 members
Home / Discussions / C#
   

C#

 
GeneralRe: Doubt in Object. Equals() method Pin
Darmi1-Apr-08 17:14
Darmi1-Apr-08 17:14 
GeneralRe: Doubt in Object. Equals() method Pin
Guffa1-Apr-08 2:48
Guffa1-Apr-08 2:48 
Generalnetwork, C#, Interface, IOControl Pin
pedefetoll1-Apr-08 1:37
pedefetoll1-Apr-08 1:37 
GeneralPc Pin
ellllllllie1-Apr-08 1:01
ellllllllie1-Apr-08 1:01 
GeneralRe: Pc Pin
Spunky Coder1-Apr-08 1:29
Spunky Coder1-Apr-08 1:29 
GeneralRe: Pc Pin
Pete O'Hanlon1-Apr-08 2:11
mvePete O'Hanlon1-Apr-08 2:11 
GeneralAppend a property to existing control Pin
dan!sh 1-Apr-08 0:00
professional dan!sh 1-Apr-08 0:00 
GeneralRe: Append a property to existing control Pin
J4amieC1-Apr-08 0:05
J4amieC1-Apr-08 0:05 
derive a new class from it and add your property

public class MyTextBox : TextBox
{
 public MyTextBox() : base()
 {
 }

 private bool allowNumbers = false;
 public bool AllowNumbers
 {
  get{ return this.allowNumbers; }
  set{ this.allowNumbers = value; }
 }
}

GeneralRe: Append a property to existing control Pin
dan!sh 1-Apr-08 0:21
professional dan!sh 1-Apr-08 0:21 
GeneralRe: Append a property to existing control Pin
stancrm1-Apr-08 0:23
stancrm1-Apr-08 0:23 
GeneralRe: Append a property to existing control Pin
dan!sh 1-Apr-08 0:33
professional dan!sh 1-Apr-08 0:33 
GeneralRe: Append a property to existing control Pin
stancrm1-Apr-08 0:36
stancrm1-Apr-08 0:36 
GeneralRe: Append a property to existing control Pin
dan!sh 1-Apr-08 0:40
professional dan!sh 1-Apr-08 0:40 
GeneralRe: Append a property to existing control Pin
stancrm1-Apr-08 0:44
stancrm1-Apr-08 0:44 
GeneralRe: Append a property to existing control Pin
dan!sh 1-Apr-08 1:13
professional dan!sh 1-Apr-08 1:13 
GeneralIntercepting calls to ServicedComponent Pin
Roger Alsing31-Mar-08 23:57
Roger Alsing31-Mar-08 23:57 
Generalwrinting a query Pin
Hum Dum31-Mar-08 23:57
Hum Dum31-Mar-08 23:57 
GeneralRe: wrinting a query Pin
dan!sh 1-Apr-08 0:08
professional dan!sh 1-Apr-08 0:08 
GeneralRe: wrinting a query Pin
Hum Dum1-Apr-08 0:38
Hum Dum1-Apr-08 0:38 
GeneralRe: wrinting a query Pin
Eduard Keilholz1-Apr-08 0:35
Eduard Keilholz1-Apr-08 0:35 
GeneralRe: wrinting a query Pin
Hum Dum1-Apr-08 0:44
Hum Dum1-Apr-08 0:44 
GeneralRe: wrinting a query Pin
dan!sh 1-Apr-08 1:28
professional dan!sh 1-Apr-08 1:28 
GeneralRe: wrinting a query Pin
Hum Dum1-Apr-08 2:12
Hum Dum1-Apr-08 2:12 
GeneralRe: wrinting a query Pin
Herman<T>.Instance1-Apr-08 23:24
Herman<T>.Instance1-Apr-08 23:24 
General[Message Deleted] Pin
pyde31-Mar-08 23:14
pyde31-Mar-08 23:14 

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.