-
对于一个小的压缩文本的VB程序,还不错
vb作的小程序压缩文本用的还不错-vb procedures for a small compression of the text is also good
- 2022-06-02 06:51:13下载
- 积分:1
-
繁体字和简体字是汉字中经常使用的两种汉字表现形式,在计算机中它们的内码稽核分别称为BIG5和GB码。平时经常会遇到这两种编码需要相互抓换的情况,因此掌握汉字内码...
繁体字和简体字是汉字中经常使用的两种汉字表现形式,在计算机中它们的内码稽核分别称为BIG5和GB码。平时经常会遇到这两种编码需要相互抓换的情况,因此掌握汉字内码对于软件开发人员非常重要。本例实现了汉字内码转换。-traditional and simplified Chinese characters are frequently used Chinese characters of the two forms, the computer code within their respective audit called BIG5 and GB yards. Usually encountered both need each other coding for grasping the situation, master CICS code for software developers is very important. The realization of the cases CICS code conversion.
- 2022-01-25 16:58:16下载
- 积分:1
-
文件的读取操作,VC++代码读取TXT文件,自己调试过的,可用
文件的读取操作,VC++代码读取TXT文件,自己调试过的,可用-File read operation, VC++ Code to read TXT files, have their own debugging can be
- 2022-03-02 01:21:05下载
- 积分:1
-
实例 49--文件的读写,可以自由的下载
实例 49--文件的读写,可以自由的下载-Examples of 49- to read and write files, you can free download
- 2022-06-21 02:21:19下载
- 积分:1
-
vc环境下文件属性操作
vc环境下文件属性操作-vc environment file attributes operation
- 2023-02-18 02:50:03下载
- 积分:1
-
这是一个"虚拟分区"的源代码,其功能是把任何一个文件夹虚拟成一个分区.其实现主要是利用了dos的subst命令.然后加入了写入注册表的功能.实现了临时建立分区和...
这是一个"虚拟分区"的源代码,其功能是把任何一个文件夹虚拟成一个分区.其实现主要是利用了dos的subst命令.然后加入了写入注册表的功能.实现了临时建立分区和永久建立分区的效果.delphi7源代码-This a "virtual" as the source code, and its function is a virtual folder into a district. Its main achievement is the use of dos subst orders. Write then joined the registry function. Achieved through the establishment of temporary and permanent establishment of regional results. Delphi7 source code
- 2022-07-25 23:17:45下载
- 积分:1
-
一个用VC++操作文件的各种方法的代码。
一个用VC++操作文件的各种方法的代码。-A VC++ to operate with a variety of methods of document code.
- 2022-12-28 12:40:04下载
- 积分:1
-
好的XML文件读写程序,不错不错
希望能给大家带来帮助。
好的XML文件读写程序,不错不错
希望能给大家带来帮助。-Good to read and write XML documents procedures, good good hope that they will be helpful to everyone.
- 2022-08-21 16:25:03下载
- 积分:1
-
C++实现的TXT文本文件向DAT文件的转换。
C++实现的TXT文本文件向DAT文件的转换。-C++ implementation TXT text file to DAT file conversion.
- 2022-09-13 17:30:03下载
- 积分:1
-
CI框架上传类改写,支持多附件上传
CI框架上传类改写,
原来的程序只支持一个附件上传,并不支持控件数组上传。
现已修改支持多附件上传。将该文件放到自己程序目录中的libraries文件夹下。
调用如下:
// 附件上传处理
$folder = date("Ym");
$upload_dir = APPPATH . "/app/upload/".$folder;
$config["upload_path"] = $upload_dir;
$config["allowed_types"] = "gif|jpg|png|txt|doc|docx|xls|xlsx|ppt|pptx|pdf";
$config["max_size"] = "5120";
$config["max_width"] = "0";
$config["max_height"] = "0";
$config["max_filename"] = "0";
$config["overwrite"] = false;
$config["encrypt_name"] = true;
$config["remove_spaces"] = true;
$this->load->library("upload", $config);
$field_name = "att";
if (!$this->upload->do_upload($field_name, true))
{
// 出错
$error = array("error" => $this->upload->display_errors());
} else {
// 正
- 2022-05-05 09:14:31下载
- 积分:1