Search found 115 matches: dim

Return to advanced search

Re: QueryResult 1 row and many rows different array type

Please use oCn:Execute( <yourquery> ) to get multi-dim array not oCn:QueryResult() whose purpose is dfferent.
by nageswaragunupudi
Sun Mar 28, 2021 3:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: QueryResult 1 row and many rows different array type
Replies: 1
Views: 382

FW_ExcelToDBF to be extended (enhanced)

I use this function regular in some apps. It would be great if it can be possible that we add a 2 dim. array that would/could change the headers in the excel file in order to match these of the dbf. The dbf fields are defined, but the exels that I get are always differend ...
by Marc Venken
Mon Feb 08, 2021 3:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_ExcelToDBF to be extended (enhanced)
Replies: 5
Views: 828

Como cargar funciones desde una Dll?

... esta para abrir un puerto de impresora Public Function AbrirPuerto(ByVal wPuerto As UShort, ByVal dwBaudios As UInteger) As UInteger [Ejemplo] Dim iRet As UInteger iRet = DFiscal.AbrirPuerto(1, 9600) Me pueden indicar como lo haria y si existen tipo de datos como estos en FWH Saludos Desde ...
by Erick Almanza
Fri Oct 30, 2020 5:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como cargar funciones desde una Dll?
Replies: 1
Views: 349

Re: csql := oCon:UPDATE( "clientes" , "nomcli", nom , ...

... Second parameter is an array of fieldnames or list of fieldnames. Third parameter is an array of values. Fourth parameter can be 1) an multi-dim array of fieldnames and values. 2) Literal where condition. In the above example, the fourth parameter can also be: "`numercli` = '" + ...
by nageswaragunupudi
Mon Aug 31, 2020 4:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: csql := oCon:UPDATE( "clientes" , SOLUCIONADO
Replies: 2
Views: 250

Re: Como cargar un array desde un archivo ini

First convert any multi-dim array into string cString := FW_ValToExp( aArray )  and save to INI file or to any text file or to a memo field. After you read back from the INI file or other file as cText, convert into array ...
by nageswaragunupudi
Sun May 24, 2020 2:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como cargar un array desde un archivo ini
Replies: 4
Views: 989

Re: Passing Parameters to Excel.

byron.hopp wrote:Dim sheet As Worksheet
Set sheet = ActiveWorkbook.Sheets.Add(After:=ActiveWorkbook.Worksheets(ActiveWorkbook.Worksheets.Count))


Try
Code: Select all  Expand view
oSheet := oExcel:ActiveWorkbook:Sheets:Add( oExcel:ActiveWorkbook:Worksheets( oExcel:ActiveWorkbook:Worksheets:Count() ) )
by anserkk
Thu May 07, 2020 6:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Passing Parameters to Excel.
Replies: 2
Views: 436

Passing Parameters to Excel.

All, I am puzzeled on how to use some of the methods in Excel, because the parameter passing is unusual. Dim sheet As Worksheet Set sheet = ActiveWorkbook.Sheets.Add(After:=ActiveWorkbook.Worksheets(ActiveWorkbook.Worksheets.Count)) Is there a way to make this work in Harbour ...
by byron.hopp
Wed May 06, 2020 11:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Passing Parameters to Excel.
Replies: 2
Views: 436

Re: FW Lookup function (where to find)

With this code, not working because multi dim. arrays are not easy for me, I want to find all values of the selected record Result shoud be the values of the folowing fields... aData[1,1] = Code .or. aData[1] = code aData[1,2] = Naam ..... rest ...
by Marc Venken
Sat May 02, 2020 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW Lookup function (where to find)
Replies: 5
Views: 627

DigitalPersona SDK

... function of fingerprint verification and specifies a comparison decision based on the requested FAR set by the FARRequested property. Syntax Dim oVerificationResult As DPFPVerificationResult Set oVerificationResult = object.Verify( ByVal oVerificationFeatureSet As Object, ByVal oFingerprintTemplate ...
by vilian
Thu Feb 06, 2020 12:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DigitalPersona SDK
Replies: 25
Views: 3392

Re: How Create an Array from .CSV file ?

Hi Uwe ,

Need 3 different arrays to process invoice data into our database.

Looking for a function which returns an array (single dim) for each record during .CSV line read then I can copy /add record into relevant main array

Thanks
shridhar
by shri_fwh
Mon Aug 05, 2019 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How Create an Array from .CSV file ?
Replies: 8
Views: 1414

Re: A problem with TDatabase using copy() / Past()

... } }   :GoTo( nDstRec )   :Paste( aVals )END  aVals can be a list of values of all fields Or a 2-dim array with fieldnames and values.
by nageswaragunupudi
Thu Jan 31, 2019 2:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem with TDatabase using copy() / Past() ?
Replies: 7
Views: 1179

Re: Cantidad de registros afectados en un UPDATE

... sql statement, b) Numeric: In case of insert, update, etc indicating the affected rows c) If the result is a result-set, it is returned as Multi-Dim array Saludos
by admsoporte
Thu Jan 10, 2019 1:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cantidad de registros afectados en un UPDATE
Replies: 1
Views: 524

TDatabase FWH 17.08 : Datas and Methods

... blank record and returns success This usage is consistent with all previous versions. Usage 2: Append( aFldsAndValues ) aFldsAndValues is a multi-dim array in the form of { { fld1, val1 }, ... { fldN, valN } }. fldN can be field name of field number. Append( flds, aVals ) flds can be nil ( all ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1785

New FTDN July 2017 (FWH 17.07)

... Syntaxes: Update( cFieldList, aVals ) --> lSuccess Update( aVals ) // aVals written to fields 1,2, .etc Update( aFldVal ) // aFldVal can be 2 dim array of fields and vals Fields can be by number or names. - Append() method now returns lSuccess and as usual appends blank - Append( aFlds, aVals ...
by Antonio Linares
Sun Aug 13, 2017 8:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July 2017 (FWH 17.07)
Replies: 5
Views: 2936

TDatabase class WIKI

... Syntaxes: Update( cFieldList, aVals ) --> lSuccess Update( aVals ) // aVals written to fields 1,2, .etc Update( aFldVal ) // aFldVal can be 2 dim array of fields and vals Fields can be by number or names. - Append() method now returns lSuccess and as usual appends blank - Append( aFlds, aVals ...
by nageswaragunupudi
Wed Aug 02, 2017 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase class WIKI
Replies: 4
Views: 749
PreviousNext

Return to advanced search