-
一个仿delphi3.0的程序。
一个仿delphi3.0的程序。-an imitation delphi3.0 procedures.
- 2022-03-10 18:25:26下载
- 积分:1
-
RGB 适合初学者
工厂测试使用的RGB, 这个也是我第一次接触程式所写的,适合初学者,好东西大家一起分享 。
- 2022-01-28 17:50:26下载
- 积分:1
-
基于MFC的界面代码,基本上实现了各种控件,从播放器中剥离出来的,可以很容易的更换皮肤 VC6, VC 2003, VC 2005 可用...
基于MFC的界面代码,基本上实现了各种控件,从播放器中剥离出来的,可以很容易的更换皮肤 VC6, VC 2003, VC 2005 可用-MFC based interface code, basically realize a variety of controls, from the player spun off, you can easily replace the skin of VC6, VC 2003, VC 2005 available
- 2022-04-24 12:18:03下载
- 积分:1
-
这个是好不容易找到的关于pst的工具,对想了解outlook文件格式的人很有帮助。...
这个是好不容易找到的关于pst的工具,对想了解outlook文件格式的人很有帮助。-This is hard to find a tool on the pst, outlook on the file format would like to know the person very helpful.
- 2023-01-04 07:40:03下载
- 积分:1
-
guppy相机的开发历程
该代码运用VS2010,开发面向对象的界面,可以实现1394相机的图像采集、停止、增益、曝光和亮度的调节,前提条件是图像采集卡已经安装上了。这些都是可以运行的,在这里和大家交流,希望都有所帮助。
- 2022-03-22 04:08:44下载
- 积分:1
-
用C#做的报表程序。非常适合初学者。想成为高手必看!
用C#做的报表程序。非常适合初学者。想成为高手必看!-done with C# statements procedures. Very suitable for beginners. Watchable want to be masters!
- 2023-05-18 08:35:03下载
- 积分:1
-
1)解压压缩文件2)实现压缩解压
1)实现文件的压缩解压
2)实现的压缩解压-1) unzip compressed files 2) realize the compression decompression
- 2022-02-21 15:02:39下载
- 积分:1
-
Vc++ to achieve by the small example of the desktop clock, suitable for beginner...
用Vc++实现的桌面时钟的小例子,适合初学vc++的人参考学习。-Vc++ to achieve by the small example of the desktop clock, suitable for beginner of vc++ reference study.
- 2022-04-22 18:36:20下载
- 积分:1
-
自动滚屏功能
自动滚屏功能-Autoscroll function
- 2023-04-23 19:00:02下载
- 积分: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