0
votes
1answer
20 views
Reliable/easy way to replace Windows.Forms control with a derived control?
I didn't follow my own best practices (use only derived controls), and I dragged a regular Windows Forms control to my form, wired it up and used it on my form ;-(
Now I need to c …
0
votes
2answers
35 views
Creating which derived type of class at runtime.
I've tried to understand some of the posts of similar, but don't quite understand their purposes and thought I'd explain my own...
I have a class -- fully defined with code with p …
0
votes
2answers
148 views
Access base class fn with same signature from derived class object
Hi,
Is it possible to access a base class function which has the same signature as that of a derived class function using a derived class object?. here's a sample of what I'm stat …
0
votes
5answers
89 views
Using an abstract class to implement a stack of elements of the derived class
I have to do this for a basic C++ lecture at my university, so just to be clear: i would have used the STL if i was allowed to.
The Problem: I have a class named "shape3d" from wh …
0
votes
1answer
99 views
Why does XMLSerializer take DefaultValue Attribute of base class to serialize
using System.ComponentModel;
using System.IO;
using System.Xml.Serialization;
namespace SerializerTest {
static class Program {
static void Main() {
using (TextWrit …
0
votes
5answers
1k views
Serialization Problem in C# with a derived class
Hello,
the problem i encounter seems pretty obvious but i cannot find the flaw on my code, so i guess it might be too obvious for me to see the problem...
I'm building a notifica …
1
vote
2answers
164 views
Mapping a derived class to a table in Linq-to-SQL
I have an abstract base class for audit properties. For brevity say it has one property
Public MustInherit Class AbstractAuditableEntity
...
Public Property CreatedTime() …
1
vote
2answers
41 views
Is there a better way to call each derived object’s method for a base class?
I have a base class where I derive several classes. I have another class that uses all those derived classes in a different way. However, I want to call the Update() method (inheri …
1
vote
3answers
105 views
derive problem about c++
Why I can't access base class A's a member in class B initialization list?
class A
{
public:
explicit A(int a1):a(a1)
{
}
explicit A()
…
0
votes
3answers
320 views
How to partially specialize a class template for all derived types?
I want to partially specialize an existing template that I cannot change (std::tr1::hash) for a base class and all derived classes. The reason is that I'm using the curiously-recur …
4
votes
2answers
338 views
Deriving Class from Generic T
I have a parameterized hibernate dao that performs basic crud operations, and when parameterized is used as a delegate to fulfil basic crud operations for a given dao.
public clas …
1
vote
6answers
152 views
Design Pattern for optional functions?
I have a basic class that derived subclasses inherit from, it carries the basic functions that should be the same across all derived classes:
class Basic {
public:
Run() {
…
1
vote
6answers
193 views
Events in Base Classes
Ok, so I have a base class which declares the event StatusTextChanged. My child class, of course cannot directly raise this event.
So I wind up with something like this (for simp …
1
vote
7answers
117 views
How can I alter the signature of a member function for a derived class in Java
Firstly I'm extending an existing class structure and cannot alter the original, with that caveat:
I would like to do this:
class a
{
int val;
... // usual constructor, et …
2
votes
6answers
164 views
Deriving from a Form class in .NET
Theoretically you can derive from a Form but is it something you should not do? I intuitively think so but I've never heard of any rule like this.
Edit: of course I meant some con …
