-
和outlook界面类似的一个界面例程,vc++mfc实现
和outlook界面类似的一个界面例程,vc++mfc实现-outlook interface and an interface similar routines, achieving vc mfc
- 2022-03-15 17:46:13下载
- 积分:1
-
VC6.0 MSDN精简CHM版
当我提供了MSDN精简版的下载后,有人就说精简版的VC不支持搜索,这是由于微软相关CHM文件制作问题造成
的。后来想起我大学的时候不也一直迷茫吗?不懂的时候,到处碰壁。许多时间浪费在寻找正确的道理。
所以今天我花了很长的时间Dump MSDN中的CHM文件制作了这个版本,希望对学习VC和MASM的开发人员有些
帮助。
- 2022-12-22 10:25:05下载
- 积分:1
-
MFC程序中类之间变量的互相访问,非常使用的技巧
MFC程序中类之间变量的互相访问,非常使用的技巧-MFC process between variables like to visit, use the very skills! !
- 2022-07-20 14:09:29下载
- 积分:1
-
inventory system
此系统用于库存目的nkknxNCNPn scjsaf9js i jdo9q9 opdfm wf msjf0jd fiq0fq gfiu fkf-fofi fk-=
- 2022-08-14 22:56:15下载
- 积分:1
-
In the Visual C++ Make a good interface programming tool library, yes, recommend...
在Visual C++做界面编程不错的工具库,不错,推荐。-In the Visual C++ Make a good interface programming tool library, yes, recommended.
- 2022-04-12 13:53:18下载
- 积分:1
-
涂料应用在C++中使用的图形库编码。H
application PAINT coded in c++ using library graphics.h
- 2022-08-25 17:20:13下载
- 积分:1
-
五子棋程序源代码
一个不错的五子棋程序源代码,有漂亮的界面,使用起来很方便,乐趣多多。
- 2022-01-25 20:25:53下载
- 积分:1
-
本程序使用ADO访问Access2000的数据库。请适当修改stdafx.h中
#import "g:program filescommon filessy...
本程序使用ADO访问Access2000的数据库。请适当修改stdafx.h中
#import "g:program filescommon filessystemadomsado15.dll" no_namespace rename("EOF","adoEOF")
msado15.dll的路径-The program uses ADO to visit ACCESS2000 database. Please modify stdafx.h appropriate in# Import
- 2022-07-01 21:22:59下载
- 积分:1
-
delphi精略也就是《Delphi 精要》也不知道好不好,不要见怪哟
delphi精略也就是《Delphi 精要》也不知道好不好,不要见怪哟-is "Delphi incisive" I do not know or not, do not mind yo!
- 2023-05-04 18:55:05下载
- 积分: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