英文版已经RTM,如果等不及的朋友可以直接下载90天trial版。 下载地址:http://download.microsoft.com/download/d/8/9/d89c9839-ac45-4a6c-b25f-2f60b190e356/VS2008TeamSuiteENU90DayTrialX1429235.iso 然后用正版序列号换下就变成正式版了。 Read More
posted @ 2007-11-21 09:13 zeus2 Views(461) Comments(5) Diggs(0) Edit
当出现void sort(int[])传递的是数组的首地址。所以不管C/C++/C#传递的都是地址 文章来源:http://localhost/blog/read.php?16 Read More
posted @ 2007-07-15 02:42 zeus2 Views(386) Comments(0) Diggs(0) Edit
http://www.cppreference.com/集中了很多C语言函数 文章来源:http://localhost/blog/read.php?15 Read More
posted @ 2007-07-14 07:03 zeus2 Views(131) Comments(0) Diggs(0) Edit
[separator][quote][font=Consolas][color=#804000]#include [/color][color=#000080][/color][color=#008000]/* Declare Windows procedure */[/color][color=#800040]LRESULT CALLBACK WindowProcedure [/col... Read More
posted @ 2007-07-14 02:12 zeus2 Views(393) Comments(0) Diggs(0) Edit
根用户操作首先以root运行su rootecho 'albert ALL=(ALL) ALL' >> /etc/sudoers格式'your_user_name ALL=(ALL)NOPASSWD: ALL'NOPASSWD是不需要输入密码 文章来源:http://localhost/blog/read.php?12 Read More
posted @ 2007-07-14 01:23 zeus2 Views(226) Comments(0) Diggs(0) Edit
本文以轻松的笔调介绍了自己在Linux环境下进行程序开发的体会和经验,主要是对Linux下的开发工具和开发环境做了一个生动、明快的描述。 linux开发环境之最: 最有用开发语言: C/C++,Perl,Pascal. 最流行的工具集: gtk/gdk,qt,xforms 最好的可视化开发工具: glade,designer,kdeveloper 最cool的代码阅读工具: s... Read More
posted @ 2007-07-12 08:47 zeus2 Views(204) Comments(0) Diggs(0) Edit
学习C++感觉蛮简单,题目基本会做,但是弄弄MFC一头雾水。怎么搞都弄不清楚,将来只有C++写dll,给C#调用API了。还是C#简洁,实用。 Read More
posted @ 2007-06-28 02:19 zeus2 Views(408) Comments(1) Diggs(0) Edit
首先建立一个关于身份验证的类 api.csCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 using System; 2 using System.Collections; 3 using System.Text; 4 using Sy... Read More
posted @ 2007-06-24 21:03 zeus2 Views(959) Comments(0) Diggs(0) Edit
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 using System; 2 using System.Data.SQLite; 3 using System.Configuration; 4 using System.Web; 5 using... Read More
posted @ 2007-06-16 21:40 zeus2 Views(1715) Comments(2) Diggs(0) Edit
如果你的Web页面需要在load时加载东西,请首先加上 if (!IsPostBack){ //你的代码} 昨天花了半小时找出的问题。我的程序很简单,就是一个用于新闻修改的系统。流程如下1、从数据库读出需要修改的数据(数据ID从Request.QueryString)取得2、修改数据,从TextBox取出需要修改的数据3、提交(将修改存入数据库,修改后的数据从TextBox取得)如果没有if... Read More
posted @ 2007-06-16 12:00 zeus2 Views(391) Comments(0) Diggs(0) Edit