Click here to Skip to main content
15,909,897 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralCD Serial Number Pin
Sassan Komeili Zadeh16-Feb-03 9:16
Sassan Komeili Zadeh16-Feb-03 9:16 
GeneralRe: CD Serial Number Pin
Jon Hulatt17-Feb-03 1:51
Jon Hulatt17-Feb-03 1:51 
GeneralMake Callback function as member function ! Pin
Hadi Rezaee16-Feb-03 6:56
Hadi Rezaee16-Feb-03 6:56 
GeneralRe: Make Callback function as member function ! Pin
Mohammed Saleem16-Feb-03 7:14
Mohammed Saleem16-Feb-03 7:14 
GeneralRe: Make Callback function as member function ! Pin
João Paulo Figueira16-Feb-03 7:37
professionalJoão Paulo Figueira16-Feb-03 7:37 
GeneralRe: Make Callback function as member function ! Pin
dlhson216-Feb-03 7:50
dlhson216-Feb-03 7:50 
GeneralRe: Make Callback function as member function ! Pin
João Paulo Figueira16-Feb-03 8:27
professionalJoão Paulo Figueira16-Feb-03 8:27 
GeneralRe: Make Callback function as member function ! Pin
Anonymous16-Feb-03 8:46
Anonymous16-Feb-03 8:46 
If you need access to the member functions you can also declare a static pointer of the class' type and assign it the this pointer.

 class Foo {
public:
    Foo () { this_ = this; }
    void Bar () { ... }
    static MyCallBack ( ... ) {
        this_->Bar ();
        // do something else
    }
private:
    static Foo * this_;
}

GeneralRe: Make Callback function as member function ! Pin
dlhson216-Feb-03 7:43
dlhson216-Feb-03 7:43 
QuestionHow do I get the frame? Pin
ROK_RShadow16-Feb-03 6:46
ROK_RShadow16-Feb-03 6:46 
AnswerRe: How do I get the frame? Pin
valikac16-Feb-03 7:55
valikac16-Feb-03 7:55 
GeneralRe: How do I get the frame? Pin
ROK_RShadow16-Feb-03 8:01
ROK_RShadow16-Feb-03 8:01 
GeneralRe: How do I get the frame? Pin
valikac16-Feb-03 8:34
valikac16-Feb-03 8:34 
GeneralRe: How do I get the frame? Pin
ROK_RShadow16-Feb-03 8:39
ROK_RShadow16-Feb-03 8:39 
GeneralCFrameWnd::AssertValid() fails in debug mode Pin
s_k16-Feb-03 3:38
s_k16-Feb-03 3:38 
GeneralRe: CFrameWnd::AssertValid() fails in debug mode Pin
Neville Franks16-Feb-03 9:49
Neville Franks16-Feb-03 9:49 
QuestionCan anyone help me to find a MFC view class that uses PDF format? Pin
Archigal16-Feb-03 3:35
Archigal16-Feb-03 3:35 
GeneralBIOS Information Pin
GWENJi16-Feb-03 1:45
GWENJi16-Feb-03 1:45 
GeneralSyntax error with CREATE TABLE.. Pin
IrishSonic16-Feb-03 1:43
IrishSonic16-Feb-03 1:43 
GeneralFound my problem but need to be able to create table for 600 chars Pin
IrishSonic16-Feb-03 2:10
IrishSonic16-Feb-03 2:10 
GeneralCScrollView Pin
maytal15-Feb-03 23:19
maytal15-Feb-03 23:19 
GeneralRe: CScrollView Pin
Roger Allen17-Feb-03 23:06
Roger Allen17-Feb-03 23:06 
QuestionMFC Vs. Application, whats the difference? Pin
PocketBlast15-Feb-03 18:24
PocketBlast15-Feb-03 18:24 
AnswerRe: MFC Vs. Application, whats the difference? Pin
Brad Jennings15-Feb-03 19:55
Brad Jennings15-Feb-03 19:55 
GeneralRe: MFC Vs. Application, whats the difference? Pin
PocketBlast15-Feb-03 20:22
PocketBlast15-Feb-03 20:22 

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.