MSComm 控件通過串行端口傳輸和接收數據,為應用程序提供串行通訊功能。MSComm控件在串口編程時非常方便,程序員不必去花時間去了解較為復雜的API函數,而且在VC、VB、Delphi等語言中均可使用。 Microsoft Communications Control(以下簡稱MSComm)是Microsoft公司提供的簡化Windows下串行通信編程的ActiVeX控件,它為應用程序提供了通過串行接口收發數據的簡便方法。具體的來說,它提供了兩種處理通信問題的方法:一是事件驅動(Event-driven)方法,一是查詢法。
什么是 VBScript?
Microsoft Visual Basic Scripting Edition 是程序開發語言 Visual Basic 家族的最新成員,它將靈活的腳本應用于更廣泛的領域,包括 Microsoft Internet Explorer 中的 Web 客戶機腳本和 Microsoft Internet Information Service 中的 Web 服務器腳本。
ActiVeX腳本可用在 Microsoft(R) Internet Explorer 和 Microsoft(R) Internet Information Service 中。
其他應用程序和瀏覽器中的 VBScript
作為開發者,您可以在您的產品中免費使用 VBScript 源實現程序。Microsoft 為 32 位 Windows(R) API、16 位 Windows API 和 Macintosh(R) 提供 VBscript 的二進制實現程序。VBScript 與 World Wide Web 瀏覽器集成在一起。VBScript 和 ActiVeX腳本也可以在其他應用程序中作為普通腳本語言使用。
A self-designed control of PC parallel port communication is introduced in this paper.Taking advantage of the MFC ActiVeX technology, it is developed in Visual C++ and offset the scarcity of the control of PC parellel paort communication. An example of frequency measurement shows the detail procedure and application of the control.
VC6.0核心編程。主要涉及到windows消息,框架,mfc庫以及相關編程,com,ActiVeX技術,數據庫技術,網絡編程技術。為英文版本。
The 6.0 release of Visual C++ shows Microsoft s continued focus on Internet technologies and COM, which are key components of the new Windows Distributed interNet Application Architecture (DNA). In addition to supporting these platform initiatives, Visual C++ 6.0 also adds an amazing number of productivity-boosting features such as Edit And Continue, IntelliSense, AutoComplete, and code tips. These features take Visual C++ to a new level. We have tried to make sure that this book keeps you up to speed on the latest technologies being introduced into Visual C++.
Microsoft Active Server Pages 即我們所稱的 ASP ,其實是一套微軟開發的服務器端腳本環境, ASP 內含于 IIS 3.0 和 4.0 之中 , 通過 ASP 我們可以結合 HTML 網頁、 ASP 指令和 ActiVeX 元件建立動態、交互且高效的 WEB 服務器應用程序。有了 ASP 你就不必擔心客戶的瀏覽器是否能運行你所編寫的代碼,因為所有的程序都將在服務器端執行,包括所有嵌在普通 HTML 中的腳本程序。當程序執行完畢后,服務器僅將執行的結果返回給客戶瀏覽器,這樣也就減輕了客戶端瀏覽器的負擔,大大提高了交互的速度。 以下羅列了 Active Server Pages 所獨具的一些特點
AJAX入門之XMLHttpRequest慨述
在使用XMLHttpRequest對象發送請求和處理響應之前,必須先用JavaScript創建一個XMLHttpRequest對象。由于XMLHttpRequest不是一個W3C標準,所以可以采用多種方法使用JavaScript來創建XMLHttpRequest的實例。
Internet Explorer把XMLHttpRequest實現為一個ActiVeX對象,其他瀏覽器(如Firefox、Safari和Opera)把它實現為一個本地JavaScript對象。由于存在這些差別,JavaScript代碼中必須包含有關的邏輯,從而使用ActiVeX技術或者使用本地JavaScript對象技術來創建XMLHttpRequest的一個實例。