|
- Various
- Operating mode in Android
- Operating mode in Windows Phone
- Operating mode in iPhone/iPad
HourGlass (Function) In french: Sablier
HourGlass() // Display the hourglass ProcProcess() // Long process HourGlass(False) // Restore the initial pointer
Syntax
HourGlass([<Activation>])
<Activation>: Optional boolean - True (default value) to enable the hourglass,
- False to restore the initial shape of mouse cursor.
HourGlass([<Activation>])
<Activation>: Optional constant Activation or deactivation constant: | | False | Cancels the hourglass that was enabled last. If this houglass is the only one that is enabled, the mouse cursor takes its initial shape. | Versions 22 and laterfalseAllHourglass New in version 22falseAllHourglass falseAllHourglass | Cancels all current hourglasses to restore the initial shape of mouse cursor. | True (Default value) | Enables the hourglass. |
This page is also available for…
|
|
|
| |
| | https://youtu.be/tpuThghZguE https://windevdesenvolvimento.blogspot.com/2019/09/dicas-2282-windev-webdev-mobile.html // BTN_DIRETORIO_LISTA HourGlass(True) s_arquivos_todos is string=fListDirectory(EDT_DIRETORIO) s_arquivo_individual is string="" TVT_DIRETORIO.DeleteAll() FOR EACH STRING s_arquivo_individual OF s_arquivos_todos SEPARATED BY CR nPOSICAO is int=TVT_DIRETORIO.AddLine() TVT_DIRETORIO.COL_01_DIRETORIO[nPOSICAO]=s_arquivo_individual END HourGlass()
|
|
|
|
| |
| |
| |
|
| | https://youtu.be/gKsEf55d_-w
https://windevdesenvolvimento.blogspot.com/2019/06/dicas-2156-windev-webdev-mobile.html
// btn_lupa_ampuleta_aguarde_hourglass HourGlass() // PROCESSO FOR nContador = 1 TO 40000 trace(nContador) END //FINAL PROCESSO HourGlass ( False )
|
|
|
|
| |
| |
| |
|
| | https://youtu.be/nlNN6dTlIgA
https://windevdesenvolvimento.blogspot.com/2019/03/dicas-2041-windev-comandos-45-hourglass.html
// BTN_AMPULETA_HOURGLASS HourGlass () FOR nContador = 1 TO 40000 Message(nContador) END HourGlass ( False )
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |