... 3,"name":"John Kocinsky","abr":"JK"}]' );
_ringo.SetData( aRows );
})
</script>
y dice que hubo un error aca:
//console.trace()
if ( lInit ) {
this.Init( aData )
} else { // Instancia
oBrowse = $('#' + this.cId )
oBrowse.bootstrapTable( { ignoreClickToSelectOn ...
Search found 15 matches: linit
Searched query: linit
- Wed Apr 14, 2021 8:51 pm
- Forum: mod_harbour
- Topic: Ayuda Mercury TWeb y TWebBrowse
- Replies: 3
- Views: 1590
- Tue Apr 18, 2017 12:49 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ejemplo de conexion a Eagle1
- Replies: 3
- Views: 1002
Ejemplo de conexion a Eagle1
... cDbName )
oMySql := TMSConnect():New()
// Nos conectamos al servidor
lRet := oMySql:Connect( cHost, cUser, cPassword, cDbName )
if oMySql:lInit
MsgInfo( "Inicializado...", "Hola" )
endif
if oMySql:Connect()
MsgInfo( "Conectado", "Hola" )
oMySql:CreateDB( "MiPrueba" )
oDb ...
oMySql := TMSConnect():New()
// Nos conectamos al servidor
lRet := oMySql:Connect( cHost, cUser, cPassword, cDbName )
if oMySql:lInit
MsgInfo( "Inicializado...", "Hola" )
endif
if oMySql:Connect()
MsgInfo( "Conectado", "Hola" )
oMySql:CreateDB( "MiPrueba" )
oDb ...
- Sun May 04, 2014 9:17 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL
- Replies: 3
- Views: 481
Re: 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL
Sistem wrote:rpreview.prg linha 1477
if ! ::lZoom .and. ! lInit
// ::Zoom( .T. ) // anular esta line
endif esta linha
Muchísimas gracias, funcionó perfecto.
- Sat May 03, 2014 11:58 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL
- Replies: 3
- Views: 481
Re: 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL
rpreview.prg linha 1477
if ! ::lZoom .and. ! lInit
// ::Zoom( .T. ) // anular esta line
endif esta linha
if ! ::lZoom .and. ! lInit
// ::Zoom( .T. ) // anular esta line
endif esta linha
- Fri Aug 23, 2013 2:24 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: several minor bugs FWH 13.07
- Replies: 10
- Views: 2562
Re: several minor bugs FWH 13.07
... prg nos lo arreglaste así en el método Setfactor de rpreview.prg
::oMeta1:SetZoomFactor( ::nZFactor, ::nZFactor * 2 )
if !::lZoom .and. ! lInit
::Zoom( .T. ) // A.L. 08 Oct 2007
endif
if ::lZoom
::oWnd:oVScroll:SetRange( 1, VSCROLL_RANGE )
if ::nZFactor > 1
::oWnd:oHScroll:SetRange( 1 ...
::oMeta1:SetZoomFactor( ::nZFactor, ::nZFactor * 2 )
if !::lZoom .and. ! lInit
::Zoom( .T. ) // A.L. 08 Oct 2007
endif
if ::lZoom
::oWnd:oVScroll:SetRange( 1, VSCROLL_RANGE )
if ::nZFactor > 1
::oWnd:oHScroll:SetRange( 1 ...
- Wed Apr 06, 2011 9:44 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Logo en ventana con areas transparentes (Solucionado)
- Replies: 8
- Views: 2561
Re: Logo en ventana principal con areas transparentes
... definidos.
RETURN( NIL )
STAT FUNC Refr_Bmp(hDC,oBmp)
LOCAL aRect, hWnd, nColor:=255
LOCAL oBrush, nSteps, nI,n
local nBlue := 200
IF lInit
aRect:=GetCoors(GetDeskTopWindow()) // Coordenadas de ventana
IF aRect[3]>=768 // si > 600x800 la centra
aRect[1]:=(aRect[3]-580)/2
aRect[2 ...
RETURN( NIL )
STAT FUNC Refr_Bmp(hDC,oBmp)
LOCAL aRect, hWnd, nColor:=255
LOCAL oBrush, nSteps, nI,n
local nBlue := 200
IF lInit
aRect:=GetCoors(GetDeskTopWindow()) // Coordenadas de ventana
IF aRect[3]>=768 // si > 600x800 la centra
aRect[1]:=(aRect[3]-580)/2
aRect[2 ...
- Thu Jan 14, 2010 10:08 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: preview alpha 2
- Replies: 2
- Views: 2173
Re: preview alpha 2
... return nil
//----------------------------------------------------------------------------//
METHOD SetFactor( nValue ) CLASS TPreview
local lInit := .F.
if nValue == nil .and. ::oWnd:oMenu != nil
AEval( ::aFactor, { | v, e | v:nHelpId := e } )
nValue := ::nZFactor
lInit := .T.
endif ...
//----------------------------------------------------------------------------//
METHOD SetFactor( nValue ) CLASS TPreview
local lInit := .F.
if nValue == nil .and. ::oWnd:oMenu != nil
AEval( ::aFactor, { | v, e | v:nHelpId := e } )
nValue := ::nZFactor
lInit := .T.
endif ...
- Tue Nov 24, 2009 11:29 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: GetPrintDC()
- Replies: 4
- Views: 2952
Re: GetPrintDC()
... endif
return nil
//----------------------------------------------------------------------------//
static function SetFactor( nValue )
local lInit := .F.
if nValue == nil
Aeval(aFactor, {|v,e| v:nHelpId := e})
nValue := nZFactor
lInit := .T.
endif
Aeval(aFactor, {|val,elem| val:SetCheck ...
return nil
//----------------------------------------------------------------------------//
static function SetFactor( nValue )
local lInit := .F.
if nValue == nil
Aeval(aFactor, {|v,e| v:nHelpId := e})
nValue := nZFactor
lInit := .T.
endif
Aeval(aFactor, {|val,elem| val:SetCheck ...
- Sun Aug 30, 2009 12:29 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Pequeño aporte al FORO clase RPREVIEW
- Replies: 13
- Views: 3095
Re: Pequeño aporte al FORO clase RPREVIEW
... device" , "" ) //FranciscoA
METHOD BuildMenu() CLASS TPreview
local oFactor //FranciscoA
METHOD SetFactor( nValue ) CLASS TPreview
Local lInit := .F.,n
if nValue == nil .and. ::oWnd:oMenu != nil
AEval( ::aFactor, { | v, e | v:nHelpId := e } )
nValue := ::nZFactor
lInit := .T.
endif ...
METHOD BuildMenu() CLASS TPreview
local oFactor //FranciscoA
METHOD SetFactor( nValue ) CLASS TPreview
Local lInit := .F.,n
if nValue == nil .and. ::oWnd:oMenu != nil
AEval( ::aFactor, { | v, e | v:nHelpId := e } )
nValue := ::nZFactor
lInit := .T.
endif ...
- Wed Aug 26, 2009 3:11 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Modificación a Clase RPreview
- Replies: 12
- Views: 2728
Re: Modificación a Clase RPreview
METHOD SetFactor( nValue ) CLASS TPreview
local n, lInit := .f.
< other code >
n :- 1 + ( nValue - 1 ) * 0.1
::oMeta1:SetZoomFactor( n, 2 * n )
< other code >
return nil
local n, lInit := .f.
< other code >
n :- 1 + ( nValue - 1 ) * 0.1
::oMeta1:SetZoomFactor( n, 2 * n )
< other code >
return nil
- Mon Sep 08, 2008 11:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: bChange
- Replies: 9
- Views: 6134
- Thu Feb 28, 2008 4:30 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: RPREVIEW modificada por Manuel Valdenebro ?
- Replies: 8
- Views: 3758
- Tue Oct 09, 2007 6:35 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Preview with fwh709
- Replies: 7
- Views: 1036
- Sat Jun 30, 2007 3:14 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: TGraph 2.0 de Alfredo Arteaga
- Replies: 16
- Views: 6769
TGraph 2.0 de Alfredo Arteaga
... FIVEWIN.CH"
#Include "TGRAPH.CH"
STATIC oGraph, oGlfGraph, aSerie, nTotal
STATIC aSers, aPers, nGraph, aValues, aVals
STATIC cFile, aItem, lInit, nRangoG
//----------------------------------------------------------------------------//
FUNCTION GrafVent()
nRangoG:= DAY(UltimoDia(DATE ...
#Include "TGRAPH.CH"
STATIC oGraph, oGlfGraph, aSerie, nTotal
STATIC aSers, aPers, nGraph, aValues, aVals
STATIC cFile, aItem, lInit, nRangoG
//----------------------------------------------------------------------------//
FUNCTION GrafVent()
nRangoG:= DAY(UltimoDia(DATE ...
- Sun Apr 01, 2007 2:51 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: ADSISSHARED,ADSISREADONLY,ISSHARED,ISREADONLY EN TDBFH
- Replies: 22
- Views: 7420