cmessagebox.cpp

来自「AA制消费管理系统(简易型) 实现账户信息」· C++ 代码 · 共 35 行

CPP
35
字号
#include "link.h"
/***********************************************************************
消息提示函数
***********************************************************************/
void CMessageBox::ShowMessage(string _message)
{
	int x,y;
	CFormBase::WhereXY(&x,&y);
	CFormBase::GotoXY(1,24);
	for (int i=0;i<3;i++)
	{
		for (int j=1;j<79;j++)
		{
			cout<<" ";cout.flush();
		}
		CFormBase::GotoXY(1,24+i);
	}
	CFormBase::GotoXY(2,25);
	cout<<_message;cout.flush();
	CFormBase::GotoXY(x,y);
}
/***********************************************************************
清空行函数
***********************************************************************/
void CMessageBox::Clear(int _x,int _y)
{
	int x,y;
	CFormBase::WhereXY(&x,&y);
	CFormBase::GotoXY(_x,y);
	for (int i=0;i<_y;i++)
	{
		cout<<" ";cout.flush();
	}
	CFormBase::GotoXY(x,y);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?