DISABLE ALT+ F4

Post Reply
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

DISABLE ALT+ F4

Post by Silvio.Falconi »

I have a dialog for add an Invoice
I disabled Esc
I disable button X

but the user is able also to close the dialog with alt+f4


how I can reolve ?
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: DISABLE ALT+ F4

Post by cnavarro »

Code: Select all

Function TestInvoice()

Local oDlg,oFont
local nOffx   := 20 //-250
local nOffy   := 30 //-300
local lSw     := .F.

 DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14
 DEFINE DIALOG oDlg SIZE 878, 570 PIXEL TRUEPIXEL RESIZABLE FONT oFont ;
   TITLE "Services"


 @ 10, 100 button "Exit" SIZE 50, 24 PIXEL ACTION ( lSw := .T., oDlg:End() )

 ACTIVATE DIALOG oDlg CENTERED VALID lSw

   RELEASE FONT oFont

return nil

 
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Post Reply