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

C#

 
GeneralRe: Unload DOM Pin
John Fisher7-Sep-05 4:09
John Fisher7-Sep-05 4:09 
QuestionWeb Services in VS 2003 Pin
seee sharp6-Sep-05 1:22
seee sharp6-Sep-05 1:22 
QuestionRichetextbox problem again Pin
snouto6-Sep-05 1:13
snouto6-Sep-05 1:13 
AnswerRe: Richetextbox problem again Pin
S. Senthil Kumar6-Sep-05 1:51
S. Senthil Kumar6-Sep-05 1:51 
GeneralRe: Richetextbox problem again Pin
snouto6-Sep-05 2:08
snouto6-Sep-05 2:08 
GeneralRe: Richetextbox problem again Pin
S. Senthil Kumar6-Sep-05 2:46
S. Senthil Kumar6-Sep-05 2:46 
QuestionBase Class problem with forms Pin
Russell Jones6-Sep-05 0:34
Russell Jones6-Sep-05 0:34 
AnswerRe: Base Class problem with forms Pin
S. Senthil Kumar6-Sep-05 2:00
S. Senthil Kumar6-Sep-05 2:00 
You would need to have them, atleast as abstract properties, in the base class. Something like
abstract class MyFormBase
{
   public abstract TextBox MyTextBox
   {
      get ;
   }
}

class MyForm : MyFormBase
{
   private TextBox textbox = new TextBox();
   public override TextBox MyTextBox
   {
       get { return textbox; }
   }
}


Or if all classes deriving from MyFormBase would have those controls, you can as well declare them in the base class itself.

Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Base Class problem with forms Pin
Russell Jones6-Sep-05 2:33
Russell Jones6-Sep-05 2:33 
QuestionThreading and Forms Pin
Dani Duran Kenobi6-Sep-05 0:33
Dani Duran Kenobi6-Sep-05 0:33 
AnswerRe: Threading and Forms Pin
S. Senthil Kumar6-Sep-05 2:04
S. Senthil Kumar6-Sep-05 2:04 
QuestionControl Problems? Pin
Simon Wren5-Sep-05 23:36
professionalSimon Wren5-Sep-05 23:36 
AnswerRe: Control Problems? Pin
S. Senthil Kumar6-Sep-05 2:12
S. Senthil Kumar6-Sep-05 2:12 
GeneralRe: Control Problems? Pin
Simon Wren6-Sep-05 2:14
professionalSimon Wren6-Sep-05 2:14 
Questioncan i access my lan pc from out side lan using remoting Pin
Mayank Chauhan5-Sep-05 23:33
Mayank Chauhan5-Sep-05 23:33 
QuestionTAB KEY AND DATAGRID CELLS Pin
Greeky5-Sep-05 23:30
Greeky5-Sep-05 23:30 
AnswerRe: TAB KEY AND DATAGRID CELLS Pin
miah alom6-Sep-05 3:05
miah alom6-Sep-05 3:05 
QuestionIntPtr usage! Pin
Duong Tien Nam5-Sep-05 23:19
Duong Tien Nam5-Sep-05 23:19 
AnswerRe: IntPtr usage! Pin
S. Senthil Kumar6-Sep-05 2:17
S. Senthil Kumar6-Sep-05 2:17 
AnswerRe: IntPtr usage! Pin
Daniel Turini6-Sep-05 4:06
Daniel Turini6-Sep-05 4:06 
QuestionCreate new controls in RunTime Pin
liqnit5-Sep-05 22:56
liqnit5-Sep-05 22:56 
AnswerRe: Create new controls in RunTime Pin
Stefan Troschuetz6-Sep-05 0:32
Stefan Troschuetz6-Sep-05 0:32 
GeneralRe: Create new controls in RunTime Pin
liqnit6-Sep-05 3:15
liqnit6-Sep-05 3:15 
QuestionAdd user control Pin
reza toorani5-Sep-05 22:47
reza toorani5-Sep-05 22:47 
QuestionMultithreading in c# windows application Pin
dhol5-Sep-05 21:58
dhol5-Sep-05 21:58 

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.