-
这是一个用VB6.0编写直接请空回收站的程序
这是一个用VB6.0编写直接请空回收站的程序-This a preparation with VB6.0 Please direct air Recycling procedures
- 2022-06-03 14:43:36下载
- 积分:1
-
设计(论文)报告
黄鑫 毕业设计(论文)开题报告-design (thesis) that opened report
- 2022-02-14 05:13:02下载
- 积分:1
-
应用于MFC的窗口分割
If your application uses MFC in a shared DLL, and your applicat...
应用于MFC的窗口分割
If your application uses MFC in a shared DLL, and your application is
in a language other than the operating system s current language, you
will need to copy the corresponding localized resources MFC40XXX.DLL
from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
and rename it to be MFCLOC.DLL. ("XXX" stands for the language abbreviation.
For example, MFC40DEU.DLL contains resources translated to German.) If you
don t do this, some of the UI elements of your application will remain in the
language of the operating system.-MFC application partition window If your application uses MFC in a shared DLL, and your application is in a language other than the operating system" s current language, you will need to copy the corresponding localized resources MFC40XXX.DLL from the Microsoft Visual C++ CD- ROM onto the system or system32 directory, and rename it to be MFCLOC.DLL. ( " XXX" stands for the language abbreviation. For exam
- 2022-04-26 15:45:34下载
- 积分:1
-
一个取色板的例子
一个取色板的例子--An example of color picker
- 2022-04-21 10:05:37下载
- 积分:1
-
eight digital vc realize the problem, beautiful interface, highly functional
八数码难题的vc实现,界面美观,功能很强-eight digital vc realize the problem, beautiful interface, highly functional
- 2023-02-02 06:50:03下载
- 积分:1
-
CTime的替换类,不错!
CTime的替换类,不错!-CTime the replacement category, it is true!
- 2022-03-21 03:22:19下载
- 积分:1
-
本程序模拟进程调度程序,从进程的创建到结束,运用随机函数进行创建进程...
本程序模拟进程调度程序,从进程的创建到结束,运用随机函数进行创建进程-the simulation process scheduler, from the creation process to the end, using the random function for the creation process
- 2023-02-13 21:35:03下载
- 积分:1
-
This program explains how to enable the Dra g
此程序说明如何在应用程序中启用drag-Drop功能。此外,您可以将整个目录放到程序中,它会将特定目录中的文件添加到列表中。
- 2022-11-30 09:20:03下载
- 积分:1
-
图书管理系统
程序使用说明:
本程序是简单的图书管理系统,分为添加新书、浏览全部图书和删除图书三个功能。
输入1可添加新书,分别输入书名、ISDN、价格和作者后,即添加完成。
输入2可浏览全部的图书。
输入3可删除图书,输入要删除的行号,即可删除该行,如果输入的行号是最后一行,即删除全部。
- 2022-05-26 23:07:06下载
- 积分: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