DEFINE MESSAGE OF oWnd

Post Reply
Ollie
Posts: 233
Joined: Sat Dec 30, 2006 6:10 am

DEFINE MESSAGE OF oWnd

Post by Ollie »

If I have defined a STATUS bar for my app:

DEFINE MESSAGE OF oWnd PROMPT cUserID CLOCK DATE KEYBOARD NOINSET

What command do I use to add another status item.
e.g. FILTER ACTIVE

Is there a way of making it flash or in a diff colour attract the user's attention?

Thanks.
Many thanks
Ollie.

Using:
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6406)
Borland C++ 5.5.1
FWH 9.04 (2009 Apr)
User avatar
Armando
Posts: 2479
Joined: Fri Oct 07, 2005 8:20 pm
Location: Toluca, México
Contact:

Post by Armando »

Ollie:

You must use the MsgItem control as follow:

SET MESSAGE OF oWindow TO oApp:cRazonSocial KEYBOARD CLOCK

DEFINE MSGITEM oMiCasilla OF oWindow:oMsgBar SIZE 120;
PROMPT ALLTRIM(oApp:cUsuario) COLOR CLR_WHITE,CLR_BLUE


Best Regards, Armando
SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
Ollie
Posts: 233
Joined: Sat Dec 30, 2006 6:10 am

Post by Ollie »

I don't understand what oApp:cRazonSocial is.
Many thanks
Ollie.

Using:
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6406)
Borland C++ 5.5.1
FWH 9.04 (2009 Apr)
demont frank
Posts: 167
Joined: Thu Mar 22, 2007 11:24 am

Post by demont frank »

> I don't understand what oApp:cRazonSocial is.


Maybe your own text to substitute !

Frank
User avatar
Armando
Posts: 2479
Joined: Fri Oct 07, 2005 8:20 pm
Location: Toluca, México
Contact:

Post by Armando »

Frank, Ollie:

Yes, It is.

Regards
SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
Post Reply