Click here to Skip to main content
15,919,245 members
Home / Discussions / C#
   

C#

 
AnswerRe: sliding desktop bar in C# Pin
carlecomm21-Sep-09 21:55
carlecomm21-Sep-09 21:55 
Questionprintpreview Pin
sepehr_sepehr15-Sep-09 23:35
sepehr_sepehr15-Sep-09 23:35 
AnswerRe: printpreview Pin
stancrm16-Sep-09 0:16
stancrm16-Sep-09 0:16 
AnswerRe: printpreview Pin
carlecomm21-Sep-09 21:50
carlecomm21-Sep-09 21:50 
QuestionJava Web Service and C# return as empty Pin
nhss15-Sep-09 23:27
nhss15-Sep-09 23:27 
AnswerRe: Java Web Service and C# return as empty Pin
Manas Bhardwaj16-Sep-09 0:01
professionalManas Bhardwaj16-Sep-09 0:01 
AnswerRe: Java Web Service and C# return as empty Pin
Christian Graus16-Sep-09 1:28
protectorChristian Graus16-Sep-09 1:28 
GeneralRe: Java Web Service and C# return as empty Pin
EliottA16-Sep-09 1:44
EliottA16-Sep-09 1:44 
Questionbackup and restore [modified] Pin
sos_amin15-Sep-09 23:25
sos_amin15-Sep-09 23:25 
AnswerRe: backup and restore Pin
Harvey Saayman15-Sep-09 23:30
Harvey Saayman15-Sep-09 23:30 
AnswerOh Hang on Pin
Keith Barrow15-Sep-09 23:31
professionalKeith Barrow15-Sep-09 23:31 
AnswerRe: backup and restore Pin
rakesh_choudhury15-Sep-09 23:47
rakesh_choudhury15-Sep-09 23:47 
AnswerRe: backup and restore Pin
Harvey Saayman15-Sep-09 23:52
Harvey Saayman15-Sep-09 23:52 
AnswerRe: backup and restore Pin
Christian Graus16-Sep-09 1:30
protectorChristian Graus16-Sep-09 1:30 
QuestionInheritance Problem. Can I do this? Pin
TheFoZ15-Sep-09 23:13
TheFoZ15-Sep-09 23:13 
AnswerRe: Inheritance Problem. Can I do this? Pin
dojohansen15-Sep-09 23:35
dojohansen15-Sep-09 23:35 
GeneralRe: Inheritance Problem. Can I do this? Pin
TheFoZ16-Sep-09 1:49
TheFoZ16-Sep-09 1:49 
Thanks for you reply but I am having a few problems. I have set it out like you have above but my properties have private members associated to them. If I have code in the get & set on the base I get an error in the inherited class "inherited.staffid.set cannot override inherited member base.StaffID.set because it is not marked virtual, abstract or overrride." My base class property is marked virtual and the inherited is marked override.

public class StaffMember
{
    protected int staffID;

    virtual public int StaffID
    {
        get { return staffID; }
        set { staffID = value }
    }
}

public class StaffMemberOracle : StaffMember, INullable, IOracleCustomType 
{
    [OracleObjectMappingAttribute("STAFFID")]
    override void int StaffID
    {
        get { return staffID; }
        set { staffID = value }
    }
}


I think I may be going about this the wrong way.

Cheers

The FoZ

GeneralRe: Inheritance Problem. Can I do this? Pin
dojohansen16-Sep-09 2:06
dojohansen16-Sep-09 2:06 
AnswerRe: Inheritance Problem. Can I do this? Pin
TheFoZ16-Sep-09 2:08
TheFoZ16-Sep-09 2:08 
GeneralRe: Inheritance Problem. Can I do this? Pin
dojohansen16-Sep-09 3:33
dojohansen16-Sep-09 3:33 
GeneralRe: Inheritance Problem. Can I do this? Pin
TheFoZ16-Sep-09 3:50
TheFoZ16-Sep-09 3:50 
QuestionC# program deployment issue Pin
spankyleo12315-Sep-09 23:08
spankyleo12315-Sep-09 23:08 
AnswerRe: C# program deployment issue Pin
Christian Graus15-Sep-09 23:12
protectorChristian Graus15-Sep-09 23:12 
AnswerRe: C# program deployment issue Pin
musefan15-Sep-09 23:16
musefan15-Sep-09 23:16 
GeneralRe: C# program deployment issue Pin
spankyleo12315-Sep-09 23:28
spankyleo12315-Sep-09 23:28 

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.