FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour MSGWAIT
Posts: 233
Joined: Sat Dec 30, 2006 06:10 AM
MSGWAIT
Posted: Mon Feb 12, 2007 06:59 PM

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)
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
MSGWAIT
Posted: Mon Feb 12, 2007 07:20 PM

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

Continue the discussion