Click here to Skip to main content
15,924,829 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: please can any one help me ???? Pin
Bob Stanneveld20-Jun-05 20:36
Bob Stanneveld20-Jun-05 20:36 
GeneralRe: please can any one help me ???? Pin
Anonymous21-Jun-05 4:42
Anonymous21-Jun-05 4:42 
GeneralRe: please can any one help me ???? Pin
Bob Stanneveld21-Jun-05 20:34
Bob Stanneveld21-Jun-05 20:34 
AnswerRe: please can any one help me ???? Pin
FlyingTinman20-Jun-05 10:25
FlyingTinman20-Jun-05 10:25 
GeneralRe: please can any one help me ???? Pin
kosamoza20-Jun-05 10:47
kosamoza20-Jun-05 10:47 
GeneralRe: please can any one help me ???? Pin
FlyingTinman20-Jun-05 12:08
FlyingTinman20-Jun-05 12:08 
GeneralRe: please can any one help me ???? Pin
kosamoza20-Jun-05 13:57
kosamoza20-Jun-05 13:57 
Generalerror LNK2001: unresolved external symbol Pin
John R. Shaw19-Jun-05 13:31
John R. Shaw19-Jun-05 13:31 
#include "stdafx.h"
// TEST TEMPLATE
template<class char_type>
class ccTest
{
public:
    struct sub_class_type
    {
        char_type char_one_;
        sub_class_type() : char_one_(0) {}
        void external_func(char_type ch);
        void internal_func(char_type ch)
        { char_one_ = ch; }
    };
    void func()
    {
        sub_class_type sub;
        sub.internal_func('a');
        sub.external_func('b');
    }
};

// EXTERNALY DEFINED INTERNAL CLASS FUNCTION
template<class char_type>
void ccTest<char_type>::sub_class_type
::external_func(char_type ch)
{ char_one_ = ch; }
// TEST MAIN
int main(int argc, char* argv[])
{
    ccTest<char> test_var;
    test_var.func();
    return 0;
}



INTP
"The more help VB provides VB programmers, the more miserable your life as a C++ programmer becomes."
Andrew W. Troelsen
GeneralRe: error LNK2001: unresolved external symbol Pin
PJ Arends19-Jun-05 14:46
professionalPJ Arends19-Jun-05 14:46 
GeneralRe: error LNK2001: unresolved external symbol Pin
John R. Shaw20-Jun-05 6:31
John R. Shaw20-Jun-05 6:31 
GeneralRe: error LNK2001: unresolved external symbol Pin
PJ Arends20-Jun-05 11:51
professionalPJ Arends20-Jun-05 11:51 
GeneralPortable Sockets Pin
wb18-Jun-05 20:59
wb18-Jun-05 20:59 
GeneralRe: Portable Sockets Pin
User 58385220-Jun-05 3:21
User 58385220-Jun-05 3:21 
QuestionHow to show the CAPS is on tooltip when focus on password textbox? Pin
Member 166300818-Jun-05 17:52
Member 166300818-Jun-05 17:52 
AnswerRe: How to show the CAPS is on tooltip when focus on password textbox? Pin
Nilesh K.19-Jun-05 18:02
Nilesh K.19-Jun-05 18:02 
GeneralTemplate class Pin
JohnZZ18-Jun-05 7:03
JohnZZ18-Jun-05 7:03 
GeneralRe: Template class Pin
S. Senthil Kumar18-Jun-05 7:40
S. Senthil Kumar18-Jun-05 7:40 
GeneralRe: Template class Pin
JohnZZ18-Jun-05 8:02
JohnZZ18-Jun-05 8:02 
GeneralRe: Template class Pin
John M. Drescher18-Jun-05 8:23
John M. Drescher18-Jun-05 8:23 
GeneralRe: Template class Pin
JohnZZ18-Jun-05 14:25
JohnZZ18-Jun-05 14:25 
GeneralRe: Template class Pin
John M. Drescher18-Jun-05 16:17
John M. Drescher18-Jun-05 16:17 
GeneralRe: Template class Pin
JohnZZ18-Jun-05 23:56
JohnZZ18-Jun-05 23:56 
GeneralRe: Template class Pin
John R. Shaw19-Jun-05 14:43
John R. Shaw19-Jun-05 14:43 
GeneralSetFocus function Pin
volovik18-Jun-05 6:14
volovik18-Jun-05 6:14 
GeneralRe: SetFocus function Pin
John M. Drescher18-Jun-05 11:03
John M. Drescher18-Jun-05 11:03 

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.