Click here to Skip to main content
15,899,754 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Starting an .exe from an MC++ app Pin
ManagedCode5-May-03 18:07
ManagedCode5-May-03 18:07 
GeneralRe: Starting an .exe from an MC++ app Pin
ManagedCode5-May-03 18:11
ManagedCode5-May-03 18:11 
GeneralBeginner C++, text (array) sorting Pin
Sheshi29-Apr-03 23:29
Sheshi29-Apr-03 23:29 
GeneralRe: Beginner C++, text (array) sorting Pin
jhaga30-Apr-03 4:40
professionaljhaga30-Apr-03 4:40 
GeneralSimple question Pin
V.P.29-Apr-03 0:59
V.P.29-Apr-03 0:59 
GeneralRe: Simple question Pin
leppie29-Apr-03 7:53
leppie29-Apr-03 7:53 
GeneralRe: Simple question Pin
John R. Shaw29-Apr-03 18:28
John R. Shaw29-Apr-03 18:28 
GeneralPlease URGENT!! Pin
mAxW23-Apr-03 6:54
mAxW23-Apr-03 6:54 
Compiling i always receive the error message:
"DLLista::Component" no appropriate default constructor
what's wrong??

//DLLista.h

class DLLista : public Lista
{
public:
DLLista(Index n, BaseNode * V);
virtual ~DLLista();

class Component
{
public:
Component * next;
Component * prev;
BaseNode Element;
Component (BaseNode E);

};

};


//DLLista.cpp

DLLista::DLLista(Index n, BaseNode * V) : Lista(n, V){
};

DLLista::Component::Component(BaseNode E){
next=null;
prev=null;
Element=E;
};

DLLista::~DLLista(){};


//lista.h
class BaseNode
{
public:
BaseNode(){ indice = 0; };
private:
Index indice;
};


class Lista
{
public:
/* costruttore/distruttore */
Lista ( Index n, BaseNode * V );
~Lista();
}
GeneralRe: Please URGENT!! Pin
Paul Selormey23-Apr-03 18:21
Paul Selormey23-Apr-03 18:21 
GeneralControl toolbox icons Pin
Paul Selormey23-Apr-03 3:23
Paul Selormey23-Apr-03 3:23 
GeneralRe: Control toolbox icons Pin
leppie23-Apr-03 7:12
leppie23-Apr-03 7:12 
GeneralRe: Control toolbox icons Pin
Paul Selormey23-Apr-03 18:10
Paul Selormey23-Apr-03 18:10 
GeneralRe: Control toolbox icons Pin
leppie25-Apr-03 11:01
leppie25-Apr-03 11:01 
GeneralHiding unmanaged functions in assembly Pin
leppie21-Apr-03 8:42
leppie21-Apr-03 8:42 
GeneralRe: Hiding unmanaged functions in assembly Pin
Paul Selormey21-Apr-03 19:40
Paul Selormey21-Apr-03 19:40 
GeneralRe: Hiding unmanaged functions in assembly Pin
leppie22-Apr-03 7:06
leppie22-Apr-03 7:06 
GeneralRe: Hiding unmanaged functions in assembly Pin
leppie26-Apr-03 10:52
leppie26-Apr-03 10:52 
GeneralC and C++ compilers Pin
Mario_Young20-Apr-03 17:55
Mario_Young20-Apr-03 17:55 
GeneralRe: C and C++ compilers Pin
John R. Shaw29-Apr-03 18:57
John R. Shaw29-Apr-03 18:57 
GeneralRe: C and C++ compilers Pin
jhaga8-May-03 23:02
professionaljhaga8-May-03 23:02 
GeneralBug in VC++.net 2002: nested structs Pin
VizOne19-Apr-03 6:38
VizOne19-Apr-03 6:38 
GeneralRe: Bug in VC++.net 2002: nested structs Pin
Paul Selormey21-Apr-03 19:36
Paul Selormey21-Apr-03 19:36 
GeneralJagged arrays in MC++ Pin
Alexandru Savescu15-Apr-03 4:12
Alexandru Savescu15-Apr-03 4:12 
GeneralRe: Jagged arrays in MC++ Pin
Natty Gur15-Apr-03 4:29
Natty Gur15-Apr-03 4:29 
GeneralRe: Jagged arrays in MC++ Pin
Paul Selormey21-Apr-03 19:59
Paul Selormey21-Apr-03 19:59 

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.