-
VB 发薪系统
你好,这是我的论文项目。将处理工资报表、 打印工资单和打印工资单,摘要的简单的 vb 发薪系统。
- 2022-06-21 17:48:39下载
- 积分:1
-
教你如何编写换皮肤的程序
教你如何编写换皮肤的程序-teach you how to prepare the skin for the procedure
- 2022-02-04 21:38:33下载
- 积分:1
-
Axure实例演示
资源描述Axure软件关于很多例程的演示,包括定时器、动态图、系统登录等等,还是比较有用的,希望大家喜欢。初学者赶紧围过来,绝对干货、福利满满
- 2023-01-07 15:35:04下载
- 积分: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
-
编译原理tiny语言的扩充
资源描述
这是一个对于编译原理tiny语言的扩充代码
将其编译原理的的文法扩充了很多
很实用
可以产生一个小的tiny语言的程序界面
- 2023-08-07 18:00:04下载
- 积分:1
-
VHDL应用程序100例,适合初学者研究及练习 其中包含加法器译码器等多程序。...
VHDL应用程序100例,适合初学者研究及练习 其中包含加法器译码器等多程序。-100 samples of VHDL, it is fit for beginner to study and practice.
Adding machine, decoder and others are included.
- 2022-03-20 23:08:41下载
- 积分:1
-
记事本程序,可以实现和在记事本中的所有功能,包括…
记事本程序,可以实现和WINDOWS里记事本里所有功能,包括显示系统当前时间,和光标行数-Notepad program, you can realize and WINDOWS in Notepad all functions, including the current time display system, and the cursor rows
- 2022-02-04 18:40:07下载
- 积分:1
-
与国外经典计算机教材《Practical Object
与国外经典计算机教材《Practical Object-Oriented Design with UML》配套的源代码。作者:Mark Priestley -classic computer with foreign materials "Practical Object-Oriented Design with UML" complementary source. Author : Mark Priestley
- 2022-01-25 15:01:15下载
- 积分:1
-
asp例子
asp例子-asp example
- 2022-10-18 07:35:03下载
- 积分:1
-
一个功能强大的c++标尺控件,封装得很好,非常好用
一个功能强大的c++标尺控件,封装得很好,非常好用-A powerful c++ benchmark control, packaging very well, very easy to use
- 2022-02-20 09:02:35下载
- 积分:1