Search found 60 matches: setget

Return to advanced search

New FTDN February/Febrero 2010 (10.2)

... * ::Rate }, 'N', 14, 2 ) --> nColPos Now, oDbf:SaleAmt gives the product of quantity and rate. In the above example, the codeblock is readonly. SETGET codeblocks also can be specified like, { |Self,x| If( x != nil, ::Rate := x / ::Quantity ), ::Quantity * ::Rate } If this codeblock is specifed, ...
by Antonio Linares
Thu Feb 25, 2010 10:00 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2010 (10.2)
Replies: 4
Views: 3858

Re: change font after creation

... New Roman" SIZE 15, 9 OF oPrn oPrn:Say(..., oFont) etc. many times in the class tfont there are 2 function: METHOD nWidth( nNewValue ) SETGET METHOD nHeight( nNewValue ) SETGET oFont:nWidth( 15 ); oFont:nHeight( 9 ) but this doesn't work. oFont:End() with the definition of a new font ...
by marzio
Fri Feb 12, 2010 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change font after creation
Replies: 4
Views: 1085

New FTDN December/Diciembre 2009 (9.12)

... fixed runtime error in some cases. * New: samples\xbrwin7.prg shows how to use Windows 7 selected row colors in xbrowse. * New: Class TXBrwColumn SETGET method nWidthChr. Width of column in number of characters. Used to provide appropriate size of columns to Report method. * Improved: Class TXBrowse: ...
by Antonio Linares
Sun Dec 27, 2009 9:39 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2009 (9.12)
Replies: 0
Views: 2598

Re: New FTDN August/Agosto 2009 (9.08)

... para establecer el color en el texto de la pestaña, tipo de dto numérico o bloque de código. Se ha sustituido la DATA nSeparation con el método SetGet, podemos cambiar dinámicamente la separación de las pestañas. * Corrección: Soporte para tooltips en la clase TRBtn. Los botones de las barras ...
by Antonio Linares
Wed Aug 26, 2009 6:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2009 (9.08)
Replies: 1
Views: 1709

New FTDN August/Agosto 2009 (9.08)

... ribbonbar now. New DATA ::aClrTabTxt, used to set text color on text tabs, data type numeric or codeblock. Replaced DATA nSeparation with method setget, we can dinamically change tab separation now. * Fix: Class TRBtn tooltip support. Toobar buttons now support tooltips. * Fix: Class TTitle text ...
by Antonio Linares
Tue Aug 25, 2009 10:24 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2009 (9.08)
Replies: 1
Views: 1709

Re: change the size of a bitmap

... nY := 1 nX := 1 @ 5, 5 say "Fila" OF oApp:oPanel PIXEL SIZE BMP_H,BMP_V For nY := 1 to TOTY oGet[ nY ] := tget():new(nRow, nCol-BMP_V, SetGet( nY ), oApp:oPanel, BMP_H, BMP_V, "99",,,,,,,.t. ) oGet[ nY ]:lReadOnly:=.t. For nX := 1 To TOTX @ nrow, ncol BITMAP aBmps[ nY, nX ...
by Silvio
Mon Aug 10, 2009 7:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change the size of a bitmap
Replies: 8
Views: 1798

Re: New FTDN May/Mayo 2009 (9.05)

... que se está mostrando. - El pegado se hace mediante la evaluación de oCol:bEditValue con el nuevo valor y funciona cuando bEditValue es un bloque setget ( Los bloques por defecto proporcionados automáticamente por TXBrowse son bloques setget ). bEditValid y nEditType son ignorados. En caso de ...
by Antonio Linares
Thu Jun 11, 2009 7:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2009 (9.05)
Replies: 10
Views: 4715

New FTDN May/Mayo 2009 (9.05)

... data from Excel to the array being browsed. - Pasting is done by evaluating oCol:bEditValue with the new value and works when bEditValue is a setget block ( Default blocks provided by TXBrowe automatically are setget blocks). bEditValid and nEditType are ignored. In case of tables opened in ...
by Antonio Linares
Sat Jun 06, 2009 8:44 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2009 (9.05)
Replies: 10
Views: 4715

Re: New FTDN April/Abril 2009 (9.04)

... de código para establecer el nivel de transparencia de canal Alpha sobre la celda. -Nuevo método en TXBrwColumn METHOD nAlphaLevel( nLevel ) SETGET -- Establece el nivel de transparencia de canal Alpha. * Corrección: Clase TRadio se ha eliminado la inicialización por defecto de nHelpID a ...
by Antonio Linares
Fri Apr 10, 2009 6:12 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2009 (9.04)
Replies: 6
Views: 3701

New FTDN April/Abril 2009 (9.04)

... Level over Footer bAlphaLevel Code Block to Set Alpha Channel Tranparence Level over cell - New TXBrwColumn Method METHOD nAlphaLevel( nLevel ) SETGET Set Alpha Channel Tranparence Level * Fix: Class TRadio removed default initialization for nHelpID to 100. It was not needed. * New: FiveHX.lib ...
by Antonio Linares
Fri Apr 10, 2009 1:20 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2009 (9.04)
Replies: 6
Views: 3701

Re: FWH 8.12 Font.prg _DEFAULT_CHARSET_

Hakan, Instead of a #define, a SetGet function should be required: function SetCharSet( nNewCharSet ) local nOldCharSet static nCharSet := _DEFAULT_CHARSET_ nOldCharSet = nCharSet if nNewCharSet != nil nCharSet = nNewCharSet else nCharSet ...
by Antonio Linares
Sat Jan 03, 2009 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 8.12 Font.prg _DEFAULT_CHARSET_
Replies: 5
Views: 1134

A SETGET Method in fact creates two Methods:
METHOD Test( u ) SETGET

creates:

METHOD Test() // to retrieve a value

and

METHOD _Test( u ) // to set a value

When we do:
o:Test := value

Clipper, Harbour and xHarbour do this:
o:_Test( value ) // assignment
by Antonio Linares
Sat Nov 15, 2008 1:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Method Setget in classes
Replies: 1
Views: 574

Method Setget in classes

Hello, how to create a method SETGET in classes without error??!! I declared the method below: METHOD FieldName(cFieldName, uValue) SETGET and the function below: **************************************************************************** ...
by Anderson.OL
Thu Nov 13, 2008 12:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Method Setget in classes
Replies: 1
Views: 574

Método Setget em classes

Olá, como criar um método SETGET em classes sem gerar erro??!! Declarei o método da seguinte maneira: METHOD FieldName(cFieldName, uValue) SETGET e a função ficou da seguinte maneira: **************************************************************************** ...
by Anderson.OL
Thu Nov 13, 2008 11:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Método Setget em classes
Replies: 1
Views: 466

Re: bBookMark

Thank´s Hola. Que hace el metodo bBookMark en xbrowse? Gracias. bBookMark,; // SETGET codeblock to be used for bookmarking a specific row ; // When no parameter is passed it should return a bookamark value ; // When a parameter is passed should return to that bookmark ...
by goosfancito
Sun Sep 21, 2008 8:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: bBookMark
Replies: 4
Views: 831
PreviousNext

Return to advanced search