Feeds:
Posts
Comments

Archive for March, 2006

If we check in Unicode file on VSS & again check out the same file, then ‘\n’ in the file got replaced with ‘\r\n’
Reason :
In unicode every lines ends with 000D 000A
SourceSafe completed the \r\n sequences to: 0D 0A 00 0D 0A 00
Which in Unicode means: 0A0D 0D00 000A.
Solution :
This happens because Sourcesafe does [...]

Read Full Post »

Recently while switching code from VC++ 6.0 to .NET, we have faced few problems
1) Displaying tooltip : Tooltip window was created but we are unable to display the same.
Solution :-
Just add following chunk of code into your header file.
#define WINVER 0×0400
#define _WIN32_WINDOWS 0×0400
#define _WIN32_WINNT 0×0400
#define _WIN32_IE 0×0500

Read Full Post »

Forcefully convert the version, if we moved to Access2000 from 97.
Otherwise while opening database file you will get following error : Unrecognized database format
AfxGetModuleState()->m_dwVersion = 0×0601;

Read Full Post »