I am going to study it

SHOKRANE katiren

Moderator: Rathinagiri
Hello Tabettonton2 wrote:good evening to all the team,
please how to block the main window when I'm working in another window ? thank you very much
If I understood correct, you need simply define the non-main window as MODAL. If a window defined "modal", while this window is open; user can't make anything on the "caller" window of that "modal" window. A "modal" window may be called by the "main" or another else.tonton2 wrote: ...
closed or hidden is the same thing , it is to not use the main window when I use another window
Example, when I use MsgInfo is good as long as I do not press' OK ' but when I call a function such as Action CALL () I can go back to the main window without leaving the CALL ()
Merci et bonne soirée
NB that what i used 'ACTION RECH_FAC(Win_1.HIDE)'
Code: Select all
ITEM "&Recherche de Factures Emise" ;
ACTION RECH_FAC(Win_1.Hide)
Code: Select all
proc Quit_RECH_FAC()
use
Show Window win_1
form_FGrids.Release // quit
return
I used MODAL method and it is a very good solution !If I understood correct, you need simply define the non-main window as MODAL. If a window defined "modal", while this window is open; user can't make anything on the "caller" window of that "modal" window. A "modal" window may be called by the "main" or another else.