EDIT:
Modified to use with short_tip_text. Works great, thanks x2
Code:
int __stdcall show_text_hint(_Dlg_* this_, _EventMsg_* msg)
{
int r = this_->DefProc(msg);
char* text;
text = "";
if (msg->type == MT_MOUSEOVER) {
_DlgItem_* it = this_->FindItem(msg->x_abs, msg->y_abs);
if (it) {
if (it->short_tip_text != NULL)
text = it->short_tip_text;
}
statbar->SetText(text);
statbar->Draw();
statbar->RedrawScreen();
}
return r;
}
(This post was last modified: 03.09.2017 23:43 by RoseKavalier.)