扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:王凯明 来源:yesky 2007年11月16日
关键字:
void MainForm::btn_Click( Object *sender, System::EventArgs *e ) { if( sender->Equals( this->btnChecker ) ) { if( this->ServerAdd->Text != "" && this->Username->Text != "" && this->Password->Text != "" ) { int number = this->MailChecker(); if( number > 0 ) { String *info = new String( "你有" ); info->Concat( number.ToString() ); info->Concat( S"封新邮件!" ); MessageBox::Show( info->ToString(), "InfoBox", MessageBoxButtons::OK, MessageBoxIcon::Information ); } else if( number == 0 ) { MessageBox::Show( "不好意思,你暂时还没有新邮件。", "InfoBox", MessageBoxButtons::OK, MessageBoxIcon::Information ); } } } |
int MainForm::MailChecker() { int numberOfMails; // 创建一个POP3Client对象 pPOP3Client = new CPOP3Client(); // 设置各项属性 pPOP3Client->POP3HostName = this->ServerAdd->Text->ToString(); pPOP3Client->UserName = this->Username->Text->ToString(); pPOP3Client->Password = this->Password->Text->ToString(); // 获得新邮件数目 numberOfMails = pPOP3Client->NumberOfMessages; if( numberOfMails < 0 ) MessageBox::Show( "发生错误!!!", "InfoBox",MessageBoxButtons::OK, MessageBoxIcon::Error ); return numberOfMails; } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者