使用Java藍牙無線通訊技術API電子書,進行藍牙協議棧的設備發現,管理的類功能
上傳時間: 2015-10-04
上傳用戶:wweqas
javascript的幫助文件 javascript-help 類似于java的api查詢
標簽: javascript-help javascript java api
上傳時間: 2015-10-04
上傳用戶:從此走出陰霾
J2ME API 速查手冊
上傳時間: 2014-01-01
上傳用戶:jjj0202
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
用VC++6.0的Sockets API實現一個聊天室程序
上傳時間: 2015-10-06
上傳用戶:watch100
顏色小獵人-易語言編程(中文編程) 對api函數的運用例子. 能隨時隨地獲取鼠標所在區域的顏色.并以數值的形式呈現出來
上傳時間: 2015-10-06
上傳用戶:waitingfy
用API函數直接寫串口的DLL源碼,代碼精簡但附詳細注釋,可作為開發RS232串口控制程序的一個標準模版。
上傳時間: 2014-12-04
上傳用戶:冇尾飛鉈
完整版的 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
Java Regex Primer Since version 1.4, Java has had support for Regular Expressions in the core API. Java Regex follows the same basic principles used in other languages, just withdi erent access methods, and some subtledi erences with the patterns. This primer is aimed towards developers already familiar with regex in other languages wanting a brief outline of its support in Java. It may also be beneficial to developers learning regex if used in conjunction with detailed documentation explaining the construction of regex patterns. Reading the javadoc forjava.util.regex. Pattern is a must to see how the Java regex patterns aredi erent from other languages such as Perl. Most of the functions discussed herin are from thejava.util.regex. Matcher class with a few fromjava.util.regex. Pattern. Reading this text in conjunction with the javadoc of those classes is advised.
標簽: Java Expressions Regular version
上傳時間: 2013-12-18
上傳用戶:lanhuaying