Search found 117 matches: bstart

Return to advanced search

Re: Progress Bars, no funciona correctamente (Solucionado)

... 100 e não 116 @ 2, 2 METER oProg1 VAR nActual TOTAL nTotal OF oDlg SIZE 200, 20 @ 3, 9 BUTTON "Ok" ACTION oDlg:End() oDlg:bStart = { || Increase( oProg1, nTotal ) } ACTIVATE DIALOG oDlg CENTER return nil function Increase( oProg1 , nTotal ) local n := 0 oProg1:nTotal := ...
by marca
Tue Jul 29, 2014 6:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Progress Bars, no funciona correctamente (Solucionado)
Replies: 27
Views: 5712

Re: Progress Bars, no funciona correctamente (Solucionado)

... Bars" @ 1, 1 PROGRESS oProg1 SIZE 80, 12 @ 1, 20 PROGRESS oProg2 SIZE 12, 50 VERTICAL @ 3, 9 BUTTON "Ok" ACTION oDlg:End() oDlg:bStart = { || Increase( oProg1, oProg2 , nTotal ) } ACTIVATE DIALOG oDlg CENTER ; ON INIT ( oProg1:SetRange( 0, nTotal ), oProg1:SetStep( 1 ),; oProg2:SetRange( ...
by marca
Fri Jul 25, 2014 12:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Progress Bars, no funciona correctamente (Solucionado)
Replies: 27
Views: 5712

Re: Progress Bars, no funciona correctamente.

... Bars" @ 1, 1 PROGRESS oProg1 SIZE 80, 12 @ 1, 20 PROGRESS oProg2 SIZE 12, 50 VERTICAL @ 3, 9 BUTTON "Ok" ACTION oDlg:End() oDlg:bStart = { || Increase( oProg1, oProg2 , nTotal ) } ACTIVATE DIALOG oDlg CENTER ; ON INIT ( oProg1:SetRange( 0, nTotal ), oProg1:SetStep( 1 ),; oProg2:SetRange( ...
by marca
Tue Jul 22, 2014 10:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Progress Bars, no funciona correctamente (Solucionado)
Replies: 27
Views: 5712

Re: GIF en proceso automático

