代码搜索:CString

找到约 10,000 项符合「CString」的源代码

代码结果 10,000
www.eeworm.com/read/264813/11299808

h statlink.h

#pragma once #include "Resource.h" ////////////////// // Simple text hyperlink derived from CString // class CHyperlink : public CString { public: CHyperlink(LPCTSTR lpLink = NULL) : CString
www.eeworm.com/read/258613/11849917

h adodatabase.h

#ifndef _CADODATABASE_H_ #define _CADODATABASE_H_ class CAdoDatabase { public: CString GetFieldValue(CString Field); void Close(); HRESULT ExecuteUpdate(CString strSQL); _Record
www.eeworm.com/read/258289/11872666

h search.h

#pragma once class Search { public: Search(CString strFilePath, CString strFileName,CString strToStaticPath); void Start(); virtual ~Search(); int type; private: void Run(); ch
www.eeworm.com/read/100012/15889850

h closehandleevent.h

class CloseHandleEvent: public TraceEvent { public: CloseHandleEvent(CString s, HANDLE hv); virtual CString display(); virtual LRESULT execute(); virtual CString display_result(); v
www.eeworm.com/read/100012/15889873

h getfilesizeevent.h

class GetFileSizeEvent: public TraceEvent { public: GetFileSizeEvent(CString s, HANDLE hv); virtual CString display(); virtual LRESULT execute(); virtual CString display_result(); virtu
www.eeworm.com/read/100012/15889924

h annotation.h

class AnnotationEvent : public TraceEvent { public: AnnotationEvent(CString s) {text = s; } virtual CString display(); virtual LRESULT execute(); virtual CString display_result(); virtu
www.eeworm.com/read/427113/8976745

h parsehtml.h

#pragma once class CParseHTML { public: CParseHTML(void); ~CParseHTML(void); BOOL GetHtmlSignSection(CString html,CString begin_str,CString end_str,CString& rets,int begin_count=1,int end_c
www.eeworm.com/read/325364/13210520

h md5.h

#include // MFC core and standard components class MD5 { public: CString calcMD5(CString str); private: CString rhex(int num); int* str2blks_MD5(CString str
www.eeworm.com/read/343843/11921724

h threadparams.h

typedef struct tagThreadParams { CString m_pszURL; CString m_Contents; CString m_strServerName; CString m_strObject; DWORD m_dwServiceType; INTERNET_PORT m_nPort; DWORD m_HttpStatu
www.eeworm.com/read/189196/8485151

txt 数据格式转换.txt

CString TimeToDisplay(int nTotalSecond) { CString szTime; int nHour, nMin, nSec; CString szHour, szMin, szSec; nHour = nTotalSecond/3600; nMin = (nTotalSecond%3600)/60; nSec = (nTotalS