Search found 70 matches: bpostend

Return to advanced search

Re: lIncrFilter + MDI

... oBrw:oSeek PROMPT oBrw:cSeek SIZE 200,10 PIXEL ; OF oDlg COLOR CLR_BLACK,CLR_YELLOW PICTURE '@!' oBrw:CreateFromCode() oDlg:oClient := oBrw oDlg:bPostEnd := { || DbCloseArea() } ACTIVATE DIALOG oDlg AS MDICHILD SETUP oWndChild := oWnd // SIN ESTA INSTRUCCIÓN LO HACE CORRECTAMENTE return nil Saludos.
by cpheraclio
Sun Jun 04, 2023 11:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lIncrFilter + MDI
Replies: 4
Views: 369

lIncrFilter + MDI

... oBrw:cFilterFld ; ITEMS aHdrs ; ON CHANGE ( oBrw:Seek( "" ), oBrw:SetFocus() ) ; SIZE 50,400 PIXEL OF oDlg oDlg:oClient := oBrw oDlg:bPostEnd := {||oRs:Close(),oRs:=Nil} ACTIVATE DIALOG oDlg CENTER AS MDICHILD Fivewin 22.03, BCC 7.4
by cpheraclio
Fri Jun 02, 2023 11:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lIncrFilter + MDI
Replies: 4
Views: 369

Re: XBrowse: report header and footer

Solved for footer:

oRpt:bPostEnd = { || oRpt:Say( ... ) }

Any ideas for header? I'm trying with oRpt:bInit but it prints after the columns header.

EMG
by Enrico Maria Giordano
Wed Dec 16, 2020 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: report header and footer
Replies: 10
Views: 1247

Re: Report Class question

... on a single page. I did it more than 20 years ago using FW 16 bits. I remember it was a bit tricky, using the DelColumn and AddColumn methods with bPostEnd block but it worked flawlessly. For a reason I could not discover the upgrade to FWH broke my code. As it coincided with the closing of the ...
by ADutheil
Sun May 10, 2020 2:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report Class question
Replies: 4
Views: 694

SQL BROWSER with FIVEWIN + xBrowser

... s_oBrowse:CreateFromCode() hLays["BROWSE"]:oClient := s_oBrowse // s_oWndSqlBrowser:SetIcon( TIcon():New(,,'MGAICON')) s_oWndSqlBrowser:bPostEnd := {|| MsgRun("Aguarde...",,{|| Valid_SQLBrowser() } ) } activate window s_oWndSqlBrowser maximized on init(xSetFocus(oGet)); valid( ...
by MGA
Fri Dec 20, 2019 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL BROWSER with FIVEWIN + xBrowser
Replies: 8
Views: 1705

Insertar/Modificar registros en ACCESS

... }, ; o:nEditType := EDIT_GET } ) WITH OBJECT oBrw :bPopUp := { |o| ColMenu( o ) } :MakeTotals() :CreateFromCode() END oWnd:oClient := oBrw oWnd:bPostEnd := { || oRs:Close() } BtnBar( oBrw )
by juanjogascem
Tue Dec 03, 2019 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar/Modificar registros en ACCESS
Replies: 5
Views: 869

Re: Saber si ventana MDI esta abierta

... 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 MAXIMIZED /*****************************************************************************/ ...
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: ¿Cómo colocar en xBrowse el ticket para campos lógicos?

... FONT oLetra oBrwPen:nMarqueeStyle := MARQSTYLE_HIGHLROW oBrwPen:M:SetCheck( , .t. ) oBrwPen:CreateFromCode() oVenChPen:oClient:=oBrwPen oVenChPen:bPostEnd := { || ( aNomBas[PEND] )->( DBCLOSEAREA() ) } ACTIVATE WINDOW oVenChPen; ON INIT ( oVenChPen:SetFocus() ); VALID( alBases[PEND]:=.F.,.T. ...
by wyerco613
Fri Apr 26, 2019 1:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo colocar en xBrowse el ticket para campos lógicos?
Replies: 3
Views: 972

Re: Treport Footer

Francisco:

En lugar de footer, utiliza bPostEnd

Code: Select all  Expand view

    oReporte:bPostEnd       := { || PonFooter(oReporte)}
 


Saludos
by Armando
Fri Feb 23, 2018 3:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Treport Footer
Replies: 2
Views: 465

Re: EXCESS RELEASE OF FONT - oFonte:End()

do not end font in timers or valid clauses.

What you need to do after the end of MDICHILD, do it in oWnd:bPostEnd
by nageswaragunupudi
Fri Jun 09, 2017 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCESS RELEASE OF FONT - oFonte:End()
Replies: 10
Views: 1300

Re: bug xBrowse ADO

... still some buttons or controls that keep referring to the recordset. Advice: a) If the browse is on MDICHILD window, close the recordset in oWnd:bPostEnd. eg: oWnd:bPostEnd := { || oRs:Close() }. By the time the recordset is closed all controls on the window are already destroyed. b) If the browse ...
by nageswaragunupudi
Mon Jul 06, 2015 11:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug xBrowse ADO
Replies: 4
Views: 890

Re: error + mdi + xbrowse

When using MDI ChildWindow, closing data, release of fonts/resources, etc should be done in oWndChild:bPostEnd, but NOT in VALID clause or after activate command Please replace    oWChild:oClient := oBrw    ACTIVATE WINDOW oWChild MAXIMIZED VALID(oRsCte:close(),.t. ...
by nageswaragunupudi
Sun May 24, 2015 11:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error + mdi + xbrowse (Solucionado)
Replies: 10
Views: 2659

Capturar nTotal de columnas en TReport

... columnas tienen su nTotal en 0, pero desde oReport:lCreated. ¿Se puede? Por ejemplo: Con oReport:bEnd se pueden identificar //ok Con oReport:bPostEnd se pueden identificar //ok Con if oReport:lCreated NO se pueden identificar // las muestra, todas, con nTotal en 0 El caso es que se necesita ...
by FranciscoA
Sat Apr 05, 2014 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Capturar nTotal de columnas en TReport
Replies: 3
Views: 553

Re: xBrowse ERROR

... clause, because the window and browse objects are still active. When we are using MDICHILD windows, the best place to close DBF is inside the oWin:bPostEnd codeblock. This codeblock is evaluated after the window is closed (and all controls are destroyed) Please close the DBF in the oWin:bPostEnd ...
by nageswaragunupudi
Fri Mar 14, 2014 11:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ERROR
Replies: 14
Views: 2150

Re: xBrowse con Tdatabase mal en 1307

... clause. 1) MODAL DIALOG ( in your example ) and MAIN WINDOWs Close data after dialog exits. ACTIVATE DIALOG ....... oDbf:Close() 2) MDICHILD oWnd:bPostEnd := { || oDbf:Close() } // This is executed after the window is closed. 3) NON-MODAL DIALOGS AND WINDOWS (other than main window and other than ...
by nageswaragunupudi
Sat Oct 19, 2013 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse con Tdatabase mal en 1307 - Solucionado
Replies: 9
Views: 3319
Next

Return to advanced search