字符串中显示乱码的问题

我下载了微软的Samples Environments for Microsoft Chart Controls进行学习,
不过编译时出现两类错误,一类提示“应输入;”,实际是代码中的很多字符串中出现了乱码,比如:

 this.label1.Text = "The Y data爒alue爄s bound to the chart using OleDb and燼n Access database, and爐h" +
                "e data is selected using a simple SQL query.?;                             

另一类错误是提示“常量中有换行符”,估计也应该是中英文字符集产生冲突了。比如:

 this.label9.Text = "This sample shows how to assign data to a chart series using a DataView object.?;

我的软件版本vs2012,请问在哪里设置字符集啊???

this.label9.Text = "This sample shows how to assign data to a chart series using a DataView object.?";

this.label1.Text = "The Y data爒alue爄s bound to the chart using OleDb and燼n Access database, and爐h" + "e data is selected using a simple SQL query.?";

两个语句后面都少个引号。

我的建议是,用notepad(记事本)打开源文件,另存为,选择编码ansi,再用VS打开。如果不行那就是源文件没有bom,记事本识别不出来是什么编码

图片说明
关闭后重启,弹出以上提示。