Search found 195 matches: constructor

Return to advanced search

Re: Classes inheritance. How to ?

... return NIL Can you build a little real (compilable) sample of the problem? Questions: Al the CL1 methods are avaiable in CL2 ? Yes. Do I need a constructor/destructor method or the CL1 one is used ? Yes, you need of a constructor. EMG
by Enrico Maria Giordano
Fri May 12, 2006 10:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Classes inheritance. How to ?
Replies: 17
Views: 5865

Re: Classes inheritance. How to ?

... CL1 METHOD PrintCl() ENDCLASS METHOD PrintCl() class CL2 alert("CL2") return NIL Questions: Al the CL1 methods are avaiable in CL2 ? Do I need a constructor/destructor method or the CL1 one is used ? [[]] Maurício Faria Don't forget to add: CLASSDATA lRegistered AS LOGICAL
by Gale FORd
Fri May 12, 2006 9:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Classes inheritance. How to ?
Replies: 17
Views: 5865

Classes inheritance. How to ?

... CL1 METHOD PrintCl() ENDCLASS METHOD PrintCl() class CL2 alert("CL2") return NIL Questions: Al the CL1 methods are avaiable in CL2 ? Do I need a constructor/destructor method or the CL1 one is used ? [[]] Maurício Faria
by concentra
Fri May 12, 2006 7:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Classes inheritance. How to ?
Replies: 17
Views: 5865

... CLASS TGroup FROM TControl METHOD New( nTop, nLeft, nBottom, nRight, cLabel, oWnd, nClrText,; nClrPane, lPixel, lDesign, oFont, lTransparent ) CONSTRUCTOR METHOD ReDefine( nId, cLabel, oWnd, nClrText, nClrPane, oFont, lTransparent ) CONSTRUCTOR METHOD cToChar() INLINE Super:cToChar( "BUTTON" ...
by karinha
Mon Mar 27, 2006 8:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Message not found: TSAY:LTRANSPARENT
Replies: 21
Views: 6376

... AS NUMERIC // Handle of the DLL DATA lLoad AS LOGICAL // .T. DLL & Driver Loaded DATA hDib AS NUMERIC // Current Dib handle * METHOD New() CONSTRUCTOR METHOD End() METHOD Set() // Acquiring Dialog ON/OFF METHOD Choose() // Select Image Device Source METHOD DigiToFile() // Acquire Image ...
by George
Sat Mar 25, 2006 2:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Scanner
Replies: 5
Views: 1925

... aDatos, aLocal, aMeses, aAnos, aCmb, aTurnos DATA cMes, cAno, cLocal, cTurnos, cMesano DATA lBrw, lRbt METHOD Open() METHOD Init() METHOD New() Constructor METHOD Close() INLINE AEval( ::aDbf, { |oDbf| oDbf:Close) } ), .T. METHOD Agregar() METHOD Pos() METHOD Valid() METHOD Datos() ENDCLASS ...
by un_jeepero
Sat Mar 18, 2006 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se cuelga la app con array
Replies: 13
Views: 4570

... CLASS TInvoice FROM TControl CLASSDATA lRegistered AS LOGICAL METHOD New( nTop, nLeft, nBottom, nRight, oWnd ) CONSTRUCTOR METHOD IVHeader() METHOD IVBody() METHOD IVFooter() METHOD IVClear() METHOD IVSay() METHOD IVBox() METHOD IVLine() ENDCLASS //----------------------------------------------------------------------------// ...
by Otto
Thu Mar 02, 2006 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BOX change color how?
Replies: 6
Views: 1511

... oCursor, lPixel,; cMsg, lUpdate, bWhen, lCenter, lRight, bChanged,; lReadOnly, lPassword, lNoBorder, nHelpId,; lSpinner, bUp, bDown, bMin, bMax ) CONSTRUCTOR METHOD Assign() INLINE ::oGet:Assign() regards Eugeniusz
by Eugeniusz Owsiak
Fri Feb 03, 2006 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oGet:nClrDef in FW27
Replies: 4
Views: 1015

Que DLL's necesita Crystal Report

... // // 16 & 32 Bit Wrapper Classes for Crystal Reports gives you access to // Crystal Reports 32Bit Dll. The class constructor automatically checks if // 32Bit Dll's are available, and falls back to 16Bit if not. // Thanks to Matthew Cullen/Adsystems for his help ...
by gsabattino
Thu Feb 02, 2006 12:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Que DLL's necesita Crystal Report
Replies: 5
Views: 1623

... cTitle Init SISTEMA Data lYaEmpre Init .F. Data oMenu Data aEmpresas Data aDir Data aCaminos Data aPerms Init Array(100) Data oFont Method New() Constructor Method MakeMenu() Method Activate() Method Timer ( oWnd ) Method Timer1( oWnd ) Method PongaElTree(oSay) METHOD MyClick(nRow, nCol, oTree) ...
by wilsongamboa
Mon Jan 23, 2006 1:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Menu en tiempo de ejecucion
Replies: 8
Views: 2276

... CLASS TOleAuto DATA hObj DATA cClassName METHOD New( uObj, cClass ) CONSTRUCTOR METHOD GetActiveObject( cClass ) CONSTRUCTOR METHOD Invoke() MESSAGE Set METHOD Invoke() MESSAGE Get METHOD Invoke() METHOD Collection( ...
by ask
Tue Dec 27, 2005 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from within FWH25?
Replies: 29
Views: 13926

Tscan class

... CLASS TSCAN32 DATA hWnd DATA cFile DATA hDib DATA lError INIT .F. DATA nState METHOD New( cFile, hWnd ) CONSTRUCTOR METHOD End() METHOD Register() MESSAGE FreeNative METHOD End() MESSAGE Close METHOD End() METHOD DigiToFile( cFile ) METHOD DibToJpeg( cFile ...
by dutch
Mon Dec 05, 2005 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: link error while compile testscan.prg and tscan.prg
Replies: 13
Views: 6025

... con los comando cuando pretendes hacerlos trabajar dentro de ciclos y cosas asi. Lo que tienes que hacer es trabajar directamente con el metodo constructor de la clase, este metodo constructor recibe como parametro un bloque de codigo que es el que se encarga de pintar la cabecera, el problema ...
by R.F.
Tue Nov 29, 2005 2:41 am
 
Forum: FiveWin para CA-Clipper
Topic: No consigo un "atached"
Replies: 5
Views: 1653

Duda sobre Herencia de Classes, no hereda valores en DATA

... ) // Despliega "U" o variable no definida RETURN NIL //-------------------------------- CLASS TPrincipal DATA lIngreso DATA cVersion METHOD New CONSTRUCTOR METHOD Hola ENDCLASS //-------------------------------- METHOD New() CLASS TPrincipal ::lIngreso := .f. ::cVersion := "Versión 1.0.1" RETURN ...
by Carlos Sincuir
Mon Nov 28, 2005 3:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda sobre Herencia de Classes, no hereda valores en DATA
Replies: 4
Views: 1140

... CLASS TSCAN32 DATA hWnd DATA cFile DATA hDib DATA lError INIT .F. DATA nState METHOD New( cFile, hWnd ) CONSTRUCTOR METHOD End() METHOD Register() MESSAGE FreeNative METHOD End() MESSAGE Close METHOD End() METHOD DigiToFile( cFile ) METHOD DibToJpeg( cFile ...
by juanito
Thu Nov 24, 2005 2:31 pm
 
Forum: All products support
Topic: Problemi nella conversione bmp->jpg utilizzando libgfl
Replies: 12
Views: 6396
Previous

Return to advanced search