Search found 58 matches: odialog

Return to advanced search

Re: Blur effect!!!

Bayron
prueba colocar un sysrefresh() antes de empezar el proceso del blur


Andres
oDialog:refresh() sacalo del FOR/NEXT
by Daniel Garcia-Gil
Sun Sep 11, 2011 12:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Blur effect!!!
Replies: 5
Views: 890

Re: BorderEdit Release 1.2 => DOWNLOAD

Marco, That doesn't work. The Border-painting is designed, to work on any background. I can do a oDialog:Refresh(), to restore the original Background, but I prefer just to save / restore only the Background-area of the Control with Focus. As well it would be nice, to define ...
by ukoenig
Fri May 27, 2011 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BorderEdit Release 1.2 => DOWNLOAD
Replies: 6
Views: 1362

Erronea doble validacion

Hola, Me ocurre que el valid de un dialogo se ejecuta 2 veces: Una desde la llamada del oGet:KeyChar() y otra desde oDialog:Command(). No se si me explique ? Alguna vez lei sobre este o parecido problema, pero lo he buscado y no lo he encontrado; quiza la solucion estaba en el codigo ...
by hmpaquito
Wed May 25, 2011 3:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erronea doble validacion
Replies: 0
Views: 210

Re: Editar campos lógicos en Xbrowse

REDEFINE XBROWSE oBrw ID 4001 OF oDialog ARRAY aFras AUTOCOLS LINES CELL oBrw:nMarqueeStyle := 3 oBrw:nRowDividerStyle := LINESTYLE_BLACK oBrw:nColDividerStyle := LINESTYLE_BLACK oBrw:lColDividerComplete := .t. oBrw:lFastEdit := .T. oBrw:lAutoAppend ...
by Pedro
Tue Apr 05, 2011 3:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar campos lógicos en Xbrowse
Replies: 2
Views: 800

Re: Border around GET

I think that this solve your problem

nVar:=0

define dialog oDlg ....

redefine Get oGet Var nVar .... ON CHANGE validate( nVar, 100, oDlg )



function validate( nVar, nMax, oDialog )

if (nVar > nMax )

DRAWBOX....
else
oDialog:Refresh()
endif

return
return
by lailton.webmaster
Wed May 19, 2010 8:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Border around GET
Replies: 46
Views: 13710

Button Bars

... simple: DEFINE DIALOG oDlg ............... .... more statements come here....... .... ACTIVATE DIALOG oDlg ON INIT (DlgBar(oDlg)) Function DlgBar(oDialog) DEFINE BUTTON BAR oBar OF oDialog .... more button bar instructions come here .... ..... Return -------------------------------------------------------------------------------- ...
by Antonio Linares
Wed Aug 27, 2008 7:36 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65923

Silvio,

That behavior has to be implemented by the programer.

We don't know when the keyboard is going to be used, and what should be needed to be moved in the screen, to get a proper view.

You just need to change the oFolder:nTop value, or the oDialog:nTop value.
by Antonio Linares
Tue Aug 26, 2008 8:26 am
 
Forum: FiveWin for Pocket PC
Topic: folder bug
Replies: 10
Views: 2055

Darrell, What control has the focus when the key is pressed ? The key event will go to the focused control, and in the case that there is no a control, it will be routed to the window or dialog. Then you just need to implement: <oControl_or_oWindow_or_oDialog>:bKeyChar = { | nKey | ... your co...
by Antonio Linares
Mon Jun 23, 2008 7:40 am
 
Forum: FiveWin for Pocket PC
Topic: FWPPC and MC3000 scan button
Replies: 13
Views: 5603

Con stsay:

Por ejemplo:

redefine stsay ocartelx1 prompt evecar1 id 7003 of oDialog COLOR CLR_BLACK

... y para refrescar... debes ocultar y mostrar:
ocartelx1:hide() ; ocartelx1:show()

... y listo...

Un saludo.
LORENZO
by Loren
Mon May 26, 2008 7:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: say transparente en ventana
Replies: 12
Views: 2129

Frances,

You could try this:

if AScan( oDialog:aControls, { | o | Upper( o:ClassName() ) == "TGET" .and. o:oGet:changed .and. ( o:oGet:VarGet() != o:oGet:Original ) } ) != 0

MsgInfo( "Gets changed" )

endif
by Antonio Linares
Sat May 17, 2008 8:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Objects in Dialog
Replies: 6
Views: 1095

Re: Problema con bRClicked y con cTooltip con la clase SBUTT

... nRow, nCol ) } funct dblmenu( nRow, nCol) Local oMenu C5MENU oMenu POPUP c5menuitem 'prueba' C5ENDMENU ACTIVATE C5MENU oMenu AT nRow, nCol OF oDialog Return Cambia tu código: aforo[1]:bRClicked:={ |nRow, nCol, nFlags | dblmenu( nRow, nCol, aforo[1] ) } ...
by mmercado
Mon Feb 25, 2008 10:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con bRClicked y con cTooltip con la clase SBUTTON
Replies: 4
Views: 941

Problema con bRClicked y con cTooltip con la clase SBUTTON

... Dialog..... funct dblmenu( nRow, nCol) Local oMenu C5MENU oMenu POPUP c5menuitem 'prueba' C5ENDMENU ACTIVATE C5MENU oMenu AT nRow, nCol OF oDialog Return 2) En la clase TSBUTTON del Maestro Manuel Mercado, intento establecer un Tooltip en el sbutton, pero no me genera nada. Define Dialog.... ...
by Loren
Mon Feb 25, 2008 3:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con bRClicked y con cTooltip con la clase SBUTTON
Replies: 4
Views: 941

Menu pop-up junto al Raton al hacer bRClicked

... Dialog..... funct dblmenu( nRow, nCol) Local oMenu C5MENU oMenu POPUP c5menuitem 'prueba' C5ENDMENU ACTIVATE C5MENU oMenu AT nRow, nCol OF oDialog Return ------------------------- En otra aplicación lo tengo dentro de un Windows (y me funciona) y en este caso es dentro de un Dialog. ¿Será ...
by Loren
Sun Feb 24, 2008 9:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Menu pop-up junto al Raton al hacer bRClicked
Replies: 1
Views: 657

... el usuario puede crear sus propias presentaciones de botones. Luego defino los sbutton de las familias: REDEFINE SBUTTON obtnF[ 1] ID 4005 OF oDialog brush ofamilia NOBOXTR COLORS { |oBtnF| If( ! oBtnF:lActive, CLR_WHITE, If( oBtnF:lMouseOver, CLR_HRED, If( oBtnF:lPressed, CLR_HRED, CLR_WHITE ...
by Loren
Wed Jan 23, 2008 8:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Presumiendo un poco
Replies: 27
Views: 9389

Una sobre BRUSH

... Puedo cambiar el prompt pero no el Brush. Yo hago así: ... define brush oBrushF file 'Rojo.bmp' Define dialog... REDEFINE SBUTTON oBtn ID 4005 OF oDialog brush obrushF .... Activate dialog Y ahora hago: 1) Defino el nuevo brush: define brush oBrushF file 'verde.bmp' 2) Cambio de brush oBtn:SetBrush( ...
by Loren
Thu Jan 03, 2008 3:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una sobre BRUSH
Replies: 8
Views: 1642
PreviousNext

Return to advanced search