Search found 77 matches: lcancel

Return to advanced search

Re: CANCEL en tsbutton 7.0, no funciona

... METHOD GetDlgCode( nLastKey ) CLASS TSButton If nLastKey > 0 .and. nLastKey == ::nWakeup ::nWakeup := 0 EndIf If ( ! ::oWnd:lValidating .and. ::lCancel .and. ::cAccel != Nil .and. GetAsyncKey( VK_MENU ) .and. ; GetAsyncKey( Asc( Upper( ::cAccel ) ) ) .and. ::nWakeup == 0 ) ::SendMsg( FM_CLICK ...
by noe aburto
Mon Sep 23, 2013 1:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CANCEL en tsbutton 7.0, no funciona
Replies: 3
Views: 918

Re: Position of msg* dialogs

... aRect , cMsg, aOptions, cTitle, xIcon, nDefault, aGradiate, ; bAction, oFont, cFileRes, oIcon, uVar, cPict, bValid,; lSpinner, lMeter, oMeter, lCancel) ... ... ACTIVATE DIALOG oDlg CENTERED ; ON INIT (DlgInit(oDlg, lPosition, aRect , oFont, cMsg, aOptions, cTitle, nDefault,; aGradiate, bAction, ...
by ukoenig
Tue Jul 17, 2012 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position of msg* dialogs
Replies: 4
Views: 1067

Re: Cancel on Valid

Gale YES .. your advice worked GREAT .. oButton:lCancel := .t. allowed the valid NOT to fire if the cursor was in the Valid Get ! Thanks Rick Lipkin REDEFINE BTNBMP oBUTT2 ID 112 of oREQ   ;    // cancel        ...
by Rick Lipkin
Thu Dec 08, 2011 11:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cancel on Valid
Replies: 6
Views: 976

Re: Cancel on Valid

I don't think the Cancel clause works on btnbmp class. You have to use oButton:lCancel := .f.
by Gale FORd
Thu Dec 08, 2011 10:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cancel on Valid
Replies: 6
Views: 976

Re: Cancel on Valid

Try adding
oBUTT2:lCancel := .t.
by Gale FORd
Thu Dec 08, 2011 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cancel on Valid
Replies: 6
Views: 976

Re: valid sobre get + button

... CALCELAR REDEFINE BUTTONBMP aBtn[2] ID 202 OF oDlg UPDATE ; ACTION ( oDlg:End() ) ; BITMAP 2004 PROMPT "Cancelar" TEXTRIGHT aBtn[2]:lCancel := .T. // PARA CERRAR DIALOGO BOTON Cancelar //------ FIN DEFINICION DE LOS BOTONES ------------------------- ACTIVATE DIALOG oDlg CENTER cQry:End() ...
by joseluisysturiz
Mon Oct 31, 2011 2:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: valid sobre get + button
Replies: 7
Views: 1817

Re: HOW EXIT FROM A BTNBMP (button)

Hola

add obtn:lCancel := .T.

regards

Marcelo
by Marcelo Via Giglio
Tue Oct 04, 2011 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HOW EXIT FROM A BTNBMP (button)
Replies: 3
Views: 620

Re: CANCEL en SBUTTON no funciona

Intenta:

LCANCEL := .T.
by karinha
Fri Sep 02, 2011 1:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CANCEL en SBUTTON no funciona
Replies: 5
Views: 532

TRBtn - Como button (Hecho Realidad) Solucionado

... asi: Upper( oWnd:Classname() ) $ "TBUTTON;TBTNBMP;TBUTTONBMP; TRBTN " .and. ; Y para que el boton cancele un Valid se debe poner oBtn:lcancel:=.T. Ahora si me quedo tranquilo, gracias a todos.
by Ruben Fernandez
Sun Jul 03, 2011 6:32 pm
 
Forum: To do - WishList / Por hacer - Peticiones
Topic: TRBtn - Como button (Hecho Realidad) Solucionado
Replies: 2
Views: 1134

Re: MsgMeter()

The Source-file of Function < Msgmeter >, You can find
in the FWH-subdirectory /Functions. Just make the changes You need.

@ 2.2, 10.4 BUTTON oBtn PROMPT "&Cancel" OF oDlg ;
ACTION ( lEnd:= .t., lCancel:= .t. ) SIZE 32, 11

Best Regards
Uwe :lol:
by ukoenig
Wed Jun 29, 2011 12:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MsgMeter()
Replies: 2
Views: 553

Re: Realizar Backup o copias de Seguridad MYSQL

... forma automatica y controlada... tiene 2 metodos muy utiles Backup y Restore METHOD Backup( aTables, cFile, lDrop, lOver, nStep, cHeader, cFooter, lCancel ) METHOD Restore( cFile, lCancel ) este el el link del blog http://tdolphin.blogspot.com/ encontraras el codigo fuente de la clase ...
by Daniel Garcia-Gil
Fri Apr 08, 2011 12:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Realizar Backup o copias de Seguridad MYSQL
Replies: 1
Views: 544

Re: TDOSPRN y XP WINDOWS - SOLUCIONADO

... DATA oWnd, oPagina // Ednaldo DATA nPage AS NUMERIC // Ednaldo DATA cDevice // Ralph DATA nMaxLine, nLength, nLastError AS NUMERIC // Ralph DATA lCancel, lPreview, lModograf, lIsLaser AS LOGICAL // Ralph METHOD New(cPort) CONSTRUCTOR METHOD End() METHOD StartPage() INLINE ::ShowProc() // Ednaldo ...
by Armando Picon
Mon Jan 24, 2011 8:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDOSPRN y XP WINDOWS
Replies: 21
Views: 4704

Re: como saltar un bValid de un get al presionar sobre un boton?

...    MESSAGE  "Salir Lista Productos"    ;                ACTION   oDlg:End();                TOOLTIP  "Terminar"       oBtnFin:lCancel := .T.
by gdeteran
Tue Nov 23, 2010 2:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: como saltar un bValid de un get al presionar sobre un boton?
Replies: 4
Views: 610

Re: Funciona cláusula CANCEL en Button de Buttonbar ?

... DEFINE BUTTON oBtnTermina OF oBar1 NOBORDER; FILE "..\bitmaps\EXIT2.BMP" ; MESSAGE "Terminar" ; ACTION oDlg:End() oBtnTermina:lCancel := .T.
by gdeteran
Mon Oct 04, 2010 9:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciona cláusula CANCEL en Button de Buttonbar ?
Replies: 3
Views: 616

New FTDN July/Julio 2010 (FWH 10.7)

... now we can set default item selected and define Cancel button function MsgList( aData, cTitle, nTop, nLeft, nBottom, nRight, cBtnTitle, nItem, lCancel, cCapCan ) nItem -> preselected item lCancel -> define Cancel button cCapCan -> Cancel Button caption Please review samples/testml.prg ...
by Antonio Linares
Wed Jul 28, 2010 5:00 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2010 (FWH 10.7)
Replies: 0
Views: 2213
PreviousNext

Return to advanced search