-
<Visual Preutill> C routines in a book, chapter by chapter, Table of Conte...
一书的例程,按章节目录- C routines in a book, chapter by chapter, Table of Contents
- 2022-01-28 16:51:45下载
- 积分:1
-
一套office2003界面风格控件
一套office2003界面风格控件 -a office2003 style interface controls
- 2022-02-02 07:45:41下载
- 积分:1
-
网站用户访问来源饼形图数据统计代码
应用背景基于js技术制作的饼状图统计代码,效果比较好,十分的实用,可以互相交流关键技术
- 2022-09-28 07:20:03下载
- 积分:1
-
List控件:List控件与相关的事件处理程序。
List控件:List控件与相关的事件处理程序。-Control List : List controls and related procedures for handling the incident.
- 2022-03-21 18:37:13下载
- 积分:1
-
图像隐写术使用DWT
Steganographyis一个技术信息隐藏。借助ofsteganography人们可以偷偷沟通。它涉及通信secretdata在适当的多媒体载体,如文本,图像,音频和videofiles。隐写术的主要动机是为了确保该transmittedmessage是完全隐藏在盖的信号内,并由此确保该消息isaccessible仅由预定receiverand不受任何入侵者或未经授权方。thisresearch的主要目的是提出一种新颖的和安全的高容量图像steganographytechnique小波的帮助下以可接受的不可见性和总体安全性的高层次的水平变换。
- 2022-01-25 17:02:41下载
- 积分:1
-
VC++ CSV操作类
这个资源是读写CSV文件的非常实用的类。方法写得非常好,代码也写得非常简洁,很合适在实际项目中使用。经本人测试,只要把上面的代码CSVOperator.h、CSVOperator.cpp和StringParser.h拷贝到项目中,就可以直接使用。在CSV_OP.cpp文件中,main方法里面有详细的读取文件的方法。读取的是config.csv这个文件。
- 2022-03-23 12:19:25下载
- 积分:1
-
一个计算器,实现了皮肤, 支持基本的加减乘除操作 且可像普通计算器那样连续操作。
内含所用到的皮肤文件。...
一个计算器,实现了皮肤, 支持基本的加减乘除操作 且可像普通计算器那样连续操作。
内含所用到的皮肤文件。-A calculator, implementation of the skin, support the basic operations of addition and subtraction and multiplication and division can be as continuous operation as an ordinary calculator. Containing the documents used in the skin.
- 2022-03-15 15:59:50下载
- 积分:1
-
a simple radio button controls demo program, presentation radio button control i...
一个简单的单选按钮控件演示程序,演示单选按钮控件是如何使用的-a simple radio button controls demo program, presentation radio button control is how to use the
- 2023-05-29 18:00: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
-
java swing 上传文件源码
package test;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
public class Win extends JFrame {
JButton jb = new JButton("上传");
public Win() {
jb.addAction
- 2022-03-25 22:46:16下载
- 积分:1