Click here to Skip to main content
15,885,925 members
Home / Discussions / C#
   

C#

 
QuestionHow does one indirectly use user controls on a Winform. Pin
ingersod25-Sep-08 9:42
ingersod25-Sep-08 9:42 
AnswerRe: How does one indirectly use user controls on a Winform. Pin
DaveyM6925-Sep-08 11:55
professionalDaveyM6925-Sep-08 11:55 
QuestionExporting to Excel / PDF file from the Reportviewer using my own button Pin
Yeates25-Sep-08 6:20
Yeates25-Sep-08 6:20 
AnswerRe: Exporting to Excel / PDF file from the Reportviewer using my own button Pin
Ennis Ray Lynch, Jr.25-Sep-08 7:11
Ennis Ray Lynch, Jr.25-Sep-08 7:11 
GeneralRe: Exporting to Excel / PDF file from the Reportviewer using my own button Pin
Yeates25-Sep-08 21:14
Yeates25-Sep-08 21:14 
QuestionValue Member Property for DataGridViewComboboxColumn Pin
Uma Dilip25-Sep-08 5:25
Uma Dilip25-Sep-08 5:25 
QuestionRe: Value Member Property for DataGridViewComboboxColumn Pin
nelsonpaixao25-Sep-08 12:09
nelsonpaixao25-Sep-08 12:09 
QuestionInterface Inheritance Q? Pin
Ware@Work25-Sep-08 4:40
Ware@Work25-Sep-08 4:40 
I have created the following:

public interface ICalculatable
{
    DateTime FirstPaymentDate { get; }
    decimal MonthlyCompoundingRate { get; }
}

public interface IBaseObject : ICalculatable
{
    string Identifier { get; }
   // Input Value
    DateTime FirstPaymentDate { get; set; }
   // Input Value
    decimal InterestRate { get; set; }
}

public class BaseObject : IBaseObject
{
    ...
}


I get a compiler error that need new to hide inherited member. I am trying to figure out if that is the correct thing or I need to use virtual/override/etc.. instead.

I will be accessing the BaseObject as ICalculatable in other code and the FirstPaymentDate properties should be the same value/source.

Thanks in advance.

WarePhreak

Programmers are tools to convert caffiene to code.

AnswerRe: Interface Inheritance Q? Pin
mark_w_25-Sep-08 4:47
mark_w_25-Sep-08 4:47 
AnswerRe: Interface Inheritance Q? Pin
led mike25-Sep-08 5:03
led mike25-Sep-08 5:03 
QuestionRe: Interface Inheritance Q? Pin
Ware@Work25-Sep-08 5:32
Ware@Work25-Sep-08 5:32 
AnswerRe: Interface Inheritance Q? Pin
J4amieC25-Sep-08 5:44
J4amieC25-Sep-08 5:44 
GeneralRe: Interface Inheritance Q? Pin
Ware@Work25-Sep-08 6:19
Ware@Work25-Sep-08 6:19 
GeneralRe: Interface Inheritance Q? Pin
J4amieC25-Sep-08 6:27
J4amieC25-Sep-08 6:27 
GeneralRe: Interface Inheritance Q? Pin
mark_w_25-Sep-08 6:31
mark_w_25-Sep-08 6:31 
AnswerRe: Interface Inheritance Q? Pin
Ennis Ray Lynch, Jr.25-Sep-08 7:13
Ennis Ray Lynch, Jr.25-Sep-08 7:13 
QuestionReporting Pin
mark_w_25-Sep-08 4:40
mark_w_25-Sep-08 4:40 
AnswerRe: Reporting Pin
Ennis Ray Lynch, Jr.25-Sep-08 7:15
Ennis Ray Lynch, Jr.25-Sep-08 7:15 
GeneralRe: Reporting Pin
nelsonpaixao25-Sep-08 12:28
nelsonpaixao25-Sep-08 12:28 
QuestionCodeDom Type cast bug Pin
Paw Jershauge25-Sep-08 2:45
Paw Jershauge25-Sep-08 2:45 
AnswerRe: CodeDom Type cast bug Pin
J4amieC25-Sep-08 3:20
J4amieC25-Sep-08 3:20 
GeneralRe: CodeDom Type cast bug Pin
Paw Jershauge25-Sep-08 4:07
Paw Jershauge25-Sep-08 4:07 
GeneralRe: CodeDom Type cast bug Pin
leppie25-Sep-08 4:39
leppie25-Sep-08 4:39 
GeneralRe: CodeDom Type cast bug Pin
J4amieC25-Sep-08 5:16
J4amieC25-Sep-08 5:16 
GeneralRe: CodeDom Type cast bug Pin
Paw Jershauge25-Sep-08 11:31
Paw Jershauge25-Sep-08 11:31 

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.