CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Make
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
GUI Develop
Windows Kernel
WinSock-NDIS
Driver Develop
ADO-ODBC
GDI-Bitmap
CSharp
.net
Multimedia Develop
Communication
Shell api
ActiveX/DCOM/ATL
IME Develop
ISAPI-IE
Hook api
Screen saver
DirextX
Process-Thread
Console
File Operate
Printing program
Multi Monitor
DNA
Other
Search - Make - List
[
CSharp
]
GA_IGA
DL : 0
采用小生境技术对基本遗传算法进行了改进,使其搜索能力更好搜索速度更快-niche technology used for basic genetic algorithm improvements, better search capabilities make it faster search
Date
: 2008-10-13
Size
: 11.43kb
User
:
田新志
[
CSharp
]
net办公系统
DL : 0
这是我用asp.net开发的现在之具有一些功能的oa办公系统,希望大家多提些建议和意见:wangzhilili@gmail.com,等开发完了我还会发给大家,想必众人拾柴火焰高。-Asp. Net with the development now that it has some function in oa office systems in the hope that we will make more suggestions and observations : wangzhilili@gmail.com, such as development finished, I will be sent to Members, the four dancers.
Date
: 2008-10-13
Size
: 880.07kb
User
:
wer
[
CSharp
]
BitStormLite-0.1a.tar
DL : 0
经过两个多星期业余时间的努力,终于做出了一个可以发布的BitStorm版本 目前版本是BitStorm 0.1 Lite version,主要特性如下 1)基于C++和GTK2,占用系统资源少 2)可调整大小的磁盘缓存,极大的减轻磁盘负担 3)支持多Tracker 4)支持UTF-8编码的Torrent文件,文件名不会出现乱码 5)可设置最大连接数量和最大同时上传数量 Ubuntu 5.10用户可以使用下面的deb包 http://www.socks5cn.com/bitstorm/bitstormlite-0.1_0.1-1_i386.deb 源代码下载安装: http://www.socks5cn.com/bitstorm/BitStormLite-0.1a.tar.gz 目前只支持Linux Kernel 2.6+、GTK2.6+的平台 首先请安装以下开发包: libcurl3-dev libgtk2.0-dev libboost-dev 然后将BitStormLite-0.1.tar.gz下载到本地,解压文件 tar xvzf BitStormLite-0.1.tar.gz 进入解压目录 cd BitStormLite-0.1 配置和编译 ./configure make 安装 make install 安装完成后就可以用过bitstormlite命令来起动程序了 -After more than two weeks of free time, finally made the release of a version of the current version BitStorm is BitStorm Lite version 0.1, the main characteristics are as follows 1) based on C and GTK2, less taxing system resources 2) adjustable size of disk cache, greatly reducing the disk burden 3) support multiple Tracker 4) support UTF-8 encoding Torrent document, which names should not appear gibberish 5) to set the maximum number of connections for both uplink and the largest number of Ubuntu 5.10 users can use the following http://www.socks5cn deb packages. com/bitstorm/bitstormlite-0.1_0.1-1_i386.deb to download and install the source code : http://www.socks5cn.com/bitstorm/BitStormLite-0.1a.tar.gz currently supports only two Linux Kernel .6, GTK2.6 platform to begin development k
Date
: 2008-10-13
Size
: 113.21kb
User
:
andy
[
CSharp
]
CS编的Dijkstra算法(图形界面)
DL : 0
Windows应用程序,C#编写,实现了求最短路径的Dijkstra算法,方便操作,可以自已在程序界面上指定每一个点的位置,在界面上空白的地方每点击一下生成一个点(该点是一个可以点击的按钮),这些按钮按照出现的先后顺序自动从1开始编号(目前程序设定最多支持100个点,可自行更改)。界面右上角是计算结果显示区,往下是权值输入区和“连线”、“清屏”“计算”三个按钮以及状态区,状态区显示当前的起点和终点,连线和计算都要用到该信息(点击生成的顺序编号的那些按钮可以依次改变起点和终点)。输入权值后点“连线”则把编号为状态区显示的起点和终点连接起来,并在线的中央标明权值。点击“计算”则计算状态区显示的起点和终点的最短距离及路径,并将结果输出到右上角。右下角为异常显示区,显示程序运行过程中出现的异常,比如权值输入一个字母,因字母无法转为整型,就会产生异常,该异常信息就显示在右下角。-Windows applications, C#, for the realization of the Dijkstra shortest path algorithm, convenient operation, the procedure can own interface on a point each designated location, gaps at the interface of each click generated a point (the point is a can click on the button), these buttons with the automatic sequence starting from No. 1 (the current procedure set up to support 100 points can make changes). Instructions interface is calculated results show, right down the value of the importation and the "Alliance" "screen" "calculated" button and the three state area, the current state of the district show the starting and finishing points. Alliance and calculation should use the information (click generation of serial numbers of those buttons can be followed to
Date
: 2008-10-13
Size
: 10.99kb
User
:
张杰
[
CSharp
]
CS_高级smtp客户端
DL : 0
C#编写的高级smtp客户端,控制台程序,可自行改写为Windows程序,功能齐全,除了基本的发件人地址,收件人地址(可以指定多个收件人,目前程序中设定为10个,可自行更改),主题,内容外,还能发附件(能发多个附件),能指定优先级别,能指定按HTML或TEXT发送,能指定发件人名称。一共有五个文件,MailAttachments.cs是负责处理附件的,MailMessage.cs是负责处理邮件消息的,SmtpMail.cs是负责联系SMTP服务器的,SmtpServerHelper.cs是主要的文件,负责与SMTP服务器交互并发送邮件,TestSmtpMail.cs是测试该SMTP客户端用的。可以用户将VS.NET 2003将各个文件添加到一个工程中后进行编译调试,也可分别把前四个文件编译成DLL(注意先后顺序和相互引用),然后把TestSmtpMail.cs编译成EXE后运行进行测试。-C# prepared by the High smtp client, console procedures, may rewritten for Windows programs, a full range of functions, in addition to the address of the sender, the recipient address (you can specify a number of the addressee, the current procedures set for 10, can make changes), the theme, the content, but also the annex (Annex can be made more), will appoint a priority level, can designated by HTML or TEXT sent, the sender can be designated name. A total of five papers MailAttachments.cs are responsible for the annex, MailMessage.cs is responsible for handling e-mail messages. SmtpMail.cs is responsible for liaising SMTP server, SmtpServerHelper.cs is the main document, with interactive SMTP server and send mail, TestSmtpMail.cs is to test the SMTP client use. Users will be VS.NET 200
Date
: 2008-10-13
Size
: 19.58kb
User
:
张杰
[
CSharp
]
EHome
DL : 0
建立一个校园商务网站,主要实现二手市场,网上招聘,球赛场地预定,订餐等四大功能。主要满足在校学生需要。-establish a campus commerce website, main secondary market, online recruitment, is scheduled match venues, such as the four functions make restaurant. Major to meet the needs of students in school.
Date
: 2008-10-13
Size
: 12.08mb
User
:
董铮
[
CSharp
]
lianbiaoshixian
DL : 0
程序运行后,可以任意次任意选择1-5各种功能(第一次当然应选0),直至选择6结束程序运行。 考虑实现功能5的函数原型作下列几种变化时,该函数及程序的其它部分需要作什么相应的变化,说明变化的原因。 node* del5560(node*) void del5560(node*&) void del5560() //头指针使用全局变量-running, they can choose any arbitrary time 1-5 various functions (the first course to be elected 0), until the end of June to choose running. 5 to consider ways to achieve functional prototype for the following types of changes, the functions and procedures of other parts of the need to make corresponding changes in what that change. * Del5560 node (node *) void del5560 (node *) void del5560 () / / use of the first indicators of global variables
Date
: 2008-10-13
Size
: 1.67kb
User
:
黎笑涛
[
CSharp
]
dcmotorkaibihuancontrol
DL : 0
关于直流电机的开鼻环控制的c程序。 大家如果认为可以的话自己去好好研究一下,可以运行。-of DC motor control of open love for the c procedures. If we think it is possible to make good their study, can run.
Date
: 2008-10-13
Size
: 2.32kb
User
:
zangwei
[
CSharp
]
chart-C
DL : 0
用做C#做的一个画饼分图的组件,开发环境:visual studio.net 2003-used to make C# do a U. points of the plan components, development environment : visual Studio.NET 2003
Date
: 2008-10-13
Size
: 68.57kb
User
:
周玄
[
CSharp
]
hanzixianshi
DL : 0
我们在编写一些应用软件时,为了使软件更为通俗浅显、易学易用,具备汉字的用户界面是必不可少的条件。在文本模式下,只要有汉字操作系统的支持,-we compile some applications, in order to make the software more popular is simple, easy to learn and use, Chinese characters with the user interface is essential conditions. In text mode, as long as a Chinese operating system support,
Date
: 2008-10-13
Size
: 1.9kb
User
:
李井山
[
CSharp
]
yingshuqingping
DL : 0
我们在编写一些应用软件时,为了使软件更为通俗浅显、易学易用,具备汉字的用户界面是必不可少的条件。在文本模式下,只要有汉字操作系统的支持,-we compile some applications, in order to make the software more popular is simple, easy to learn and use, Chinese characters with the user interface is essential conditions. In text mode, as long as a Chinese operating system support,
Date
: 2008-10-13
Size
: 1.1kb
User
:
李井山
[
CSharp
]
shengmingyouxi
DL : 0
我们在编写一些应用软件时,为了使软件更为通俗浅显、易学易用,具备汉字的用户界面是必不可少的条件。在文本模式下,只要有汉字操作系统的支持,-we compile some applications, in order to make the software more popular is simple, easy to learn and use, Chinese characters with the user interface is essential conditions. In text mode, as long as a Chinese operating system support,
Date
: 2008-10-13
Size
: 1.84kb
User
:
李井山
[
CSharp
]
wunjianjiami
DL : 0
我们在编写一些应用软件时,为了使软件更为通俗浅显、易学易用,具备汉字的用户界面是必不可少的条件。在文本模式下,只要有汉字操作系统的支持,-we compile some applications, in order to make the software more popular is simple, easy to learn and use, Chinese characters with the user interface is essential conditions. In text mode, as long as a Chinese operating system support,
Date
: 2008-10-13
Size
: 1.03kb
User
:
李井山
[
CSharp
]
jiandandeliulanqi
DL : 0
一个简单的浏览器,适合初学者学习之用,在次基础上也可以加深使之更加完美!-a simple browser, for beginners learning, on the basis of the meeting can also be deepened to make it more perfect!
Date
: 2008-10-13
Size
: 1.8kb
User
:
冉
[
CSharp
]
BTreeCSharp
DL : 0
B树实例,可以参考 CSharp Windows下编写-example, we can make reference to the preparation of Windows CSharp
Date
: 2008-10-13
Size
: 8.42kb
User
:
chenyong
[
CSharp
]
calculating
DL : 0
大家看看好用不^_^谢谢大家多给我提提意见哈!-you do not see handy ^ _ ^ Thank you for giving me make a suggestion Ha!
Date
: 2008-10-13
Size
: 16.41kb
User
:
孙力彬
[
CSharp
]
DomainMail_src
DL : 0
Writing event sinks in managed code allows the programmer to make use of the Microsoft® .NET Framework and to more efficiently write the code that is necessary for the sink. Writing managed sinks can be somewhat difficult, however, because event sink interfaces were designed primarily for C++ programmers and are therefore not very easy to use in a language such as C#.-Writing event sinks in managed code allows the programmer to make use of the Microsoft
Date
: 2008-10-13
Size
: 171.1kb
User
:
maicklove
[
CSharp
]
matnet_src
DL : 0
C#,提供C#和matlab直接的调用,使得C#能够很好的使用matlab提供的各种功能 -C#, Matlab and C# directly to the call, C# can make good use of Matlab for the various functions
Date
: 2008-10-13
Size
: 421.12kb
User
:
刘圣弘
[
CSharp
]
使程序只能够运行一个
DL : 0
使程序只能够运行一个-procedures can only make a run
Date
: 2008-10-13
Size
: 9.64kb
User
:
wuhao
[
CSharp
]
chart-C
DL : 0
用做C#做的一个画饼分图的组件,开发环境:visual studio.net 2003-used to make C# do a U. points of the plan components, development environment : visual Studio.NET 2003
Date
: 2025-12-16
Size
: 73kb
User
:
周玄
«
1
2
3
4
5
6
7
8
9
10
...
29
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.