-
D2Q9
格子LBM计算典型参考,不错的介观计算方法(LBM calculation of the typical reference grid, a good mesoscopic method)
- 2010-07-11 22:34:06下载
- 积分:1
-
Chapter21
OpenGL程序设计,值得一看,适合入门读者(OpenGL programming, worth a visit, suitable for entry-readers)
- 2009-12-23 20:18:58下载
- 积分:1
-
Ch12SimpleAnimation
说明: 利用连贯的图片来显示简单的动画效果,这里包括三个picture控件:一个用来显示选定的图象,另外两个用来包含两个图象。(use of a coherent picture to show a simple animation effects-- including three picture controls : a selected to display images, the other two used to consist of two images.)
- 2006-05-02 20:59:50下载
- 积分:1
-
Optimizing C++ en
一本讲解C++优化方面的书籍。相信能给你收获。的(an optimizing C on the books. Can you believe that the harvest. The)
- 2005-03-28 21:42:54下载
- 积分:1
-
C#实现Socket通讯Demo
c#通过Socket实现图片、文件和文字的通讯。
private void button1_Click(object sender, EventArgs e)
{
try
{
server = TxStart.startServer(int.Parse(textBox_port.Text));
server.AcceptString = new TxDelegate(acceptString);
server.AcceptByte = new TxDelegate(acceptBytes);
server.Connect = new TxDelegate(connect);
server.dateSuccess = new TxDelegate(dateSuccess);
server.Disconnection = new TxDelegate(disconnection);
server.EngineClose = new TxDelegate(engineClose);
server.EngineLost = new TxDelegate(engineLost);
//server.BufferSize=12048;
//server.FileLog = "C:\test.txt";
server.StartEngine();
this.button1.Enabled = false;
this.button2.Enabled = true;
this.button3.Enabled = true;
}
catch (Exception Ex) { MessageBox.Show(Ex.Message); }
}
///
/// 发送按钮
///
///
///
private void button2_Click(object sender, EventArgs e)
{
try
{
IPEndPoint client = (IPEndPoint)this.comboBox1.SelectedItem;
if (client == null)
{
MessageBox.Show("没有选中任何在线客户端!");
return;
}
if (!this.server.clientCheck(client))
{
MessageBox.Show("目标客户端不在线!");
return;
}
server.sendMessage(client, textBox_msg.Text);
}
catch (Exception Ex) { MessageBox.Show(Ex.Message); }
}
///
/// 下面显示的
///
///
///
private void show(IPEndPoint ipEndPoint, string str)
{
label_zt.Text = ipEndPoint.ToString() ":" str;
label_all.Text = "当前在线人数:" this.server.ClientNumber.ToString();
}
///
/// 当组合框按下的时候
///
///
///
private void comboBox1_DropDown_1(object sender, EventArgs e)
{
try
{
List list = this.server.ClientAll;
this.comboBox1.DataSource = list;
}
catch { }
}
///
/// 关闭客户端的按钮
///
///
///
private void button3_Click_1(object sender, EventArgs e)
{
IPEndPoint client = (IPEndPoint)this.comboBox1.SelectedItem;
if (client == null)
{
MessageBox.Show("没有选中任何在线客户端!");
return;
}
if (!this.server.clientCheck(client))
{
MessageBox.Show("目标客户端不在线!");
return;
}
server.clientClose(client);
}
#endregion
- 2021-08-22 00:31:02下载
- 积分:1
-
IIR
IIR数字滤波器的设计 上学的时候一直不知道如何用C语言来编写IIR滤波器,终于找到了,上传给大家 希望能帮到大家。(IIR digital filter design when the school did not know how to use C language to write IIR filters, and finally found it, upload to hope to help you.)
- 2013-12-02 14:46:26下载
- 积分:1
-
从C++编写的控制台版五子棋游戏
用C++编写的控制台版五子棋游戏,自带AI,可以人机对战
用C++编写的控制台版五子棋游戏,自带AI,可以人机对战
用C++编写的控制台版五子棋游戏,自带AI,可以人机对战
- 2023-07-16 17:25:03下载
- 积分:1
-
mataqipan
马踏棋盘的贪心算法,8*8棋盘,基本上不用回溯。(horse riding chessboard of the greedy algorithm, 8* 8 chessboard, basically not retroactive.)
- 2006-05-30 20:05:17下载
- 积分:1
-
VCPP
此资料能够使自己充分的了解VC++,而且还能在其中熟悉语言环境。(This information can make their full understanding VC++, but also the environment in which you are familiar with the language.)
- 2013-09-23 12:23:03下载
- 积分:1
-
chengji
一个c编写成绩系统
可以进行添加、删除、修改等操作
Dos界面(C prepare a performance system can add, delete, modify operation, such as Dos interface)
- 2007-11-12 19:45:14下载
- 积分:1