Click here to Skip to main content
16,006,013 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralPLEASE Help URGENT Pin
Sonu Kapoor23-Jan-02 4:11
Sonu Kapoor23-Jan-02 4:11 
GeneralVisual C++ & OpenGL Pin
Rajveer23-Jan-02 3:16
Rajveer23-Jan-02 3:16 
QuestionIs MFC thread-safe? DialogBar with DLGTEMPL? Pin
HintiFlo23-Jan-02 2:21
HintiFlo23-Jan-02 2:21 
GeneralOnInitDialog called in Release, but not in Debug! Pin
Jonnie White23-Jan-02 0:50
Jonnie White23-Jan-02 0:50 
GeneralRe: OnInitDialog called in Release, but not in Debug! Pin
Alvaro Mendez23-Jan-02 9:37
Alvaro Mendez23-Jan-02 9:37 
GeneralRe: OnInitDialog called in Release, but not in Debug! Pin
Shog923-Jan-02 15:38
sitebuilderShog923-Jan-02 15:38 
GeneralRe: OnInitDialog called in Release, but not in Debug! Pin
Jonnie White24-Jan-02 0:21
Jonnie White24-Jan-02 0:21 
GeneralRegisterClass() in 98.. Pin
Neha23-Jan-02 0:51
Neha23-Jan-02 0:51 
Hi,
I have the following code
WNDCLASS wc;

// Source window
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = NULL;//(WNDPROC)SourceWndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;//UD_MAIN_WINDOW_EXTRA_BYTE;
wc.hInstance = A_hInst;
wc.hIcon = LoadIcon( A_hInst, MAKEINTRESOURCE(ICO_UMAXLOGO) );
wc.hCursor = LoadCursor( NULL, IDC_ARROW );
wc.hbrBackground = (HBRUSH) GetStockObject( LTGRAY_BRUSH );
wc.lpszMenuName = NULL;
wc.lpszClassName = kMAIN_WINDOW_CLASS; // define in TW_LAYOT.H
if( !RegisterClass( &wc ) )
return FALSE;

But RegisterClass() fails in windows 98.
Can anyone pl help me.
Neha
GeneralRe: RegisterClass() in 98.. Pin
Michael P Butler23-Jan-02 0:53
Michael P Butler23-Jan-02 0:53 
QuestionHow to configure STLPort ? Pin
Ravish23-Jan-02 0:48
Ravish23-Jan-02 0:48 
AnswerRe: How to configure STLPort ? Pin
23-Jan-02 2:47
suss23-Jan-02 2:47 
GeneralApplication Closing Pin
Micheal John23-Jan-02 0:33
Micheal John23-Jan-02 0:33 
GeneralRe: Application Closing Pin
Vladimir Georgiev23-Jan-02 1:15
Vladimir Georgiev23-Jan-02 1:15 
GeneralRe: Application Closing Pin
NormDroid23-Jan-02 4:38
professionalNormDroid23-Jan-02 4:38 
GeneralDynamic resource Declaration Pin
User 2674023-Jan-02 0:00
professionalUser 2674023-Jan-02 0:00 
GeneralProgrammatically adding route (CreateIPForwardEntry) Pin
Martijn22-Jan-02 21:54
Martijn22-Jan-02 21:54 
GeneralRe: Programmatically adding route (CreateIPForwardEntry) Pin
Jon Hulatt22-Jan-02 22:51
Jon Hulatt22-Jan-02 22:51 
GeneralRe: Programmatically adding route (CreateIPForwardEntry) Pin
Martijn22-Jan-02 23:09
Martijn22-Jan-02 23:09 
GeneralRe: Programmatically adding route (CreateIPForwardEntry) Pin
Jon Hulatt22-Jan-02 23:32
Jon Hulatt22-Jan-02 23:32 
GeneralRe: Programmatically adding route (CreateIPForwardEntry) Pin
Martijn23-Jan-02 0:58
Martijn23-Jan-02 0:58 
GeneralRe: Programmatically adding route (CreateIPForwardEntry) Pin
Jon Hulatt23-Jan-02 1:04
Jon Hulatt23-Jan-02 1:04 
GeneralRe: Programmatically adding route (CreateIPForwardEntry) Pin
Martijn23-Jan-02 1:12
Martijn23-Jan-02 1:12 
QuestionIs there anybody who knows how to program using the BHO(Browser helper object)? Pin
gropex22-Jan-02 18:39
gropex22-Jan-02 18:39 
AnswerRe: Is there anybody who knows how to program using the BHO(Browser helper object)? Pin
Michael P Butler23-Jan-02 0:50
Michael P Butler23-Jan-02 0:50 
GeneralCAsyncSocket trouble Pin
Craig S22-Jan-02 18:31
Craig S22-Jan-02 18:31 

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.