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

C / C++ / MFC

 
GeneralRe: VC7 & CString : LNK2005 error Pin
Mike Nordell5-Jun-02 1:26
Mike Nordell5-Jun-02 1:26 
GeneralRe: VC7 & CString : LNK2005 error Pin
6-Jun-02 23:03
suss6-Jun-02 23:03 
GeneralRe: VC7 & CString : LNK2005 error Pin
18-Jun-02 6:14
suss18-Jun-02 6:14 
GeneralDeskband Pin
2-Jun-02 22:10
suss2-Jun-02 22:10 
GeneralRe: Deskband Pin
Demián Gutierrez6-May-05 9:30
Demián Gutierrez6-May-05 9:30 
GeneralRe: Deskband Pin
Shaun Harrington11-Oct-06 4:01
Shaun Harrington11-Oct-06 4:01 
GeneralWINDOWINFO and GetWindowInfo Pin
Mazdak2-Jun-02 22:06
Mazdak2-Jun-02 22:06 
GeneralRe: WINDOWINFO and GetWindowInfo Pin
Paul M Watt2-Jun-02 22:22
mentorPaul M Watt2-Jun-02 22:22 
That function requires windows98 or later, ans WindowsNT4.0 with the SP3.

The compiler will not let you see this function because you probably have this definition in your "stadafx.h" file:

#define WINVER 0x0400

That basically says use version 4.0 and below API functions. You will need to change this definition to this:

#define WINVER 0x0500

The only drawback to doing this is that you will have to check the version of the OS that your app is running on before you call the version 5.0 API functions if you want your app to run on Windows 95.

Good Luck.


Build a man a fire, and he will be warm for a day
Light a man on fire, and he will be warm for the rest of his life!

GeneralRe: WINDOWINFO and GetWindowInfo Pin
Mazdak2-Jun-02 22:37
Mazdak2-Jun-02 22:37 
GeneralRe: WINDOWINFO and GetWindowInfo Pin
Paul M Watt3-Jun-02 5:34
mentorPaul M Watt3-Jun-02 5:34 
GeneralRe: WINDOWINFO and GetWindowInfo Pin
Rickard Andersson202-Jun-02 22:24
Rickard Andersson202-Jun-02 22:24 
GeneralRe: WINDOWINFO and GetWindowInfo Pin
Mazdak2-Jun-02 22:38
Mazdak2-Jun-02 22:38 
GeneralOnEraseBkgnd question Pin
Nish Nishant2-Jun-02 21:03
sitebuilderNish Nishant2-Jun-02 21:03 
GeneralRe: OnEraseBkgnd question Pin
Paul M Watt2-Jun-02 21:07
mentorPaul M Watt2-Jun-02 21:07 
GeneralRe: OnEraseBkgnd question Pin
Nish Nishant2-Jun-02 21:15
sitebuilderNish Nishant2-Jun-02 21:15 
GeneralRe: OnEraseBkgnd question Pin
Bernhard2-Jun-02 22:19
Bernhard2-Jun-02 22:19 
GeneralRe: OnEraseBkgnd question Pin
Nish Nishant2-Jun-02 22:25
sitebuilderNish Nishant2-Jun-02 22:25 
GeneralRe: OnEraseBkgnd question Pin
Tomasz Sowinski3-Jun-02 1:09
Tomasz Sowinski3-Jun-02 1:09 
GeneralGDI+ - Debug Build Pin
AJ1232-Jun-02 20:49
AJ1232-Jun-02 20:49 
GeneralRe: GDI+ - Debug Build Pin
Ed Gadziemski3-Jun-02 11:28
professionalEd Gadziemski3-Jun-02 11:28 
GeneralGDI + - Scan Line Order Pin
AJ1232-Jun-02 20:46
AJ1232-Jun-02 20:46 
GeneralRe: GDI + - Scan Line Order Pin
Paul M Watt2-Jun-02 21:04
mentorPaul M Watt2-Jun-02 21:04 
GeneralOne more thing Pin
Paul M Watt2-Jun-02 21:06
mentorPaul M Watt2-Jun-02 21:06 
GeneralCOM+ threading Pin
2-Jun-02 20:40
suss2-Jun-02 20:40 
GeneralFocus Pin
Mazdak2-Jun-02 19:34
Mazdak2-Jun-02 19:34 

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.