Visual Basic 6.0可以通过调用API函数格式化一个磁盘,无论是软盘还是硬盘。 打开一个新的项目(工程1) ,如果你没有更改过缺省模式,那么Visual Basic 6.0会自动添加一个form1文件,在form1上添加一个命令控件,将下面的代码拷入。 Option Explicit Private Declare Function SHFormatDrive Lib"shell32"( ByVal Hend AS Long,ByVal Drive AS Long,ByVal FormatID AS Long,ByVal Options AS Long) as Long Private Sub FormatDisk(intDrive as integer,blnQuickFormat as Boolean) dim lngReturn As Long if (blnQuickFormat) then lngReturn= SHFormatDrive(0,intDrive,0&,1&) else lngReturn= SHFormatDrive(0,intDrive,0&,0&) end if end Sub Private Sub Command1_Click() call FormatDisk(0,True) End Sub 运行此程序。 注意FormatDisk函数的第一个变量很重要,他的值是0,1,2时代表格式化的分别是:A、B、C盘。
上传时间: 2015-10-05
上传用户:kytqcool
用verilog实现rs232通信async_transmitter.v
标签: async_transmitter verilog 232 rs
上传时间: 2013-12-17
上传用户:咔乐坞
mt48lc4m32b2.v 是128M sdram 中典型设计。。可以借鉴。
上传时间: 2013-12-18
上传用户:zhenyushaw
用VC++6.0的Sockets API实现一个聊天室程序
上传时间: 2015-10-06
上传用户:watch100
颜色小猎人-易语言编程(中文编程) 对api函数的运用例子. 能随时随地获取鼠标所在区域的颜色.并以数值的形式呈现出来
上传时间: 2015-10-06
上传用户:waitingfy
a very good perl studying manual book! I love it!
上传时间: 2013-11-28
上传用户:it男一枚
用API函数直接写串口的DLL源码,代码精简但附详细注释,可作为开发RS232串口控制程序的一个标准模版。
上传时间: 2014-12-04
上传用户:冇尾飞铊
This manual describes omniidl, the omniORB IDL compiler. It is intended for developers who wish to write their own IDL compiler back-ends, or to modify existing ones. It also documents the design of the compiler front-end for those poor souls who have to track the IDL specification.
标签: developers describes compiler intended
上传时间: 2015-10-07
上传用户:84425894
完整版的 Windows 环境下32位汇编语言程序设计(第2版)----罗云彬 编著(会员投诉不是第2版) Windows环境下32位汇编语言是一种全新的编程语言。它使用与C++语言相同的API接口,不仅可以用来开发出大型的软件,而且是了解操作系统运行细节的最佳方式。 本书从编写应用程序的角度,从“Hello World!”这个简单的例子开始到编写多线程、注册表和网络通信等复杂的程序,通过70多个实例逐渐深入Win32汇编语言的方方面面。 本书作者罗云彬拥有十余年汇编语言编程经验,是汇编编程网站http://asm.yeah.net和汇编编程论坛http://win32asm.yeah.net的站长。本书是作者多年来编程工作的总结,适合于欲通过Win32汇编语言编写Windows程序的读者。
上传时间: 2013-12-03
上传用户:rocketrevenge
Mifare RC500 API Code in Keil
上传时间: 2015-10-09
上传用户:changeboy