-
一个用纯行动脚本编写的股票图表3。包括烛台,OHLC,线…
纯 action script 3 编写的股票价格图,里边有蜡炬图,OHLC图,线图,可以放大缩小,可拖动。还有基于 XML 的级联菜单。-A Stock Charts Written in pure Action Script 3. Include Candle stick, OHLC, Line.Also, there is a zoom function.
- 2022-04-19 07:48:07下载
- 积分:1
-
这是一个控制USB设备块传输的例子,应用的是cpress的驱动,直接到cpress的主页下载就可以了...
这是一个控制USB设备块传输的例子,应用的是cpress的驱动,直接到cpress的主页下载就可以了-This is a USB device control block transmission example, the application is cpress driven directly to the Home cpress can download the
- 2022-03-21 06:56:29下载
- 积分:1
-
VC++矢量绘图程序 自己写的
VC++矢量绘图程序 自己写的-VC++ Vector drawing program written in their own
- 2022-04-28 10:44:09下载
- 积分:1
-
MSFlexGrid是一种有用的用网格方式表达数据的方式,但打印它的内容时会发生什么?这里我提供了一个类, PrintGrid,它可以分页打印网格内容。它使用了
MSFlexGrid是一种有用的用网格方式表达数据的方式,但打印它的内容时会发生什么?这里我提供了一个类, PrintGrid,它可以分页打印网格内容。它使用了第二个网格控件,必须把它额外地插入到你的CFormView 对话框资源中或你的对话框中上-MSFlexGrid is one kind is useful with the grid way expression
data way, when prints its content what can have? Here I have provided
a kind, PrintGrid, it may divide the page printing grid content. It
used the second grid to control, had extra to insert it to in yours
CFormView dialog box resources or in your dialog box on
- 2022-02-03 08:03:23下载
- 积分:1
-
发声的tooltip
发声的tooltip-The tooltip which can make a sound
- 2022-03-15 23:39:12下载
- 积分:1
-
金山类窗口
金山词霸那样的窗口条-Kingsoft kind of window of
- 2022-02-13 12:25:02下载
- 积分:1
-
矩阵相乘,演示了编辑框传输数据和显示,隐藏等功能。特别适合初学者学习和研究。...
矩阵相乘,演示了编辑框传输数据和显示,隐藏等功能。特别适合初学者学习和研究。-Matrix multiplication, demonstrate data edit box and display, hidden functions. Particularly suitable for beginners to learn and research.
- 2022-02-21 17:23:57下载
- 积分:1
-
Windows MFC edit box and the static text to extend the use of functional
Windows MFC编辑框和静态文本的使用扩展功能-Windows MFC edit box and the static text to extend the use of functional
- 2022-04-18 15:38:13下载
- 积分:1
-
Microsoft XML 4.0 Parser SDK
Microsoft XML 4.0 Parser SDK
- 2022-02-05 02:39:06下载
- 积分:1
-
qt alarm实现闹钟
#include"alarm.h"
#include
Alarm::Alarm(QWidget * parent)
:QDialog(parent)
{
init();
layout();
con();
};
// ******
// 初始化
// ******
void Alarm::init()
{
setWindowTitle("Alarm clock"); //设置标题
setFixedSize(QSize(300,80)); //固定大小
timer=new QTimer; //控制lcd的时间刷新
uptimer=new QTimer; //控制对话框上升
dtimer=new QTimer; //控制对话框下降
itimer=new QTimer;
lcdNumber=new QLCDNumber; //显示当前时间
lcdNumber->setFixedSize(QSize(150,50)); //固定大小
lcdNumber->setNumDigits(8); //显示八个数字,默认是显示5个数字
lcdNumber->setSegmentStyle(QLCDNumber::Flat); //填充颜色,默认是白色的
lcdNumber->display(QTime::currentTime().toString("hh:mm:ss")); //设置格式,还有其他形式的
label=new QLabel(QString::fromLocal8Bit("闹钟")); //提示设置下个闹钟
- 2022-01-28 04:54:06下载
- 积分:1