-
某工公司精品asp商品展示源码
一款很不错的公司产品展示源码。商品的罗列及后台管理都很合理。后台管理方便,并且提供中英双语支持。
- 2022-02-12 16:42:17下载
- 积分:1
-
杀死流氓软件程序。老外写的,绝对经典哦,
这是一个服务程序...
杀死流氓软件程序。老外写的,绝对经典哦,
这是一个服务程序-killed rogue software program. The foreigner was absolutely classic Oh, this is a service program
- 2022-01-26 00:14:24下载
- 积分:1
-
VC产生的临时文件有时真的很烦人!当你编译一个程序,突然系统弹出一个对话框:“D盘已经没有足够的空间~~~~~~~~~请问需要进行磁盘清理吗”,而它只能清掉了N...
VC产生的临时文件有时真的很烦人!当你编译一个程序,突然系统弹出一个对话框:“D盘已经没有足够的空间~~~~~~~~~请问需要进行磁盘清理吗”,而它只能清掉了Nkb的东东,你有什么理由不自己写一个专门清理VC垃圾的小工具呢?隔一段时间运行一次,彻底清除指定类型的垃圾文件:干干净净,中国人,奇强!
-the temporary files sometimes really annoying! When you compile a procedure, suddenly pop up a dialog system : "D is not enough disk space will need ~~~~~~~~~ disk clean up?" and it can only Qingdiao Nkb of the Eastern, What is your reason for not himself wrote a specialized cleaning up garbage VC small tool? Periodically run a completely remove specified types of waste paper : clean, the Chinese, refused!
- 2022-02-03 02:39:04下载
- 积分:1
-
由于xml文件不能被手机识别,所以不得不转化为wbxml文件,很多人都在为xml转化为wbxml文件苦恼。 这个工具可以很简单的将xml转化为wbxml文件:...
由于xml文件不能被手机识别,所以不得不转化为wbxml文件,很多人都在为xml转化为wbxml文件苦恼。 这个工具可以很简单的将xml转化为wbxml文件:
首先下载该文件,解压缩,将你的同名的xml文件替换settings.xml文件,然后直接双节cmd.com文件就可以产生wbxml文件了。同时会有一个log文件产生。
文件夹里包括的库文件有:leaktrack.dll/libexpat.dll/libwbxml2.dll。希望能帮助一些急需要的人。-Xml document as a result of mobile phones should not be identifiable and thus have turned into wbxml files, many people are in the xml file into wbxml distress. This tool can be very simple to wbxml into xml document: First download the file, unzip it to your xml file the same name to replace settings.xml file, and then double cmd.com document directly can produce wbxml file. At the same time there is a log file generated. Folder, including the library file there: leaktrack.dll/libexpat.dll/libwbxml2.dll. Hope that some much-needed help to people.
- 2022-03-05 19:44:54下载
- 积分:1
-
本程序可实现文件自动分割与合并,特别适合于邮件应用中对大文件进行分割后发送,并在接收端合并。...
本程序可实现文件自动分割与合并,特别适合于邮件应用中对大文件进行分割后发送,并在接收端合并。-The program can automatically split files and merge, particularly suited to e-mail application to split large files after sending and the receiving end merger.
- 2022-04-10 15:43:00下载
- 积分:1
-
看看是否对你有用,字库生成,字模点阵提取,UNICODE查询和转换,二进制文件转文本文件,文本文件转化为二进制文件(一个数组还原为一个BIN文件)...
看看是否对你有用,字库生成,字模点阵提取,UNICODE查询和转换,二进制文件转文本文件,文本文件转化为二进制文件(一个数组还原为一个BIN文件)-see whether useful to you, font generation, Dot Matrix Printer extraction, UNICODE inquiries and conversion, binary files to text files, text documents into binary files (a reduction of an array BIN file), etc.
- 2023-04-06 02:25:03下载
- 积分:1
-
从text文件中读取信息,写入xls文件
从text文件中读取信息,写入xls文件-documents from the text message read, write xls document
- 2022-03-19 23:59:06下载
- 积分:1
-
PDBingo 是一个在 PC 桌面端编辑 PDB 文件的工具,可以浏览、合并、拆分 PDB 文件,并可设置 PDB 文件的属性。请使用MASM 编译。...
PDBingo 是一个在 PC 桌面端编辑 PDB 文件的工具,可以浏览、合并、拆分 PDB 文件,并可设置 PDB 文件的属性。请使用MASM 编译。-PDBingo is in a desktop PC PDB document-editing tools, they can surf, mergers, Resolution PDB documentation, can set the attributes of PDB documents. Please use the Multiple compiler.
- 2022-08-08 15:59:26下载
- 积分:1
-
Is to download a simple procedure, enter the URL can be downloaded directly on y...
是下载的一个简单的程序,输入网址就直接就可以下载啦-Is to download a simple procedure, enter the URL can be downloaded directly on you
- 2023-06-23 01:00:04下载
- 积分: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