Socket異步代碼
摘要: Server代碼usingSystem;usingSystem.IO;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Net;usingSystem.Net.Sockets;namespaceSocketSvr{classProgram{privatestaticbyte[]msgBuff=newbyte[10240];//...
阅读全文
讀取XML文檔的Demo
摘要: 讀取/修改/刪除 XML文檔的DemousingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Xml;namespaceXMLApp{classclsXML{privatestaticstring_fileName;privatestaticintid;privatestaticstringname;priv...
阅读全文
VB6中處理OutLook文件夾的Module
摘要: '********************************************************************''Description:按Treeview中的節點信息,讀取/添加到OutLook文件夾'================================================================'NameDateDescription...
阅读全文
圖形顯示函數
摘要: 前段時間寫的一個圖形比例顯示的函數,代碼很簡單!privatevoidDrawGraphic(doubleUnReadyNum,doubleReadyNum,doubleFinishNum){doubleiPercentAngle;iPercentAngle=360/(UnReadyNum+ReadyNum+FinishNum);//生成一個BitmapBitmapobjBitmap;objBit...
阅读全文
面向對象在VB6中的應用
摘要: 注:前段時間寫給公司同事的一篇面向對象的入門文章(香港公司,同事們一直在用VB6,聽起來是不是感覺有點不可思議) 來公司之前,沒接觸過VB,只知道和Delphi一樣,是一個優秀的RAD開發工具,但和Delphi強大的面向對象能力不同的是,VB不支持面向對象的功能,屬於傳統的RAD開發工具。最初對VB的感覺就是這樣的,膚淺而又片面,在公司使用VB的這段時間內,越來越發現當初對VB的認識有失偏頗,面向...
阅读全文
the difference between Socket and Remoting Program
摘要: .NET uses sockets in may instances such as WebServices and Remoting, but in these instancesthe low level socket stuff is done for you and there is no need to use sockets directly. However, when interf...
阅读全文