Search found 46 matches: ncols

Return to advanced search

Creating table with Trichedit

Using InsertTable( nRows, nCols )method of Trichedit
How insert data info on each cells?

For a sample I have an array aschema is 3 rows with 10 columns
How create a table on Rtf with this array ?
by Silvio.Falconi
Mon Jan 22, 2024 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1455

Re: New FTDN December/Diciembre 2020 (FWH 20.12)

... * Nueva clase FW_Matrix (para cálculos matriciales) CLASS FW_Matrix: DATAs de sólo lectura y métodos de acceso: DATA aMatrix READONLY DATA nRows, nCols READONLY ACCESS lSquare INLINE ( ::nRows == ::nCols ) ACCESS Determinant INLINE If( ::nRows == ::nCols, m_determinant( ::aMatrix ), 0 ) ACCESS ...
by Antonio Linares
Mon Dec 28, 2020 3:18 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 2552

New FTDN December/Diciembre 2020 (FWH 20.12)

... * New CLASS FW_Matrix (for matrix calculations) CLASS FW_Matrix: READ ONLY DATAS AND ACCESS METHODS: DATA aMatrix READONLY DATA nRows, nCols READONLY ACCESS lSquare INLINE ( ::nRows == ::nCols ) ACCESS Determinant INLINE If( ::nRows == ::nCols, m_determinant( ::aMatrix ), 0 ) ACCESS ...
by Antonio Linares
Mon Dec 28, 2020 10:16 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 2552

Re: FWH: Support for Matrix calculations

CLASS FW_Matrix: READ ONLY DATAS AND ACCESS METHODS: DATA aMatrix READONLY DATA nRows, nCols READONLY ACCESS lSquare INLINE ( ::nRows == ::nCols ) ACCESS Determinant INLINE If( ::nRows == ::nCols, m_determinant( ::aMatrix ), 0 ) ACCESS IsIdentity CONSTRUCTOR METHODS: ...
by nageswaragunupudi
Thu Dec 10, 2020 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Support for Matrix calculations
Replies: 3
Views: 720

Re: ¿ Se puede saber el rango de un archivo Excel ?

... tienes tu objeto de Excel, puedes usar estar instrucciones de Excel: nFils := oXls:oSheet:UsedRange:Rows:Count() //<--- No de Filas o registros nCols := oXls:oSheet:UsedRange:Columns:Count() //<--- No de Columas Yo lo utilizo, usando la clase TExcelScrip()    cFile := "C:\doctos\excel\doctoexcel.xls"  ...
by wyerco613
Tue Jul 30, 2019 10:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿ Se puede saber el rango de un archivo Excel ?
Replies: 8
Views: 1093

Re: ¿ Se puede saber el rango de un archivo Excel ?

... tienes tu objeto de Excel, puedes usar estar instrucciones de Excel: nFils := oXls:oSheet:UsedRange:Rows:Count() //<--- No de Filas o registros nCols := oXls:oSheet:UsedRange:Columns:Count() //<--- No de Columas Yo lo utilizo, usando la clase TExcelScrip()    cFile := "C:\doctos\excel\doctoexcel.xls"  ...
by csincuir
Mon Jul 29, 2019 3:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿ Se puede saber el rango de un archivo Excel ?
Replies: 8
Views: 1093

Re: New FTDN June/Junio 2018 (FWH 18.06)

... objeto de conexión Dolphin, sin proporcionar información al servidor de nuevo. Por ejemplo: oCn := maria_Connect( oServer ) - El método SetTree( nCols, [aBmps] ) de XBrowse, ahora funciona con "RowSets - Conjunto de filas" también. - Corrección: Error raro en el método CreateTable() ...
by Antonio Linares
Mon Sep 03, 2018 11:04 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2018 (FWH 18.06)
Replies: 1
Views: 1953

New FTDN June/Junio 2018 (FWH 18.06)

... from dolphin connection object, without providing server information again Eg: oCn := maria_Connect( oServer ) - XBrowse method SetTree( nCols, [aBmps] ) now works with RowSets also. - Fix: Rare bug in method CreateTable() when some collations are used for individual columns. - method ...
by Antonio Linares
Sat Sep 01, 2018 8:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2018 (FWH 18.06)
Replies: 1
Views: 1953

Re: Cómo saber Fila y Columna final en excel?

Noe:

Muchas gracias, parece que las líneas

nRows := oHoja:UsedRange:Rows:Count()
nCols := oHoja:UsedRange:Columns:Count()

Son las que me sacarán del problema.

Saludos
by Armando
Thu Apr 12, 2018 4:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo saber Fila y Columna final en excel?
Replies: 2
Views: 517

Re: funciones de FWH y Harbour en un archivo .txt

... SetLastError(<nNewErrorCode>)->nOldErrorCode SetLastKey(<nKey>)->cNullString SetMode(<nRows>,<nCols>)->lSuccess SetMouse([<lOnOff>],[<nRow>],[<nCol>])->lIsMouseVisible SetNewDate(<nYear>,<nMonth>,<nDay>)->lSuccess ...
by rubenfernandez01
Sun Oct 22, 2017 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710

Re: funciones de FWH y Harbour en un archivo .txt

... SetLastError(<nNewErrorCode>)->nOldErrorCode SetLastKey(<nKey>)->cNullString SetMode(<nRows>,<nCols>)->lSuccess SetMouse([<lOnOff>],[<nRow>],[<nCol>])->lIsMouseVisible SetNewDate(<nYear>,<nMonth>,<nDay>)->lSuccess ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710

Re: declare array

yes of course !!!

BUT I not Know the value of nRows and nCols
if at init I made
aVal:={ }

then not run because the procedure understood the array is simply and not multiple as

aVal:={ { } ,;
{ },;
{ } }

I insert 3 records for make a sample
by Silvio.Falconi
Mon Mar 20, 2017 9:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: declare array
Replies: 5
Views: 848

Re: declare array

aData := ARRAY( nRows, nCols )
by nageswaragunupudi
Fri Mar 17, 2017 12:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: declare array
Replies: 5
Views: 848

Unicode Read from and write to excel

... Many thanks to Mr Rao and Fwh support! #include "fivewin.ch" FUNCTION Main() local oExcel, oBook, oSheet, oWnd, oClp local nRow, nCol, nCols, uVal, uVal2 FW_SetUnicode( .t. ) DEFINE WINDOW oWnd oClp := TClipboard():New() USE "AA_CHN" GO TOP nCols := FCount() oExcel := ExcelObj() ...
by MarcoBoschi
Fri Nov 27, 2015 6:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode Read from and write to excel
Replies: 0
Views: 469

Re: bug FW_DBFTOEXCEL

... { |a| cFieldList += "," + a[ 1 ] } ) cFieldList := Substr( cFieldList, 2 ) endif aHead := HB_ATokens( cFieldList, "," ) nCols := Len( aHead ) bLine := &( "{||{" + cFieldList + "}}" ) DbEval( { || oRange:Rows( nRow ):Value := Eval( bLine ), nRow++ ...
by MOISES
Thu Jul 09, 2015 2:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug FW_DBFTOEXCEL
Replies: 4
Views: 988
Next

Return to advanced search