Search found 58 matches: odialog

Return to advanced search

TGif

... existe alguma forma de manter o gif animado enquanto se executa as ações? Ex.: bAcao = { || oOBjeto := oTeste:ReQuery() } na rotina DEFINE DIALOG oDialog NOWAIT CENTERED ; ON INIT TGif( oDialog, "meter.gif",0,0,,,,, bAcao) Att., Oliveiros Junior
by oliveiros junior
Thu Nov 09, 2017 11:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TGif
Replies: 16
Views: 3262

Scripts y recursos

... de su DLL, pero no me funciona. Os dejo el ejemplo q estoy montando. #include "FiveWin.Ch" function ImportarPedidosProveedor() local oDialog msgalert( SetResources( "Test.Dll" ) ) DEFINE DIALOG oDialog RESOURCE "GETSERIE" REDEFINE BUTTON ; ID IDOK ; OF oDialog ...
by manuelcalerosolis
Thu Mar 30, 2017 7:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Scripts y recursos
Replies: 3
Views: 485

Re: Una Matriz de Botones

Saludos Tuve que hacer algo asi y me funciono, que te expongo en tu ejemplo: [code} FUNCTION build_pages( oFolder ) LOCAL oDialog FOR J := 1 TO LEN( oFolder:aPrompts ) DEFINE DIALOG oDialog OF oFolder STYLE NOR( WS_VISIBLE, WS_DLGFRAME, WS_CHILD) TRANSPARENT FOR I := 1 TO LEN(oBtn) ...
by noe aburto
Fri Mar 25, 2016 7:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una Matriz de Botones (SOLUCIONADO)
Replies: 8
Views: 2288

Re: dialogo o ventana pantalla completa

... on init(ConfiguraDialogPrincipal(odlg)) ; VALID MsgYesNo( "Do you want to end ?" ) return nil static procedure ConfiguraDialogPrincipal( oDialog ) oDialog:maximize() oDialog:center() return
by MGA
Fri Jan 29, 2016 3:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: dialogo o ventana pantalla completa
Replies: 12
Views: 1278

Re: Fwh13.9 para fwh1507 error

... c:\teste\CorrecaoDeNotas.prg(171) Error E0022 Invalid lvalue: ':' linha 171: redefine get hInput['nFilial'] var oRegistroDaNota:CodFil() id 116 of oDialog when .f. alguém já passou por isso? Intenta asi redefine get hInput['nFilial']       var &(oRegistroDaNota:CodFil()) ...
by cnavarro
Tue Sep 08, 2015 8:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fwh13.9 para fwh1507 error
Replies: 4
Views: 500

Fwh13.9 para fwh1507 error

... c:\teste\CorrecaoDeNotas.prg(171) Error E0022 Invalid lvalue: ':' linha 171: redefine get hInput['nFilial'] var oRegistroDaNota:CodFil() id 116 of oDialog when .f. alguém já passou por isso?
by MGA
Tue Sep 08, 2015 7:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fwh13.9 para fwh1507 error
Replies: 4
Views: 500

Re: porque no me hace transparente el xbrowse?

tenho um xbrowse transparente com o seguinte código: Redefine xBrowse oBrw3 id 103 of oDialog update obrw3:SetArray(aTeste3) oBrw3:nStretchCol := STRETCHCOL_LAST oBrw3:nRowDividerStyle := LINESTYLE_RAISED oBrw3:nColDividerStyle := LINESTYLE_RAISED oBrw3:nMarqueeStyle ...
by MGA
Tue Oct 14, 2014 8:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: porque no me hace transparente el xbrowse?
Replies: 5
Views: 677

Re: Make a dialog never lost focus

Are you using STYLE DS_SYSMODAL to create it ? Yes. I only change: Define dialog oDialog resource "SELECIONADEBCRE" title "Gerenciador TEF -- PAGAMENTO" font oFonte to Define dialog oDialog resource "SELECIONADEBCRE" title "Gerenciador ...
by Francisco Valério
Mon Aug 04, 2014 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Make a dialog never lost focus
Replies: 16
Views: 3072

xbrowse - SQLRDD error

FWH1308 R_3: define dialog oDialog resource 'BROWSEINFOADICIONAIS' redefine xbrowse oBrowse id 4000 of oDialog datasource 'tabiad' ... Application =========== Path and name: C:\BASE\getpdv.exe (32 bits) Size: ********* bytes Compiler version: ...
by MGA
Fri Sep 27, 2013 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse - SQLRDD error
Replies: 10
Views: 2432

Re: BITMAP

... modificada a mis necesidades... BlurEffect( oDIALOG, nTimes, lForWard, WinXp) oDialog == objeto a pintar vidrio opaco //dialogo, ventana, boton, foto, etc... nTimes == Veces a ser pintado para ...
by Bayron
Tue Mar 19, 2013 3:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: BITMAP
Replies: 4
Views: 674

Re: Skinbuttons in Win8 not activ!?

Antonio,
if I close a child-dialog from parent-dialog with a button-action oDialog_child:end() this "oDialog_child" are closed but the button fires on some cases double and a error-message appears. (oDialog_child is in the meanwhile NIL and cannot ended)
by byte-one
Mon Mar 04, 2013 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Skinbuttons in Win8 not activ!?
Replies: 13
Views: 1609

Re: Question about control tab order

Also, as controls are kept in oDialog:aControls, it may also be required to swap their order there:

oPrev = oDialog:aControls[ n ]
oNext = oDialog:aControls[ n + 1 ]

oDialog:aControls[ n ] = oNext
oDialog:aControls[ n + 1 ] = oPrev
by Antonio Linares
Fri May 04, 2012 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about control tab order
Replies: 4
Views: 956

Draw line on TGraph

... to figure out how to draw a line on a graph created with TGraph. I am using the drawLine() method and have tried calling it from oGraph:bInit, oDialog:bInit, and from a button after the graph has been drawn. None of these methods results in a line. Here is an example: @ 0,30 button "Line" ...
by James Bott
Sat Oct 15, 2011 12:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw line on TGraph
Replies: 3
Views: 811

Re: Blur effect!!! ::FiveTech

... servir para las opciones del GetSysMetrics http://msdn.microsoft.com/en-us/library/windows/desktop/ms724385(v=vs.85).aspx oDialog es la ventana principal y retorno Function BlurEffect( oDialog )  LOCAL hBmp, i  LOCAL hBlur  LOCAL oWnd    ...
by Daniel Garcia-Gil
Fri Sep 30, 2011 8:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Blur effect!!! /// RibbonBar ::FiveTech
Replies: 15
Views: 4211

Dialog Coordinates

... and I just want to know if there is something special about Dialogs that I need to know to make my calculations??? EDITED1: I tested msginfo( oDialog:nwidth ) and It returned the right coordinates in pixels... It seems that the size of the dialog is right, but the size and position of the ...
by Bayron
Sun Sep 18, 2011 3:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog Coordinates
Replies: 14
Views: 4463
PreviousNext

Return to advanced search