function ShowBBSTab(int Index)
{
local string strBypass;
local EControlReturnType Ret;
switch( Index )
{
case 0:
strBypass = "bypass _bbshome";
break;
case 1:
strBypass = "bypass _bbsgetfav";
break;
case 2:
strBypass = "bypass _bbslink";
break;
case 3:
strBypass = "bypass _bbsloc";
break;
case 4:
strBypass = "bypass _bbsclan";
break;
case 5:
strBypass = "bypass _bbsmemo";
break;
case 6:
strBypass = "bypass _maillist_0_1_0_";
break;
case 7:
strBypass = "bypass _friendlist_0_";
break;
}
if (Len(strBypass)>0)
{
Ret = m_hBoardWndHtmlViewer.ControllerExecution(strBypass);
if (Ret == CRTT_CONTROL_USE)
{
m_bBtnLock = true;
}
}
}