登录
首页 » Windows开发 » 一个简单的图片上传程序,占空间极小,功能比较完善.其他功能根据您的需要添加...

一个简单的图片上传程序,占空间极小,功能比较完善.其他功能根据您的需要添加...

于 2022-03-01 发布 文件大小:223.46 kB
0 147
下载积分: 2 下载次数: 1

代码说明:

一个简单的图片上传程序,占空间极小,功能比较完善.其他功能根据您的需要添加-a simple picture upload procedures, accounting for a very small space, function more perfect. Other features you need to add

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • windows下http的post方法的代码
    资源描述windows下用curl编写的一个简单的连接httpserver的源码,使用post的方法。
    2023-07-10 04:45:05下载
    积分:1
  • 很久以前从网上找到的咚咚。对于ASP编程者可能有用,一个自动生成目录树的脚本...
    很久以前从网上找到的咚咚。对于ASP编程者可能有用,一个自动生成目录树的脚本-long time ago from the Internet to find the behind. For ASP programmers may be useful automatically generate a script tree
    2022-03-19 14:27:06下载
    积分:1
  • 文件管理系统...由c++设计实现...编缉运行即可
    文件管理系统...由c++设计实现...编缉运行即可-file management system
    2022-07-10 01:38:16下载
    积分:1
  • VC使用DLL多风格切换窗口
    摘要:VC/C++源码,界面编程,风格切换 VC使用DLL多风格切换窗口,一种有两种风格供选择,界面风格在DLL资源里,通过DLL文件切换不同的窗口,现在好多软件都有风格切换的功能,很不错的功能,希望大家喜欢。
    2022-09-16 22:20:03下载
    积分:1
  • 本软件为商业版ACCESS数据库软件,如果需要SQL版本,请花钱购买。在网络上呆了这么多年,从来没有除了2002年过两个程序以外一直都没有过什么程序。 同时...
    本软件为商业版ACCESS数据库软件,如果需要SQL版本,请花钱购买。在网络上呆了这么多年,从来没有除了2002年发过两个程序以外一直都没有发过什么程序。 同时发布这个程序也是为了想交一些朋友。本程序也并非本人原创,只是在闲暇时发现网络上面根本就没有完全公开或者使用方便的程序。为了尊重本人的劳动成果,希望下载后的朋友不要更改界面。同时希望使用本系统的朋友能和我的网站做个友情链接。-software for the commercial version of its Access database software, SQL version if required, please spend money to buy. The network spent so many years, never apart from 2002 to issue two proceedings have not been made on what procedures. While this procedure is issued to pay for some of my friends. This procedure is not my original, the only leisure found in the above fundamental network is not fully open or convenient procedures. In order to respect the result I hope that after downloading their friends not to change the interface. While the use of the system hope the friends and my website to be a useful links.
    2022-11-20 12:40:03下载
    积分:1
  • 软件架构设计,流程架构设计,组织架构设计
    软件架构设计,流程架构设计,组织架构设计-Software architecture design, architecture design flow, organization structure design
    2023-03-27 05:40:02下载
    积分:1
  • the book is Microsoft Press MicrosoftVisualStudio authorized by the Chinese edit...
    本书是美国微软出版社授权的MicrosoftVisualStudio中文版系列中的一本。全书按字母顺序列出了VisualBasic6.0的函数、语句、方法、属性及事件,附录部分提供了ANSI字符集、数据类型、运算符等等的数学函数及转换函数。本书不但是从事VisualBasic6.0应用和开发人员的工具书,也可作为大专院校相关专业的师生、科研院所的科技人员自学和教学的重要参考书。本书还提供配套的电子书,以方便读者携带、学习和长久保存。-the book is Microsoft Press MicrosoftVisualStudio authorized by the Chinese edition of the series, one. The book listed in alphabetical order by VB6.0 functions, the statement, methods, properties and events, appendix portion of the ANSI character set, data types, etc. Operators of mathematical functions and conversion functions. This book is not only engaged in the development of Visual Basic 6.0 applications and the tools that can be as professional institutions related to the teachers and students, research institutes and technological personnel in learning and teaching as an important reference book. The book also provides matching e-books, for the convenience of the reader to carry, learning and the long-term preservation.
    2022-04-26 23:53:51下载
    积分:1
  • VB system tray written procedures
    用VB写的系统托盘程序-VB system tray written procedures
    2023-03-29 06:40:03下载
    积分:1
  • 八皇后VC图形演示,算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的...
    八皇后VC图形演示,算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的皇后后,第i+1行找不到合适的位置,这时就回到第i行,把第i行的皇后放到下一个位置,继续尝试下一行。如此反复,知道找到所有的解。注意,这种算法找的解可能有等价的,某些解可由别的解经过旋转棋盘得到。-visual demostration in vc of eight queens problem. algorithm: backtracking. First, put a queen on first line then find a suitable position on 2nd line for next queen, and so on. When all eight lines have queens, it means we have find a solution. If we put the i-th queen, but can find a suitable position on the (i+1)th line, then back to the ith line and move the queen on the ith line to next suitable position and move on to the next line. Repeat this until we have found all the solutions. Note:By this mean, some solutions maybe equivalent to others, some can be acquired by the rotation of other solutions.
    2022-03-23 15:20:19下载
    积分:1
  • Arboresent肺的分形图形,由分形的递归算法生成的C++源程序。
    Arboresent肺的分形图形,由分形的递归算法生成的C++源程序。-Fractal graphic by Arboresent haggis.
    2022-01-24 16:48:43下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载