Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Managing the messagebox
Message
De
03/06/2003 17:02:16
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00795896
Message ID:
00795923
Vues:
26
Tim,

The messagebox is a modal dialog, so code won't run while it is displayed. Like Chuck said, you could use WAIT, but it's pretty ugly.
wait window "Please wait..." nowait noclear
*  do work now
*  ...
wait clear
Better yet, throw a modeless form on the screen:
do form myMessageForm name oForm linked
* do work now
* ... more work
oForm.release()
>Is there a way for the standard "=messagebox('Please wait')" to display before a loop then disappear afterward w/out user input?
Steve Gibson
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform