Skip navigation.

Fan 和 琳琳 de Blog

人越少地球转得越快

Posts tagged with "code"

MessageBox 用于真机测试比较方便

,

MessageBox(const TDesC& aMsg)
{
	CAknGlobalNote* MsgBox =  CAknGlobalNote::NewL();
	MsgBox->SetSoftkeys(R_AVKON_SOFTKEYS_EMPTY);
#ifdef __SERIES60_3X__
	TInt id = MsgBox->ShowNoteL(EAknGlobalTextNote,aMsg);
#else
	TInt id = MsgBox->ShowNoteL(EAknGlobalInformationNote,aMsg);
#endif
	//等待2秒后,自动将提示信息关闭
	User::After(2000000);
	MsgBox->CancelNoteL(id); 
	delete MsgBox;
	MsgBox = NULL;
}
March 2010
S M T W T F S
February 2010April 2010
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31