Location:
Search - NID
Search list
Description: HICON m_hIcon
_ConnectionPtr m_pCon //连接对象
_RecordsetPtr m_pRs //记录集对象
BOOL LoadDbSource(CString strSourceName,CString strSourceDb, CString strDescription)
// Generated message map functions
//{{AFX_MSG(CCodeCtrlOdbcDlg)
virtual BOOL OnInitDialog()
afx_msg void OnSysCommand(UINT nID, LPARAM lParam)
afx_msg void OnPaint()
afx_msg HCURSOR OnQueryDragIcon()
//}}AFX_MSG
DECLARE_MESSAGE_MAP()-HICON m_hIcon _ConnectionPtr m_pCon / / Link Object _RecordsetPtr m_pRs / / BOOL record set targets LoadDbSou rce (redeem strSourceName. redeem strSourceDb. redeem strDescription) / / Generated message map functions / / ((AFX_MSG (CCodeCtrlOdbcDlg ) virtual BOOL OnInitDialog () afx_msg void OnS ysCommand (UINT nID. LPARAM lParam) afx_msg void OnPaint () afx_msg HCURSOR OnQueryDragIcon () / /)) AFX_MSG DECLA RE_MESSAGE_MAP ()
Platform: |
Size: 59558 |
Author: 穆菲 |
Hits:
Description: crack for battle realm no nid cd
Platform: |
Size: 92755 |
Author: Vermilion |
Hits:
Description: unit Video
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrls,
ExtCtrls, avicap, mmsystem, dsgnintf
// Types for event-procedures
type
TCapStatusProc = procedure(Sender: TObject) of object
TCapStatusCallback = procedure(Sender: TObject nID: integer status: string)
of object
TVideoStream = procedure(sender: TObject lpVhdr: PVIDEOHDR) of object
TAudioStream = procedure(sender: TObject lpWHdr: PWAVEHDR) of object
// Property Editor for driver selection
type
TDrivereditor = class(TPropertyEditor)
function GetAttributes: TPropertyAttributes override
procedure GetValues(Proc: TGetStrProc) override
function GetValue: string override
procedure SetValue(const Value: string) override
end
Platform: |
Size: 54675 |
Author: 123456 |
Hits:
Description:
lpszWindowName:视频窗口的名字
dwStyle:样式
x:左边距(相对于父窗口,一般为0)
y:上边距(相对于父窗口,一般为0)
nWidth:视频窗口的宽度(注:此项并不会改变摄像头的分辨率,超出部分不会被刷新)
nHeight:视频窗口的高度
hWndParent:父窗口句柄
nID:标识符(一般为0)
这是VFW编程最基本的函数了,例如:
lwndC = capCreateCaptureWindowA(\"我的视频监视窗口\", WS_CHILD , 0, 0, 160, 120, hwnd, 0)
Platform: |
Size: 3236 |
Author: owen |
Hits:
Description: void CMyMenu::ChangeToOwnerDraw(CMyMenu *pMyMenu)
{
CString str //use to hold the caption temporarily
CMyMenu* pMenu //use to hold the sub menu
CMyMenuData* pMenuData //use to hold the menu data
//get the number of the menu items of the parent menu
int iMenuCount = pMyMenu->GetMenuItemCount()
UINT nID //use to hold the identifier of the menu items
Platform: |
Size: 18302 |
Author: 郭文三 |
Hits:
Description: 1. MyCoolMenu22.zip,18KB,下载 0 次,void CMyMenu::ChangeToOwnerDraw(CMyMenu *pMyMenu) { CString str //use to hold the caption temporarily CMyMenu* pMenu //use to hold the sub menu CMyMenuData* pMenuData //use to hold the menu data //get the number of the menu items of the parent menu int iMenuCount = pMyMenu->GetMenuItemCount() UINT nID //use to hold the identifier of the menu items
Platform: |
Size: 6909905 |
Author: 郭文三 |
Hits:
Description: VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include \"Queue.h\" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue<QueueData> TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, \"hello!\") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, \"hello!\") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox(\"put queue error\") } else { MessageBox(\"put queue success\") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category ///////////////////////////////////////// / / this is a example for using Queue ///////////////////////////////////////// # include "Queue . h "/ / define queue data struct QueueData struct (char data [20] int nId) / / define queue typedef TQueuelt; QueueDatagt; TMyQueue / / put data into QueueData data queue (memset (data, 0, sizeof (data)) htpasswd (data.data, "hello!") data.nId m_pMyQueue.TryPut = 0 (data)) / / try put data into QueueData data queue (memset (data, 0, sizeof (data)) htpasswd (data. data, "hello!") data.nId = 0 if (m_pMyQueue.TryPut (data)! = 0) (MessageBox ( "put queue error")) else (MessageBox ( "put queue success"))) / / get data from QueueData data queue (memset (data, 0, sizeof (data))
Platform: |
Size: 34517 |
Author: zj |
Hits:
Description: 排列生成算法及其博文
http://www.newsmth.net/pc/pccon.php?id=10001420&nid=269370
组合数学中的全排列深成算法历来是组合数学考试的重要考察点,因此在这里我简单的介绍一下6种全排列生成算法的详细过程,并借此比较它们之间的优劣之处。
不论是哪种全排列生成算法,都遵循着“原排列”→“原中介数”→“新中介数”→“新排列”的过程。其中中介数依据算法的不同会的到递增进位制数和递减进位制数。关于排列和中介数的一一对应性的证明我们不做讨论,这里仅仅给出了排列和中介数的详细映射方法。相信熟练掌握了方法就可以顺利通过这部分的考察。
Platform: |
Size: 177152 |
Author: 616451743@qq.com |
Hits:
Description: VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue<QueueData> TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue /////////////////////////////////////////# include "Queue . h "//define queue data struct QueueData struct (char data [20] int nId)// define queue typedef TQueuelt; QueueDatagt; TMyQueue// put data into QueueData data queue (memset (data, 0, sizeof (data)) htpasswd (data.data, "hello!") data.nId m_pMyQueue.TryPut = 0 (data))// try put data into QueueData data queue (memset (data, 0, sizeof (data)) htpasswd (data. data, "hello!") data.nId = 0 if (m_pMyQueue.TryPut (data)! = 0) (MessageBox ( "put queue error")) else (MessageBox ( "put queue success")))// get data from QueueData data queue (memset (data, 0, sizeof (data))
Platform: |
Size: 33792 |
Author: zj |
Hits:
Description: HICON m_hIcon
_ConnectionPtr m_pCon //连接对象
_RecordsetPtr m_pRs //记录集对象
BOOL LoadDbSource(CString strSourceName,CString strSourceDb, CString strDescription)
// Generated message map functions
//{{AFX_MSG(CCodeCtrlOdbcDlg)
virtual BOOL OnInitDialog()
afx_msg void OnSysCommand(UINT nID, LPARAM lParam)
afx_msg void OnPaint()
afx_msg HCURSOR OnQueryDragIcon()
//}}AFX_MSG
DECLARE_MESSAGE_MAP()-HICON m_hIcon _ConnectionPtr m_pCon// Link Object _RecordsetPtr m_pRs// BOOL record set targets LoadDbSou rce (redeem strSourceName. redeem strSourceDb. redeem strDescription)// Generated message map functions// ((AFX_MSG (CCodeCtrlOdbcDlg ) virtual BOOL OnInitDialog () afx_msg void OnS ysCommand (UINT nID. LPARAM lParam) afx_msg void OnPaint () afx_msg HCURSOR OnQueryDragIcon ()//)) AFX_MSG DECLA RE_MESSAGE_MAP ()
Platform: |
Size: 59392 |
Author: 穆菲 |
Hits:
Description: crack for battle realm no nid cd
Platform: |
Size: 92160 |
Author: Vermilion |
Hits:
Description: unit Video
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrls,
ExtCtrls, avicap, mmsystem, dsgnintf
// Types for event-procedures
type
TCapStatusProc = procedure(Sender: TObject) of object
TCapStatusCallback = procedure(Sender: TObject nID: integer status: string)
of object
TVideoStream = procedure(sender: TObject lpVhdr: PVIDEOHDR) of object
TAudioStream = procedure(sender: TObject lpWHdr: PWAVEHDR) of object
// Property Editor for driver selection
type
TDrivereditor = class(TPropertyEditor)
function GetAttributes: TPropertyAttributes override
procedure GetValues(Proc: TGetStrProc) override
function GetValue: string override
procedure SetValue(const Value: string) override
end -unit Video interfaceuses Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrls, ExtCtrls, avicap, mmsystem, dsgnintf// Types for event-procedurestype TCapStatusProc = procedure (Sender: TObject) of object TCapStatusCallback = procedure (Sender: TObject nID: integer status: string) of object TVideoStream = procedure (sender: TObject lpVhdr: PVIDEOHDR) of object TAudioStream = procedure (sender: TObject lpWHdr: PWAVEHDR) of object// Property Editor for driver selectiontype TDrivereditor = class (TPropertyEditor) function GetAttributes: TPropertyAttributes override procedure GetValues (Proc: TGetStrProc) override function GetValue: string override procedure SetValue (const Value: string) override end
Platform: |
Size: 54272 |
Author: 123456 |
Hits:
Description:
lpszWindowName:视频窗口的名字
dwStyle:样式
x:左边距(相对于父窗口,一般为0)
y:上边距(相对于父窗口,一般为0)
nWidth:视频窗口的宽度(注:此项并不会改变摄像头的分辨率,超出部分不会被刷新)
nHeight:视频窗口的高度
hWndParent:父窗口句柄
nID:标识符(一般为0)
这是VFW编程最基本的函数了,例如:
lwndC = capCreateCaptureWindowA("我的视频监视窗口", WS_CHILD , 0, 0, 160, 120, hwnd, 0)
-lpszWindowName: the name of the video window dwStyle: Styles x: left margin (as opposed to the parent window, usually 0) y: on the margins (as opposed to the parent window, usually 0) nWidth: video window width (Note: this does not will change the camera
Platform: |
Size: 3072 |
Author: owen |
Hits:
Description: 1. MyCoolMenu22.zip,18KB,下载 0 次,void CMyMenu::ChangeToOwnerDraw(CMyMenu *pMyMenu) { CString str //use to hold the caption temporarily CMyMenu* pMenu //use to hold the sub menu CMyMenuData* pMenuData //use to hold the menu data //get the number of the menu items of the parent menu int iMenuCount = pMyMenu->GetMenuItemCount() UINT nID //use to hold the identifier of the menu items-1. MyCoolMenu22.zip, 18KB, download 0 times, void CMyMenu:: ChangeToOwnerDraw (CMyMenu* pMyMenu) (CString str// use to hold the caption temporarily CMyMenu* pMenu// use to hold the sub menu CMyMenuData* pMenuData// use to hold the menu data// get the number of the menu items of the parent menu int iMenuCount = pMyMenu-
Platform: |
Size: 14288896 |
Author: 郭文三 |
Hits:
Description: Qt program to access the NI-DAQmx data acquisition cards
Platform: |
Size: 68608 |
Author: mnour |
Hits:
Description: 第一:先选读写器:4 写卡器 端口请选:COM
第二:IMSI:46003755xxxxxxxxxxx
第三:ICCID:你任意写:
第四:AKEY:就是鉴权码联通提供
第五:SSD-A联通提供
第六:SSD-B联通提供
第七: ESN:联通给的
第八:SID: NID:65535-第一:先选读写器:4 写卡器 端口请选:COM
第二:IMSI:46003755xxxxxxxxxxx
第三:ICCID:你任意写:
第四:AKEY:就是鉴权码联通提供
第五:SSD-A联通提供
第六:SSD-B联通提供
第七: ESN:联通给的
第八:SID: NID:65535
Platform: |
Size: 1656832 |
Author: 沃尔沃而无错 |
Hits:
Description: 利用NI提供的DAQ,经过编程实现所需的波形,采用LABWINDOWS实现-NI provides the use of DAQ, programmed to achieve the required waveforms, using LABWINDOWS to achieve
Platform: |
Size: 7168 |
Author: www |
Hits:
Description: C++风装好的DBF文件访问类,可以进行各种读写操作-nid ljadslkgjkldsgj ladksjg kljldg
Platform: |
Size: 1570816 |
Author: 邱世平 |
Hits:
Description: novel intra deinterlacing algorithm (NID) based on content adaptive interpolation. The NID consists of three steps: pre-processing, content classification, and content adaptive interpolation. There are also three main interpolation methods in our proposed NID, i.e. modified edge-based line averaging (M-ELA), gradient directed interpolation (GDI), and window matching method (WMM).
Platform: |
Size: 8192 |
Author: cho |
Hits:
Description: 通过cdma的基站代码确定该基站的经纬度位置,必须知道Sid、Nid、Bid这三个基站数据,缺一不可-By cdma base station code to determine latitude and longitude location of the base station, you must know Sid, Nid, Bid three station data are indispensable
Platform: |
Size: 10240 |
Author: 叶生 |
Hits: