?? access_ip2.cpp
字號:
/*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used or disclosed except with the written
* permission of MediaTek Inc. (C) 2001
*
*****************************************************************************/
/*****************************************************************************
*
* Filename:
* ---------
* access_ip2.cpp
*
* Project:
* --------
* Maui META APP
*
* Description:
* ------------
* IP2 calibration export to Microsoft Access source
*
* Author:
* -------
* Andy Ueng (mtk00490)
*
*============================================================================
* HISTORY
* Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*------------------------------------------------------------------------------
* $Revision$
* $Modtime$
* $Log$
*
*------------------------------------------------------------------------------
* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*============================================================================
****************************************************************************/
#include <IniFiles.hpp>
#pragma hdrstop
#ifndef _ACCESS_IP2_H_
#include "access_ip2.h"
#endif
//===========================================================================
//===========================================================================
CACCESSIP2::CACCESSIP2( void )
{
}
//---------------------------------------------------------------------------
CACCESSIP2::~CACCESSIP2( )
{
}
//------------------------------------------------------------------------------
void CACCESSIP2::SetTabNameToIP2_PARAMETERS( TADOTable *p_ADOTab, AnsiString as_tabname )
{
p_ADOTab->Active = false;
p_ADOTab->TableName = "IP2_PARAMETERS";
p_ADOTab->Active = true;
}
//----------------------------------------------------------------------------
void CACCESSIP2::PostRecordToAccess( TADOTable *p_ADOTab )
{
p_ADOTab->Post();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -