MSGWAIT

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

MSGWAIT

Post by Ollie »

MSGWAIT does not 'obey' CRLF like MSGSTOP does.

#define CRLF Chr( 13 ) + Chr( 10 )
MsgWait( "Please, just wait a little!"+CRLF+"Working...","TITLE", 15 )
MsgStop( "Please, just wait a little!"+CRLF+"Working...","TITLE")

Any ideas?
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
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Ollie,

Those functions are different. MsgStop() is a Windows API builtin function.

MsgWait() is defined in FWH in source\function\msgrun.prg and does not check for CRLF. You may easily change its source code
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply