-
this is the source code of a beautiful interface in vc,you can use it as your ba...
这是一个漂亮界面在VC中的实现源程序,你可以用它来作为你软件的基础.-this is the source code of a beautiful interface in vc,you can use it as your base of software.
- 2023-02-25 17:45:03下载
- 积分:1
-
printf使用的代码
本文件是用于帮助你了解printf函数的使用注意的情况,有利于初学者学习,printf在使用时要调用putchar函数
- 2022-04-21 18:44:45下载
- 积分:1
-
使用CArchive类对文件进行操作。MFC框架程序提供的文件新建与打开功能内部的实现机制。如何利用CDocument类的串行化存储功能保存与加载数据。如何实现...
使用CArchive类对文件进行操作。MFC框架程序提供的文件新建与打开功能内部的实现机制。如何利用CDocument类的串行化存储功能保存与加载数据。如何实现类对串行化的支持,CObArray的串行化实现内幕。删除文档数据时常犯的错误。MFC框架程序的文档类和视类的关系,以及如何获得相互的指针引用。-use CArchive category of documents for the operation. MFC framework of the procedures and documents open new function within the Implementation Mechanism. CDocument class how to use the serial storage function preservation and loading data. How to achieve the kind of support Serial, Serial CObArray realization insider. Delete data files often made mistakes. MFC framework of the procedures and documentation such as the type of relationship, and how to access each other indicators cited.
- 2022-03-02 20:44:17下载
- 积分:1
-
显示内容为多列图形且带文字的列表框
显示内容为多列图形且带文字的列表框-The listbox which can display multiple lines of picture with text
- 2023-02-25 16:25:04下载
- 积分:1
-
在工具栏上的图标下,如何加上图标,本程序可以教你轻松地实现。...
在工具栏上的图标下,如何加上图标,本程序可以教你轻松地实现。-How to add new icons underneath the icons of toolbar ?
now this application will teach you how to easily implement that.
- 2022-03-04 07:12:56下载
- 积分:1
-
VC 6.0 free text string separation
VC+6.0实现文本串的自由拆分-VC 6.0 free text string separation
- 2022-09-29 19:20:03下载
- 积分:1
-
My Interface Test
My Interface Test
- 2022-02-16 08:56:12下载
- 积分:1
-
功能超强,XP的源的按钮控件,并有实例源码,VB等。
功能超强的xp源码按钮控件,内有源码和示例,vb爱好者不可多得的好控件-functional super xp source button controls, and there are examples of FOSS, vb lovers very good control
- 2022-01-22 14:57:05下载
- 积分:1
-
Prison Managment System
我认为这对你的java基础知识非常有用,可以提高你的编程能力。这是一个非常好的主意,可以让你提高你的编程技能。如果你想发展你自己的活动,你可以得到监狱管理系统或任何其他系统的基本想法,这对你的学术学校项目非常有用对于你的个人项目设计来说,这对你来说是一个很好的机会,通过et beans ide.7.4的java编程语言为你创建这个gui应用程序可以让你自己的知识得到增长。这是一个很好的练习,为你提高好的技能。谢谢各位身体祝你好运
- 2023-01-07 10:20: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