Search found 201 matches: bvalid

Return to advanced search

Re: CLASS modification

... Notify(...)     ...      case nCode == DTN_CLOSEUP           ::lClosed = .T. Datepicker have VALID where can can place a ACTION into ::bValid Codeblock   if bValid != nil      ::bValid    = { || If( ::lClosed, Eval( bValid, Self ), .F. ) }   endif How ? @ nRow, ...
by Silvio.Falconi
Fri May 26, 2023 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 1704

Re: CLASS modification

... Notify(...)     ...      case nCode == DTN_CLOSEUP           ::lClosed = .T. Datepicker have VALID where can can place a ACTION into ::bValid Codeblock   if bValid != nil      ::bValid    = { || If( ::lClosed, Eval( bValid, Self ), .F. ) }   endif
by Jimmy
Fri May 26, 2023 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 1704

Re: TGet bLostFocus y WHEN no entiendo bien la lógica...

...   oDlg:Activate()Return ( Nil ) Thank you Enrico With Valid it works and this is how I usually implement it, but I consider that bValid is to "validate" the content of the get and for some use cases it is more correct to use the bLostFocus since they are actions to perform ...
by VictorCasajuana
Fri Oct 21, 2022 3:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGet bLostFocus yWHEN no entiendo bien la lógica[SOLUCIONADO
Replies: 20
Views: 1105

Re: xBrowse function

... cSelected := oSelectedCol:Value } )if cSelected == nil   ? "none selected"else   ? cSelectedendif  bValid is the Valid clause of the dialog. { |oBrw| IsValid }
by nageswaragunupudi
Sun Aug 21, 2022 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 634

xBrowse function

... tell me where I find function: XEval( bSetUp, oBrw ) Can you please post some sample code how these codeblocks could look like: bSetUp bSelect bValid Best regards, Otto XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, ; bValid, cSerial, lNoModal, lAutoFit )
by Otto
Wed Aug 17, 2022 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 634

Re: AUTOCODE

... variables? local cCode := 'XBrowse( uData , "This is my title, subtitle , test neu", .F. , bSetUp, aCols, bSelect, lExcel, lFastEdit,bValid, cSerial, lNoModal, lAutoFit )' Best regards, Otto https://mybergland.com/fwforum/acxbwfunc.jpg  #include "fivewin.ch"//XBrowse( ...
by Otto
Wed Aug 17, 2022 9:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AUTOCODE
Replies: 7
Views: 480

AUTOCODE

... First I extend Autocode to use xBrowser- funciton: //XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, ; // bValid, "SlNo", lNoModal, lAutoFit ) Best regards, Otto
by Otto
Wed Aug 17, 2022 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AUTOCODE
Replies: 7
Views: 480

Re: xbrows function

... oBrw:=xbrowse(xBrw->dbf,xBrw->title,xBrw->lSort,..... ) // XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, bValid, cSerial, lNoModal, lAutoFit ) //more setup if possible if !empty(xBrw->Header) oBrw:setgroupheader("xBrw->header",xbrw->headerfrom,xBrw->headerto) ...
by Marc Venken
Mon Dec 06, 2021 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrows function
Replies: 3
Views: 614

xbrows function

... the source code. But you can transfer all of these parameters. XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, bValid, cSerial, lNoModal, lAutoFit ) It is also interesting that you can get the xBrowse object back and make further adjustments with it. e.g. size ...
by Otto
Sat Dec 04, 2021 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrows function
Replies: 3
Views: 614

GetKeyState with K_ALT_F4

on a dialog I insert ON INIT ( oDlg:bValid := { || !GetKeyState( VK_ESCAPE ) },; run ok but I wish block also alt+f4 (K_ALT_F4) GetKeyState accept more parameters ? I make ON INIT ( oDlg:bValid := { || !GetKeyState( VK_ESCAPE ) .and. !GetKeyState( ...
by Silvio.Falconi
Wed Apr 22, 2020 12:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetKeyState with K_ALT_F4
Replies: 0
Views: 255

Re: interceptar X de DIALOG

ACTIVATE VALID()

OU

bValid
by ronaldo
Fri Apr 03, 2020 4:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: interceptar X de DIALOG
Replies: 9
Views: 944

Re: Saber si ventana MDI esta abierta

... ! lChild DEFINE WINDOW s_oWndPDF TITLE cTitulo else DEFINE WINDOW s_oWndPDF MDICHILD of M->oWnd vscroll TITLE cTitulo endif if lChild s_oWndPDF:bValid := {|| HB_GCAll(.t.), s_oWndPDF := Nil , .t. } else s_oWndPDF:bPostEnd := {|| HB_GCAll(.t.), s_oWndPDF := Nil } endif ACTIVATE WINDOW s_oWndPDF ...
by MGA
Mon Sep 30, 2019 5:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber si ventana MDI esta abierta - ( SOLUCIONADO )
Replies: 9
Views: 1698

Re: Cambiar ACTION, VALID Y PICTURE Tiempo ejecución

Bueno, para bAction y bValid lo que haria yo sería simplemente poner un if en el codeblock de la expresion del action y del valid porque yo no tocaria los codeblocks originales. Puede funcionar o no, dependerá si se han pasado a variables ...
by hmpaquito
Wed Sep 11, 2019 7:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar ACTION, VALID Y PICTURE Tiempo ejecución
Replies: 6
Views: 813

Re: resize a position with fw_drawimage

... nLeft, nWidth, nHeight, cResName, cBmpFile, lNoBorder,; oWnd, bLClicked, bRClicked , lScroll, lStretch, oCursor,; cMsg, lUpdate, bWhen, lPixel, bValid, lDesign, cVarName ) CLASS TImage regards Uwe :D Uwe, Sorry on BTnBMP is possible to place sub-images inside on any position of the button you ...
by Silvio.Falconi
Thu May 16, 2019 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: resize a position with fw_drawimage
Replies: 12
Views: 1571

Re: resize a position with fw_drawimage

... nLeft, nWidth, nHeight, cResName, cBmpFile, lNoBorder,; oWnd, bLClicked, bRClicked , lScroll, lStretch, oCursor,; cMsg, lUpdate, bWhen, lPixel, bValid, lDesign, cVarName ) CLASS TImage regards Uwe :D
by ukoenig
Thu May 16, 2019 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: resize a position with fw_drawimage
Replies: 12
Views: 1571
Next

Return to advanced search