04 2012 档案

摘要:#include <iostream>#include <gl\glut.h>#include <gl\GL.h>#include <gl\GLU.h>#include "base.h"using namespace std;int x, y;void display(void){ glClear(GL_COLOR_BUFFER_BIT); glPushMatrix(); //glBegin(GL_TRIANGLES); glBegin(GL_QUADS); glVertex2d(x, y); glVertex2d(x + 3 阅读全文
posted @ 2012-04-19 20:44 litstrong 阅读(331) 评论(0) 推荐(0)
摘要:1. .NET无法成功部署,遇到错误Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection,在这看到,以为可以删除SQLEXPRESS解决问题,可在我的电脑中找不到该文件,同时还遇到了无法识别的属性“targetFramework”的错误,原因是我用的是.NET4写的,可IIS中或电脑中没有配备想适应的.NET版本,参见这将IIS中的应用池选为.NET4.0的应用池,参见这将无法正常生成SQL实例 阅读全文
posted @ 2012-04-02 19:09 litstrong 阅读(194) 评论(0) 推荐(0)