FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC MsgWait()
Posts: 48
Joined: Sun Oct 30, 2005 09:29 AM
MsgWait()
Posted: Sat Mar 28, 2009 01:46 PM
Hello,

I want to display a temporary message in my application. I found the function MsgWait().
I use the following code:

Code (fw): Select all Collapse
MsgWait("Ouverture des fichiers...","Fmesure",2)


The problem is that the application hangs after the message has been displayed.

Any clue?

Many thanks
Raymond Fischbach
www.mouches.org
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Re: MsgWait()
Posted: Sat Mar 28, 2009 06:05 PM

Raymond

Try a sysrefresh() after the call to msgwait or better use msgrun

this is a sample

MsgRun( "Synchro en Cours...", "Veuillez Patienter", { || SYNCRO(OWND),SYSREFRESH() } )

Hth

Richard

http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 48
Joined: Sun Oct 30, 2005 09:29 AM
Re: MsgWait()
Posted: Sat Mar 28, 2009 08:54 PM

Hello Richard,

Thank you for the hint but none of them work.

I first tried with MsgRun() but I get an unresolved external symbol: HB_FUN_SYNCRO

Then I tried with SysRefresh() but the application seems to collapse after the message is displayed and the message window is closed.

Raymond Fischbach
www.mouches.org
Posts: 48
Joined: Sun Oct 30, 2005 09:29 AM
Re: MsgWait()
Posted: Sat Mar 28, 2009 09:29 PM

Hello Richard,

Sorry, after I posted my reply, I realised that SYNCRO() was your function.
I will make more tests and will come back later with my results.

Regards,
Raymond

Raymond Fischbach
www.mouches.org

Continue the discussion