function Animate(nTip,bAction) local oDlg, oAnimate define dialog oDlg resource 'PLAYANIMATE' oAnimate := TAnimate():Redefine( 160, oDlg ) oDlg:bStart := {|| Eval( bAction, odlg ), oDlg:End(), SysRefresh() } oDlg:lhelpicon := .f. activate dialog oDlg centered on init(if(nTip=1,oAnimate:copyfiles(),; ...
by MGA
Mon Mar 24, 2014 4:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GIF en proceso automático
Replies: 6
Views: 1269

CTRL+C minusculo e CTRL+V em GET "@!"

... /* */ Local oDlg, bAction bAction := {|| WaitSeconds( 0.02 ) } define dialog odlg ; from 0,0 to 0,0 ; style nOr( DS_MODALFRAME, WS_POPUP ) oDlg:bStart := {|| Eval( bAction, oDlg ), oDlg:End(), SysRefresh() } activate dialog odlg on init(oDlg:hide()) return nil
by MGA
Mon Dec 23, 2013 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CTRL+C minusculo e CTRL+V em GET "@!"
Replies: 3
Views: 794

Re: descomprimir archivo zip

... de datos..." @ 0.5, 2 SAY oText VAR cMsg SIZE 180, 20 OF oDlg @ 2, 2 METER oMeter VAR nActual TOTAL 100 OF oDlg SIZE 200, 20 oDlg:bStart:={||lVal:=Hb_UnZipFile(cFile,{|cFile,nPos|oText:SetText("Descomprimiendo"+CRLF+cFile),; nActual:=nPos/nFiles*100,oMeter:Set(nActual)},.T.,,cPathDescarga,aFiles,NIL ...
by LuisPonce
Wed Jun 05, 2013 5:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: descomprimir archivo zip
Replies: 4
Views: 994

Re: Strange behavior of TGet

Hakan,

Not yet. The only solution by now is to create the GETs not from the ON INIT clause of the dialog.

In example, you could create them from:
oDlg:bStart = { || CreateGets() }
by Antonio Linares
Mon Apr 15, 2013 10:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange behavior of TGet
Replies: 13
Views: 3912

Re: ERROR EN TESTUZIP.PRG

... reuniendo archivos..." @ 0.5, 2 SAY oText VAR cMsg SIZE 180, 20 OF oDlg @ 2, 2 METER oMeter VAR nActual TOTAL 100 OF oDlg SIZE 200, 20 oDlg:bStart:={||lVal:=Hb_ZIPFILE(cFile,aFile, 9,{|cFile,nPos|oText:SetText("Comprimiendo "+cFile),; nActual:=nPos/nLen*100,oMeter:Set(nActual)} ...
by LuisPonce
Sat Apr 13, 2013 4:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR EN TESTUZIP.PRG
Replies: 6
Views: 1195

Re: Code is executing after ACTIVATE WINDOW

Shridhar,

I am not sure about what you want to do exactly, but maybe you could use oWnd:bStart that is executed just once, when the window is initially shown
by Antonio Linares
Sun Dec 23, 2012 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Code is executing after ACTIVATE WINDOW
Replies: 10
Views: 1355

Sugerencia

... principal a la vista, como por ejemplo presentar una clave de acceso, una petición de datos iniciales, etc. Normalment utilizo el CodBlock bStart de TDIALOG, pero tiene el inconveniente de que está situado antes de evaluar el bPainted con lo que nuestra pantalla principal, si tenía dibujado ...
by antolin
Fri May 11, 2012 11:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Sugerencia
Replies: 1
Views: 594

exe run's from xmate , not stand alone

... line , the aplication freezes on the paint clausule from the main window : ACTIVATE WINDOW oWnd MAXIMIZED ; ON INIT ( Start_Hen(DataDir , oWnd , bStart ) ) ; /* ON PAINT ( BmpTiled( hDC , oBmpTiled ),; PalBmpDraw( hDC,; ( oWnd:nHeight() / 2 ) - ( oBmp:nHeight() / 2 ) - 50,; ( oWnd:nWidth() / ...
by Demont Brecht
Tue Mar 20, 2012 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: exe run's from xmate , not stand alone
Replies: 3
Views: 1092

Re: Mac /crystle dialog ?

Antonio,
skin1,skin2.exe all are ok.
but mine app dialog seems only a blink after add oDlg:bStart := {|| oSkin := Skin( oDlg, "Blue_skin" ) } .
TKS!
Shuming Wang
by ShumingWang
Tue Dec 20, 2011 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mac /crystle dialog ?
Replies: 4
Views: 801

LISTBOX KEYDOWN

... oLbxLista:SetColor(RGB(0,0,0),RGB(242,244,255)) // oSay1:SetFont(oSayFnt1) oLbxLista:SetFont(oFntLista) oLbxLista:SetItems(aLista) oDlgSitef:bStart:={|| oLbxLista:SetFocus() } ACTIVATE DIALOG oDlgSitef CENTERED resource: OPERACOES_SITEF_ADM DIALOG 281, 43, 310, 302 STYLE DS_MODALFRAME | WS_POPUP ...
by gss200610
Mon Nov 21, 2011 3:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LISTBOX KEYDOWN
Replies: 0
Views: 588

msgrun - possível FIX?!

... WS_POPUP ) ELSE DEFINE DIALOG oDlg ; FROM 0,0 TO 4, Max( Len( cCaption ), Len( cTitle ) ) + 4 ; TITLE cTitle ; STYLE DS_MODALFRAME ENDIF oDlg:bStart := { || Eval( bAction, oDlg ), oDlg:End(), SysRefresh() } oDlg:cMsg := cCaption nWidth := oDlg:nRight - oDlg:nLeft setdialogesc(.f.) //AQUI Possivel ...
by MGA
Thu Sep 08, 2011 2:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: msgrun - possível FIX?!
Replies: 0
Views: 497

Re: Multiline get

Try putting oGet03:GoBottom() in the INIT clause or in the bStart codeblock of the dialog.

EMG
by Enrico Maria Giordano
Wed Aug 24, 2011 8:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiline get
Replies: 3
Views: 684
PreviousNext

Return to advanced search