Click here to Skip to main content
15,902,938 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CListBox, AddString() Question Pin
Michael P Butler24-Nov-01 6:19
Michael P Butler24-Nov-01 6:19 
GeneralRe: CListBox, AddString() Question Pin
Robert Palma Jr.24-Nov-01 7:36
Robert Palma Jr.24-Nov-01 7:36 
GeneralRe: CListBox, AddString() Question Pin
Michael P Butler24-Nov-01 7:44
Michael P Butler24-Nov-01 7:44 
GeneralRe: CListBox, AddString() Question Pin
Robert Palma Jr.24-Nov-01 7:58
Robert Palma Jr.24-Nov-01 7:58 
GeneralRe: CListBox, AddString() Question Pin
Michael P Butler24-Nov-01 8:05
Michael P Butler24-Nov-01 8:05 
GeneralRe: CListBox, AddString() Question Pin
Wolfram Steinke24-Nov-01 12:32
Wolfram Steinke24-Nov-01 12:32 
GeneralRe: CListBox, AddString() Question Pin
Robert Palma Jr.25-Nov-01 5:53
Robert Palma Jr.25-Nov-01 5:53 
Generaltemplate question Pin
24-Nov-01 5:19
suss24-Nov-01 5:19 
Does anyboday knows what is the problem here ? The follwoing source is
compiled on MSVC, but when its executed there is a "Access Violation." ?


template< typename TYPE >
class TYPEDPROPERTY;

class PROPERTY
{
public:
template< typename TYPE >
operator TYPE ( )
{
return (TYPE) 0;
};


};

template< typename TYPE >
class TYPEDPROPERTY : public PROPERTY
{
public:
TYPEDPROPERTY( const TYPE& tValue )
{
m_tValue = tValue;
}
protected:
TYPE m_tValue;
};


And the way how I use it

...
TYPEDPROPERTY< int > a( 1 );
int iA = a; // Access Violation.
...
GeneralCTreeView in a CorelDraw Style Pin
24-Nov-01 3:53
suss24-Nov-01 3:53 
GeneralYou can't answer this! :) hehe!! Pin
Rickard Andersson2024-Nov-01 2:55
Rickard Andersson2024-Nov-01 2:55 
GeneralRe: You can't answer this! :) hehe!! Pin
Michael Dunn24-Nov-01 8:51
sitebuilderMichael Dunn24-Nov-01 8:51 
GeneralRe: Humm... Pin
Masaaki Onishi24-Nov-01 9:02
Masaaki Onishi24-Nov-01 9:02 
GeneralTwo difficult ADO questions Pin
ssteo23-Nov-01 23:16
ssteo23-Nov-01 23:16 
QuestionCan not delete file: file system error (1026) - Help me please! Pin
Huu Quynh23-Nov-01 22:10
Huu Quynh23-Nov-01 22:10 
AnswerRe: Can not delete file: file system error (1026) - Help me please! Pin
Nish Nishant23-Nov-01 22:30
sitebuilderNish Nishant23-Nov-01 22:30 
GeneralRe: Can not delete file: file system error (1026) - Help me please! Pin
Huu Quynh23-Nov-01 23:25
Huu Quynh23-Nov-01 23:25 
GeneralRe: Can not delete file: file system error (1026) - Help me please! Pin
Nish Nishant23-Nov-01 23:52
sitebuilderNish Nishant23-Nov-01 23:52 
QuestionA question about Cursor??? Pin
Leesen23-Nov-01 21:58
Leesen23-Nov-01 21:58 
AnswerRe: A question about Cursor??? Pin
Nish Nishant23-Nov-01 22:15
sitebuilderNish Nishant23-Nov-01 22:15 
GeneralRe: A question about Cursor??? Pin
Derek Waters25-Nov-01 11:39
Derek Waters25-Nov-01 11:39 
GeneralHELP Pin
23-Nov-01 21:14
suss23-Nov-01 21:14 
GeneralRe: HELP Pin
Nish Nishant23-Nov-01 21:22
sitebuilderNish Nishant23-Nov-01 21:22 
GeneralRe: HELP Pin
23-Nov-01 21:45
suss23-Nov-01 21:45 
GeneralRe: HELP Pin
Nish Nishant23-Nov-01 22:00
sitebuilderNish Nishant23-Nov-01 22:00 
GeneralRe: HELP Pin
23-Nov-01 22:32
suss23-Nov-01 22:32 

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.