Welcome![Sign In][Sign Up]
Location:
Search - fill csharp

Search list

[CSharpWindowsApplication000

Description: 通过socket,TCP/IP协议,从WEB服务器(填写网站地址或IP地址)下载网页,保存到指定硬盘空间。-through the socket, TCP/IP, from the Web server (fill in Web addresses, or IP address) to download Web pages, designated to preserve disk space.
Platform: | Size: 25600 | Author: 张原 | Hits:

[OpenGL programOpen_Cylinder

Description: 画出Cylinder、Cone、Torus、Sphere四种图形的骨架和填满且可以旋转和放大缩小-painted cylinder, Cone, Torus. Sphere four skeletons and graphics and can fill rotation and Zooming
Platform: | Size: 11264 | Author: 林卉 | Hits:

[Special EffectsDrawFill

Description: 图形学,填充和裁剪算法,采用著名的Sutherland裁剪算法和扫描线填充算法。-Graphics, filling and cutting algorithm, using the well-known Sutherland clipping algorithm and the scan line fill algorithm.
Platform: | Size: 349184 | Author: 廖洪申 | Hits:

[WEB CodeDocumentManage_51aspx

Description: Asp.net企业信息文档管理系统 一个可以用于企业内部的文档资料管理的系统平台,利用TreeView控件进行树控制 有类别管理、文档管理、添加文档、浏览文档、附件管理、角色管理、添加角色、用户管理功能模块。 操作过程中: 1:选择上下移动按钮可以改变角色的排列顺序; 2:选择"pen"型按钮可以修改你所选的角色,并在下面的文本框中填写修改后的角色名称; 3:选择"X"型按钮可以删除你所选的角色。 默认管理帐号密码均为51aspx-Asp.net Enterprise Information Document Management System can be used in an internal document data management system platform, using tree controls TreeView control has categories management, document management, add files, browse documents, Attachment Manager, the role of management, add the role of user management function module. Operation: 1: Select button to move up or down to change the role of the order 2: Choose pen-type button can modify your chosen role, and in the text box below to fill the role of the revised name 3: Select X-type button you can delete the selected role. Management accounts are the default password 51aspx
Platform: | Size: 674816 | Author: joan | Hits:

[GUI DevelopProWPFinCSharp2008

Description: The Windows Presentation Foundation (WPF) changes all this by introducing a new model with entirely different plumbing. Although WPF includes the standard controls you’re familiar with, it draws every text, border, and background fill itself. As a result, WPF can pro- vide much more powerful features that let you alter the way any piece of screen content is rendered. Using these features, you can restyle common controls such as buttons, often with- out writing any code. Similarly, you can use transformation objects to rotate, stretch, scale, and skew anything in your user interface, and you can even use WPF’s baked-in animation system to do it right before the user’s eyes. And because the WPF engine renders the content for a window as part of a single operation, it can handle unlimited layers of overlapping con- trols, even if these controls are irregularly shaped and partially transparent.-The Windows Presentation Foundation (WPF) changes all this by introducing a newmodel with entirely different plumbing. Although WPF includes the standard controls you refamiliar with, it draws every text, border, and background fill itself. As a result, WPF can pro-vide much more powerful features that let you alter the way any piece of screen content isrendered. Using these features, you can restyle common controls such as buttons, often with-out writing any code. Similarly, you can use transformation objects to rotate, stretch, scale, and skew anything in your user interface, and you can even use WPF s baked-in animationsystem to do it right before the user s eyes. And because the WPF engine renders the contentfor a window as part of a single operation, it can handle unlimited layers of overlapping con-trols, even if these controls are irregularly shaped and partially transparent.
Platform: | Size: 9681920 | Author: 邵云鹏 | Hits:

[Chess Poker gameseluosifangkuai

Description: 一个用c#开发的 俄罗斯 方块的程序 用到了 填充算法-A used c# Developed procedures for the Russian box used the fill algorithm
Platform: | Size: 78848 | Author: 王汉 | Hits:

[ERP-EIP-OA-PortalEMS

Description: 企业进销存管理系统,本系统主要实现了支持多条件查询、批量填写进货单及销售单、与代理商和供应商往来账本明细,绝不存在假账、漏账、差账等情况、图表分析月销售状况、当外界环境(停电、网络病毒)干扰本系统时,系统可以自动保护原始数据的安全、强大的报表打印等功能。-Invoicing enterprise management system, this system is mainly to support the realization of multi-criteria query, fill in quantities and sales of single-进货单with agents and suppliers, details of contacts book, does not even exist accounting, missed payments, bad debts, etc., charts analysis on sales, when the external environment (power, network virus) interfere with the system, the system can automatically protect the safety of the raw data, a strong statement of printing.
Platform: | Size: 2888704 | Author: 梦徘徊 | Hits:

[CSharpShellControl_src

Description: 用C#编写的模拟命令行界面的控件,具备命令行常见的功能,包括自动补全等-Using C# prepared simulation command line interface controls with a common command-line functions, including auto-fill congruent
Platform: | Size: 17408 | Author: yywbupt | Hits:

[Internet-NetworkArpSender

Description: ArpSender是C#写的ARP发包器,写的初衷是想试下什么样的ARP包才会引起ARP攻击,构造一些包可能会导致别人上不了网。至于包怎么填,发挥大家的想象吧,嘿嘿。 ArpSender用了SharpPcap这个开源API,有兴趣的到网上查下,用起来挺简单的。编程过程中最大的问题就是线程的问题。发包的代码中用了BackgroundWorker控件,因为参数只能传一个,并且线程是不允许直接调用主窗口控件,后来用了一个结构体struct ArpPac来传,感觉还是很麻烦啊!不过还好在BackgroundWorker的RunWorkerCompleted可以直接操作主窗口控件了,能把结果显示到主窗口上。 在编写获取IP的MAC地址部分,一开始还是用BackgroundWorker,在获取存在的IP地址MAC时可以正常工作,可是当IP不存在是,DOWORK方法一直没结束。因为里面一个Resolve方法一直没返回,也没超时设定,线程就一直卡在那不动了。也不知道该怎么结束这个线程。于是改用了Thread,传参数用了个object数组,嘿嘿,所有参数都封起来。到了那边再解封,很好用。后来才发现,线程是没有返回值的。。又不能直接操作窗体控件。。没办法,只好设个全局变量来保存结果了。获取MAC部分还用了个Timer控件,1秒钟如果还没得到返回的MAC,直接结束该线程-ArpSender Writing C# are the ARP contract, and written under the original intent was to want to test what kind of ARP packets that would arouse the ARP attacks, construction of some packets may lead to others not on Net. As for how to fill package, everyone s imagination to play it, ArpSender spent SharpPcap this open source API, there is interest in online search, the very simple to use. Programming process is the biggest problem the question thread. Contract code used BackgroundWorker control, because the parameters can only be a mass, and threads are not allowed to directly call the main window controls, and later used a structure struct ArpPac to mass, I feel still very troublesome ah! Fortunately, however RunWorkerCompleted at BackgroundWorker can directly operate the main window controls, and the results can show up to the main window. In the preparation of access to IP-MAC address of the beginning or use BackgroundWorker, exist in access to the IP address of MAC c
Platform: | Size: 204800 | Author: 咹靜ゞ`兲倥 | Hits:

[Windows Developtreeview

Description: 简单动态实现treeview的功能,可以从数据库中调用数据来填充-dynamic data fill of treeview
Platform: | Size: 145408 | Author: huangmao | Hits:

[CSharpcomboboxfilter

Description: This Source Code C# to fill combobox to grid view-This is Source Code C# to fill combobox to grid view
Platform: | Size: 2048 | Author: toto | Hits:

[Windows DevelopSudoku_my

Description: This simple game sudoku. This program can create sudoku and also solve its own sudoku. You fill fields using drag-and-drop.-This is simple game sudoku. This program can create sudoku and also solve its own sudoku. You fill fields using drag-and-drop.
Platform: | Size: 111616 | Author: Tatyana | Hits:

[GUI DevelopGDI_plus_Painter

Description: GDI+绘图基本操作,包括绘制直线、矩形、椭圆以及绘制填充的基本图形,并可以把绘制的图形保存为位图-GDI+ graphics basic operations, including drawing a straight line, rectangle, ellipse, and fill the basic graphics rendering, and rendering can be saved as a bitmap graphics
Platform: | Size: 101376 | Author: leon | Hits:

[Windows Developfloodfill

Description: the flood fill in you picture-the flood fill in you picture
Platform: | Size: 109568 | Author: anony | Hits:

[SMSTC35GSMTest

Description: 1.串口连接短信猫后,依次选择串口、点击“开始”、点击“SMSCAddr”,填写手机号码和短信内容后,点击“Send”按钮发送短信。 2.源码可用于研究短信猫的AT指令,PDU编码格式,其中SMSInfo.cs 和 CodingHelper.cs 两个文件是研究PDU编码的关键类 3.整个工程使用了单例模式、委托等技术,编程风格很好,也值得刚毕业的人学习。-1. Serial connection messages after a cat, followed by choice of serial port, click " Start" , click " SMSCAddr" , fill in the contents of phone numbers and text messages, click the " Send" button to send text messages. 2. Source can be used to study the AT command cat SMS, PDU encoded format, in which the two documents SMSInfo.cs and CodingHelper.cs research PDU encoded key type 3. The whole project is the use of single-case model, commissioned by technology, for Cheng a good style, should also be fresh graduates to learn.
Platform: | Size: 1423360 | Author: 赵保龙 | Hits:

[Windows DevelopSendMail

Description: 一个简单的电子邮件发送程序,在网络连通的情况下,可以通过输入已注册的邮箱名和密码并填写邮件内容后向别人发送邮件,此程序只是实现了发送邮件的功能,不具有接收邮件的功能-A simple e-mail program, in the case of network connectivity, can be registered by entering the mailbox name and password and fill out the contents of e-mail to send messages to others, this program is to achieve the functions of email, do not have the functionality to receive e-mail
Platform: | Size: 161792 | Author: jingshaq | Hits:

[Windows MobileGradientFillDemo

Description: 基于.NET Compact Framework的控件背景渐变填充效果,实现了渐变的按钮和窗体。-Based on. NET Compact Framework controls the background gradient fill effect, achieved a gradient buttons and forms.
Platform: | Size: 14336 | Author: 黎波 | Hits:

[Windows DevelopUdpChatExample

Description: UDP网络聊天工具。在方框中填上ip之后,两个计算机可以直接进行通信。-UDP online chat tool. Ip fill in the boxes, the two computers can communicate directly.
Platform: | Size: 69632 | Author: 小明 | Hits:

[Other systemsmrqyjxc

Description: 本系统主要实现了支持多条件查询、批量填写进货单及销售单、与代理商和供应商往来账本明细,绝不存在假账、漏账、差账等情况、图表分析月销售状况、当外界环境(停电、网络病毒)干扰本系统时,系统可以自动保护原始数据的安全、强大的报表打印等功能。-This system is mainly implemented to support multi-criteria query, bulk fill Jinhuo Dan and sales orders, and agents and suppliers exchange books details, there is absolutely no false accounts, missed payments, bad debts, etc., charts, analysis of monthly sales situation, when the outside world environment (power outage, network virus) interfere with this system, the system can automatically protect the safety of the raw data, powerful reporting and printing.
Platform: | Size: 2749440 | Author: zml | Hits:

[Crack HackChattingSystemWithSecurityFunction

Description: 这是我上学时的一个作业,使用symetric key和mac给一个聊天程序发送的信息加密和解密。使用c#编写。单机测试的时候,打开2个实例,然后其中一个点listen,另一个的hostname填上localhost,然后点连接。两个chat就可以互相发送信息了。-This is my school, a job, use symetric key and the mac to a chat program to send the message encryption and decryption. Prepared using the c#. Stand-alone test, open the two instances in which a point and then listen, the other hostname fill localhost, and then point connection. 2 you can chat with each other to send information as well.
Platform: | Size: 221184 | Author: 刘洋 | Hits:
« 12 »

CodeBus www.codebus.net