?? axcontactcmdorg.hpp
字號:
/**************************************************************************
File: AxContactCmd.hpp
Date: 10/16/2007
By: Data Management Systems (www.dmsic.com)
DESCRIPTION
The following source code was generated using the AxGen utility and is
intended to be used in conjunction with the dbAx library. This class
enables access to stored procedures of the data provider from which it
was derived.
Stored Proc: (local)\CardFile\get_Contacts
Include this file in your project.
DISCLAIMER
This source code is provided AS-IS with no warranty as to its
suitability or usefulness in any application in which it may be used.
**************************************************************************/
#pragma once
#include <AxLib.h>
using namespace dbAx;
class CAxContactCmd :
public CAxCommand
{
public:
CAxContactCmd() { }
~CAxContactCmd() { }
//Attributes
CString m_szAccntIDParam;
//Create command parameters
void _CreateParameters()
{
ADOParameter *pParam;
pParam = CreateParameter(_T("AccntID"), adVarChar, adParamInput, 50,
&_variant_t((LPCTSTR) m_szAccntIDParam));
};
//Update command parameters
void _UpdateParameters()
{
_SetParamValue(_T("AccntID"), &_variant_t((LPCTSTR) m_szAccntIDParam));
};
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -