visual-c++-2010-express

How do I build Notepad++ with Visual C++ 2010 Express?

徘徊边缘 提交于 2019-11-30 14:02:16
Windows SDK is installed. I built N++ successfully with Visual C++ 2008 Express before. But now with 2010 I have a lot of error messages about sprintf_s : 1>C:\Program Files\Microsoft Visual Studio 10.0\VC\include\string(676): error C2039: 'sprintf_s' : is not a member of '`global namespace'' 1>C:\Program Files\Microsoft Visual Studio 10.0\VC\include\string(676): error C3861: 'sprintf_s': identifier not found Please help. There's a property sheet included with the project named no_ms_shit.props (after conversion). There's a fair amount of hate expressed in that sheet for what MS has been

Drawing Text with GDI+

旧街凉风 提交于 2019-11-30 04:55:34
问题 I have searched for some days now to find a possibility to display text on my GDI+ application. I tried using the DrawString() function of GDI+ but the reference on MSDN does not work as it does not match with the parameter list. I am using Visual C++ 2010 Express. I changed the MSDN example to make it compile, like this: LinearGradientBrush* myBrush = new LinearGradientBrush(Rect(0,0,width,height),Color::Red, Color::Yellow, LinearGradientMode::LinearGradientModeHorizontal); Font* myFont =

How do I build Notepad++ with Visual C++ 2010 Express?

好久不见. 提交于 2019-11-29 19:27:50
问题 Windows SDK is installed. I built N++ successfully with Visual C++ 2008 Express before. But now with 2010 I have a lot of error messages about sprintf_s : 1>C:\Program Files\Microsoft Visual Studio 10.0\VC\include\string(676): error C2039: 'sprintf_s' : is not a member of '`global namespace'' 1>C:\Program Files\Microsoft Visual Studio 10.0\VC\include\string(676): error C3861: 'sprintf_s': identifier not found Please help. 回答1: There's a property sheet included with the project named no_ms