注册 登录
编程论坛 C++ Builder

C++ builder 精确提示

明月抚云 发布于 2013-04-18 10:42, 1648 次点击
点击按钮后,编辑框能够有个提示(不弹出窗口)。不是使用showmessage()之类的弹出窗口。

小弟在这先谢过各位了。
1 回复
#2
明月抚云2013-04-18 14:12
void __fastcall TForm1::Button1Click(TObject *Sender)
{
   THintWindow *hw;
   TRect rect(
      Mouse->CursorPos.x,
      Mouse->CursorPos.y+25,
      Mouse->CursorPos.x+200,
      Mouse->CursorPos.y+50
   );
   hw = new THintWindow(Application);
   hw->ActivateHint(rect,"hello!");
   Sleep(2000);
   delete hw;
}

我找到答案了。。希望其他兄弟可以学习下。
1