-
vb制作屏幕锁,当然里面还稍有不足,本人公布其原代码,希望对学习vb的朋友们有所帮助...
vb制作屏幕锁,当然里面还稍有不足,本人公布其原代码,希望对学习vb的朋友们有所帮助-vb production of the screen lock, of course, there is also slightly less than, I published the original code, want to learn vb friends help
- 2023-03-28 15:55:04下载
- 积分:1
-
在DATAGRID 里增加CHECKBOX!
在DATAGRID 里增加CHECKBOX!-Increase in the DataGrid CHECKBOX!
- 2022-11-09 03:55:02下载
- 积分:1
-
在VC上实现与Palm保持同步通信的软件源码!
在VC上实现与Palm保持同步通信的软件源码!-in VC achieve Palm keep pace with the communications software source code!
- 2023-01-15 23:55:03下载
- 积分:1
-
程序员经常为在程序中设计进度条而烦恼,这个程序演示了如何简单的在status bar中的实现进度条。...
程序员经常为在程序中设计进度条而烦恼,这个程序演示了如何简单的在status bar中的实现进度条。- The programmer frequently for designs the progress strip in the
procedure but the worry, did this procedure demonstrate has been how
simple in the status bar realization progress strip.
- 2022-03-10 11:22:25下载
- 积分: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
-
经典的Button控件类,适合永久保存使用
经典的Button控件类,适合永久保存使用
- 2022-03-21 09:35:16下载
- 积分:1
-
1.非模式对话框间相互交换
2.有关闭子对话框的功能
1.非模式对话框间相互交换
2.有关闭子对话框的功能-1.non module dialog exchange
2.close dialog module function
- 2022-11-13 13:30:03下载
- 积分:1
-
VC中常用的CListCtrl控件,该代码的功能主要是实现查询,功能不是很强,但代码的思想具有很强的参考,很有实用价值....
VC中常用的CListCtrl控件,该代码的功能主要是实现查询,功能不是很强,但代码的思想具有很强的参考,很有实用价值.-VC common CListCtrl Control, the main function of the code is to achieve inquiries function is not very strong, but the code has a strong ideological reference for the very practical value.
- 2023-02-23 11:25:04下载
- 积分:1
-
很好用的用c++语言编的Big2gbBIG码与GB码相互转换程序源代码...
很好用的用c++语言编的Big2gbBIG码与GB码相互转换程序源代码-well with the C++ language series Big2gbBIG yards and GB code conversion program source code
- 2022-03-19 00:24:39下载
- 积分:1
-
多种条形码生成与实现,直接打开运行
资源描述直接打开就可以用了,运行就可以用了,需要的朋友可以试试下载看看哦,绝对不会有错的,值得拥有,你觉得的
- 2022-01-21 19:12:40下载
- 积分:1