-
自动识别验证码
在与服务端的连接建立以后,我们就可以通过此连接来发送和接收数据。端口与端口之间以流(Stream)的形式传输数据,因为几乎任何对象都可以保存到流中,所以实际上可以在客户端与服务端之间传输任何类型的数据。对客户端来说,往流中写入数据,即为向服务器传送数据;从流中读取数据,即为从服务端接收数据。对服务端来说,往流中写入数据,即为向客户端发送数据;从流中读取数据,即为从客户端接收数据
- 2022-09-20 08:55:02下载
- 积分:1
-
List控件:List控件与相关的事件处理程序。
List控件:List控件与相关的事件处理程序。-Control List : List controls and related procedures for handling the incident.
- 2022-03-21 18:37:13下载
- 积分:1
-
一个报表打印类的例子
一个报表打印类的例子- A report form printing class example
- 2022-02-26 02:12:54下载
- 积分:1
-
Unity3d UGUI官方案例
Unity3d UGUI官方案例 内容丰富 多种3D与2DUI 结合的场景
- 2022-01-24 10:17:14下载
- 积分:1
-
自由独立的窗口方便MDI和SDI程序的创建
自由实现窗口分割,方便创建SDI和MDI程序-liberty separate window to facilitate the creation of MDI and SDI procedures
- 2023-01-13 10:30:04下载
- 积分:1
-
漂亮的软件风格(含控件源码)
界面不是一般的好看
漂亮的软件风格(含控件源码)
界面不是一般的好看-Beautiful style software (including source code control) interface is not an ordinary good-looking
- 2022-10-24 15:55:04下载
- 积分:1
-
add dialog to the structure of Doc and view
vc++编写的如何在文档视图结构中多次添加对话框的例子-add dialog to the structure of Doc and view
- 2022-09-10 19:50:04下载
- 积分:1
-
很好的VB代码大全,很有参考价值,大家快来下吧
很好的VB代码大全,很有参考价值,大家快来下吧-good VB code Daquan, great reference value, we are you hurry
- 2023-06-20 14:35:03下载
- 积分:1
-
基于c#的时钟
资源描述本源程序是基于C#的时钟设计,能为初学者提供参考价值,为初学者提供基本的编写代码思路,
namespace Clock
{
public partial class MainForm : Form
{
private PointF center;
private float r;
private Pen hourPen;
private Pen minutePen;
private Pen secondPen;
private Thread timeThread;
public MainForm()
{
InitializeComponent();
ShowInTaskbar = false;//不在任务栏中显示
SetStyle(ControlStyles.DoubleBuffer, true);
SetStyle(ControlStyles.UserPaint,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
center = new PointF(ClientSize.Width/ 2.0f, ClientSize.Height/ 2.0f);
r = Math.Min(ClientSize.Width / 2.0f, ClientSize.Height / 2.0f);
hourPen = new Pen(Color.Black, 2.5f);
minutePen = new Pen(Color.Black, 1.5f);
secondPen = new Pen(Color.Black, 0.5f);
timeThread=new Thread(new ThreadStart(DrawTime));
timeThread.Start();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.Clear(BackColor);
//g.SmoothingMode =
- 2022-01-26 05:22:52下载
- 积分:1
-
This is the query interface, database and search interface connectivity, it is a...
这是关于查询界面,是数据库与界面连接的搜寻系统,是一个添加查询界面-This is the query interface, database and search interface connectivity, it is an added Query Interface
- 2022-02-11 14:45:28下载
- 积分:1