虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

write-offs

  • 接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response A

    接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response As String Dim msg As New Pop3Message msg.bytes = rhs.bytes msg.number = rhs.number message = "RETR " + rhs.number.ToString + vbCrLf write(message) response = Respond() If response.Substring(0, 3) <> "+OK" Then Throw New Pop3Exception(response) End If MsgBox(msg) msg.retrieved = True While (1 = 1) response = Respond() If response = "." + vbCrLf Then Exit While Else msg.message += response End If End While Return msg End Function

    标签: Pop3Message Function Retrieve response

    上传时间: 2013-12-28

    上传用户:fnhhs

  • 这是一个比较完整的java语言编写的文件系统程序

    这是一个比较完整的java语言编写的文件系统程序,有8个基本功能,要求设计一个N个用户的文件系统,每次用户可以保存M个文件,用户在一次运行中只能打开一个文件,对文件必须设置保护措施。且至少有Create,Delete,Open,Read,Write等命令。

    标签: java 比较 文件系统 语言

    上传时间: 2015-05-01

    上传用户:恋天使569

  • This program dump password hashes from local or remote Windows NT/2000 machines. It prints them on

    This program dump password hashes from local or remote Windows NT/2000 machines. It prints them onto the screen in l0phtcrack format, or will write them to a file if desired.

    标签: password machines program Windows

    上传时间: 2014-01-15

    上传用户:a673761058

  • This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simula

    This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simulator may be used to monitor and display any variable or peripheral I/O register. It is already configured to show the PWM output signal on PORT3.0 and PORT3.1 This ARM Example may be debugged using only the uVision Simulator and your PC--no additional hardware or evaluation boards are required. The Simulator provides cycle-accurate simulation of all on-chip peripherals of the ADuC7000 device series. You may create various input signals like digital pulses, sine waves, sawtooth waves, and square waves using signal functions which you write in C. Signal functions run in the background in the simulator within timing constraints you configure. In this example, several signal functions are defined in the included Startup_SIM.INI file.

    标签: the Analyzer Compiler project

    上传时间: 2013-12-19

    上传用户:Yukiseop

  • psp上最好的 ereader0.9更新: [+] 制作了个简单的软件图标 [+] 记住上次退出时选择/阅读的文件 [+] 增加mp3快进/快退功能 (左/右按键, 因为CPU的速度问题

    psp上最好的 ereader0.9更新: [+] 制作了个简单的软件图标 [+] 记住上次退出时选择/阅读的文件 [+] 增加mp3快进/快退功能 (左/右按键, 因为CPU的速度问题,因此快进运行比较慢) [+] 增加mp3列表控制 (在mp3控制界面按SELECT键) [+] 退出时mp3列表自动保存到music.lst [+] mp3控制界面增加电池剩余量和时间显示 [+] 字体可以放在压缩文件fonts.zip里以节约空间(旧的fonts目录存放方法也可以用) [+] 在书签界面可以切换自动保存书签与否的选项 (见书签界面的底部行说明) [+] 可以用L和R快速切换前景色和背景色的数值 [!] 修正html的Javascript中document.write()函数的解析 [!] 修正FAT32读取 [!] 优化了一些代码以提高稳定性和性能 [!] 修正一些其它bug

    标签: ereader psp 0.9 CPU

    上传时间: 2013-12-18

    上传用户:manking0408

  • 解决时钟问题

    解决时钟问题,acm竞赛题 A weird clock marked from 0 to 59 has only a minute hand. It won t move until a special coin is thrown into its box. There are different kinds of coins as your options. However once you make your choice, you cannot use any other kind. There are infinite number of coins of each kind, each marked with a number d ( 0 <= 1000 ), meaning that this coin will make the minute hand move d times clockwise the current time. For example, if the current time is 45, and d = 2. Then the minute hand will move clockwise 90 minutes and will be pointing to 15. Now you are given the initial time s ( 0 <= s <= 59 ) and the coin s type d. Write a program to find the minimum number of d-coins needed to turn the minute hand back to 0.

    标签: 时钟

    上传时间: 2015-05-21

    上传用户:rishian

  • MFC Black Book Introduction: Are you an MFC programmer? Good. There are two types of MFC programme

    MFC Black Book Introduction: Are you an MFC programmer? Good. There are two types of MFC programmers. What kind are you? The first kind are the good programmers who write programs that conform to the way MFC wants you to do things. The second bunch are wild-eyed anarchists who insist on getting things done their way. Me, I’m in the second group. If you are in the same boat (or would like to be) this book is for you. This book won’t teach you MFC—not in the traditional sense. You should pick it up with a good understanding of basic MFC programming and a desire to do things differently. This isn’t a Scribble tutorial (although I will review some fundamentals in the first chapter). You will learn how to wring every drop from your MFC programs. You’ll discover how to use, abuse, and abandon the document/view architecture. If you’ve ever wanted custom archives, you’ll find that, too.

    标签: MFC Introduction programmer programme

    上传时间: 2015-05-30

    上传用户:youke111

  • Linux系统中

    Linux系统中,设备驱动程序是操作系统内核的重要组成部分,在 与硬件设备之间 建立了标准的抽象接口。通过这个接口,用户可以像处理普通文件一样,对硬件设 备进行打开(open)、关闭(close)、读写(read/write)等操作。通过分析和设计设 备驱动程序,可以深入理解Linux系统和进行系统开发

    标签: Linux

    上传时间: 2015-06-13

    上传用户:litianchu

  • 本源代码所设计的文件系统

    本源代码所设计的文件系统,具有建立文件(create)、打开文件(open)、读文件(read)、写文件(write)、关闭文件(close)、撤销文件(delete)等功能。在模拟程序中可从键盘上输入文件操作命令来模拟各用户程序中所调用的各种文件操作,用一个结束命令(end)停止程序的执行。

    标签: 源代码 文件系统

    上传时间: 2013-12-13

    上传用户:希酱大魔王

  • Features • Compatible with MCS-51® Products • 8K Bytes of In-System Programmable (ISP

    Features • Compatible with MCS-51® Products • 8K Bytes of In-System Programmable (ISP) Flash Memory – Endurance: 1000 Write/Erase Cycles • 4.0V to 5.5V Operating Range • Fully Static Operation: 0 Hz to 33 MHz • Three-level Program Memory Lock • 256 x 8-bit Internal RAM • 32 Programmable I/O Lines • Three 16-bit Timer/Counters • Eight Interrupt Sources • Full Duplex UART Serial Channel • Low-power Idle and Power-down Modes • Interrupt Recovery from Power-down Mode • Watchdog Timer • Dual Data Pointer • Power-off Flag

    标签: 8226 Programmable Compatible In-System

    上传时间: 2015-06-27

    上传用户:dianxin61