-
利用Windows剪贴板实现Exe程序间的数据交换
利用Windows剪贴板实现Exe程序间的数据交换-Exe realize the use of Windows clipboard for data exchange between process
- 2022-02-05 19:25:56下载
- 积分:1
-
VB关于图形漂浮的设计
VB关于图形漂浮的设计-VB floating on the graphic design
- 2023-01-25 19:35:04下载
- 积分:1
-
许多流行的编辑软件提供查看二进制文件的功能,如:ULT…
很多流行的编辑器软件都提供了查看二进制文件的功能,例如:UltraEdit便提供了这样的功能,它能够显示二进制文件的内容,即将二进制代码显示为十六进制。这种功能对于进行系统级的开发很有用处。本例实现了这种功能。-many popular editing software provided View binary file functions, such as : UltraEdit will provide such a function, it can show binary content of the document, will show the binary code for hexadecimal. This function for system-level development useful. The cases to achieve this function.
- 2023-01-25 21:35:03下载
- 积分:1
-
能够轻松的合并和切割文件,是使用者能够通过自己的程序就能进行文件切割...
能够轻松的合并和切割文件,是使用者能够通过自己的程序就能进行文件切割
-Can easily and cutting the combined document, a user can, through their own procedures document will be able to cut
- 2022-06-12 10:37:44下载
- 积分:1
-
inquiries driver for file system is FAT16, or FATR32
查询驱动器的文件系统,是FAT16,或FATR32-inquiries driver for file system is FAT16, or FATR32
- 2023-08-27 05:25:03下载
- 积分:1
-
Reading, writing rich text file document can then. Doc file operations.
读,写rich text file文件,即可对.doc文件操作。-Reading, writing rich text file document can then. Doc file operations.
- 2022-07-07 23:41:37下载
- 积分:1
-
000 compressed archive utility. According to the document, size, type (file or d...
个压缩归档实用程序。按照文件的时间、大小、类型(文件或者目录)、最后修改时间等进行筛选 能够把这些文件压缩,并添加适当的注释帮助辨认 能够添加校验值以确保复制和网络传输时不出错 保持备份时的目录结构以便恢复。-000 compressed archive utility. According to the document, size, type (file or directory), last modified time to screen these documents compression, and add the appropriate Notes can be added to help identify the checksum to ensure replication and network transmission time is not wrong to keep the backup directory structure to restore.
- 2022-07-02 07:44:05下载
- 积分:1
-
这个程序的puurpoise是解析表达式从输入文件和DIS…
the puurpoise of this program is to parse expressions from an input file and display token type and value in an output file
- 2022-01-26 01:56:38下载
- 积分:1
-
一个简单又高效的日志系统
本文给出一个性能高,使用简单的日志解决方案。本模块实现日志信息的批量写入文件,定时自动flush到文件中,写入文件的日志级别可动态...
一个简单又高效的日志系统
本文给出一个性能高,使用简单的日志解决方案。本模块实现日志信息的批量写入文件,定时自动flush到文件中,写入文件的日志级别可动态调整,单个日志文件大小可配置,循环对日志文件写入,这样不会造成机器空间被日志文件耗尽。-A simple and effective logging system In this paper, a high-performance, using a simple log solution. The module to achieve volume of information to write the log files, from time to time automatically flush to a file, write to the file log level can be dynamically adjusted, a single log file size can be configured, cycling on the log file is written, this will not cause the machine space is the log File exhausted.
- 2023-08-14 16:20:03下载
- 积分:1
-
Pendulum.cpp
#include"stdafx.h"
#include < iostream >
#include < conio.h >
#include < locale.h >
#include < stdio.h >
#include < math.h >
使用命名空间 std ;
作废双时间 (双 L、 双 P 双 G)
void main)
{
setlocale (LC_ALL,"RUS") ;
双 L,T;
双 P = 3.14 ;/ / КОНСТАНТА
双 G = 9.8 ;/ / КОНСТАНТА
//ДЛЯ ЗАДАННЫХ ЗНАЧЕНИЙ
L = 100 ;
T=time(L,P,G) ;
cout «"Время колебаний при L ="«L «"равно:"«T;
_getch() ;
//ДЛЯ ЗНАЧЕНИЙ ВВОДИМЫХ С КЛАВИАТУРЫ
system("cls") ;
cout «"Dведите L =";
cin» L;
T=time(L,P,G) ;
cout «"Время колебаний при L ="«L «"равно:"«T;
_getch() ;
返回 0 ;
}
作废双时间 (双 L、 双 P 双 G)
{
双 M;
双 P = 3.14 ;/ / КОНСТАНТА
双 G = 9.8 ;/ / КОНСТАНТА
M=2*P*sqrt(L/G) ;/ / ПЕРИОД КОЛЕБАНИЙ
返回 M;
}
- 2022-03-13 01:33:14下载
- 积分:1