Search found 115 matches: dim

Return to advanced search

New FTDN June/Junio 2016 (FWH 16.06)

... &2, $3 :name, :age, :jgdate // standard sql &name, &age, &jgdate, etc In case of named parameters the array should be a multi-dim array Example" FW_AdoApplyParams( "AGE BETWEEN :min AND :max AND DEPT = :dep", ; { { "min", 30 }, { "max", 40 ...
by Antonio Linares
Sun Aug 07, 2016 7:03 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2016 (FWH 16.06)
Replies: 2
Views: 2362

FWH: MySql/MariaDB: RowSet object

... :param2, ... : standard sql &param1, &param2, .. : compatible with other libs In the case of named paratmers the array needs to be a multi-dim { { value1, value2, ..} ... } Option - 4: oRs := oCn:Call( cStoredProc, params, ... ) A RowSet can also be created by calling a Stored Procedure ...
by nageswaragunupudi
Thu Jul 21, 2016 11:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19626

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... caFields: can be array of field names or comma delimited list of field names Param aValues: Array of values corresponding to the fields. A Single dim array for inserting single row and multi-dim array for inserting multiple rows in one operation. The values can be constants or variables or expressions, ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28554

New FTDN March 2016 (FWH 16.03)

... line border around the browse. Useful when not having recordselector, headers, or scrollbars. * New Class TArrayData: Can be used with multi-dimentional arrays the same way as TDatabase and TRecset. Usage: oData := TArrayData():New( aArrayData, aStructure ) aStructure is similar to dbf structure. ...
by Antonio Linares
Wed Mar 30, 2016 8:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March 2016 (FWH 16.03)
Replies: 0
Views: 1311

Re: XBROWSE; EDIT_GET_LISTBOX

... please try to prepare a self-contained sample which we can build and test at our end. From version 15.06 it is enough if you assign new multi-dim array to aEditListTxt at any time during runtime also. You need not do anything else. Thanks for your support Here is a sample that reproduce the ...
by samtinu
Mon Jul 20, 2015 6:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE; EDIT_GET_LISTBOX
Replies: 7
Views: 2248

New FTDN June 2015 (FWH 15.06)

... If DBFCDX RDD is not linked, a message is displayed and the export is not performed. * Enhancement: XBrowse: Now it is possible to assign a multi-dim array as oCol:aEditListTxt during runtime also.
by Antonio Linares
Sun Jul 19, 2015 10:00 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2015 (FWH 15.06)
Replies: 7
Views: 3060

Re: XBROWSE; EDIT_GET_LISTBOX

... please try to prepare a self-contained sample which we can build and test at our end. From version 15.06 it is enough if you assign new multi-dim array to aEditListTxt at any time during runtime also. You need not do anything else.
by nageswaragunupudi
Wed Jul 15, 2015 7:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE; EDIT_GET_LISTBOX
Replies: 7
Views: 2248

Buscar un Valor en un Rango de Celda en EXCEL

amigos nuevamente por aca, solicito su ayuda. como puedo pasar esto a fw Public rango As String, valorbuscado As String Sub Encontrarvalores() Dim resultado As Range Dim primerabusqueda As String Dim contador As Double Set resultado = Range(rango).Find(valorbuscado, , xlValues, xlWhole, xlByColumns, ...
by jbrita
Tue Mar 17, 2015 12:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buscar un Valor en un Rango de Celda en EXCEL
Replies: 1
Views: 302

Re: Calculating or controling IBAN numbers

... this VB code please. Public Function BBANtoIBANint(ByVal ISOcountry As String, ByVal banknumber As String, ByVal Account As String) As String Dim xd As Object Set xd = CreateObject("msxml2.domdocument.4.0") xd.Load "http://www.ibanbic.be/IBANBIC.asmx/calculateIBAN2?ISOcountry=" ...
by bart
Wed Feb 25, 2015 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculating or controling IBAN numbers
Replies: 5
Views: 6032

Re: errores de xbrowse ???

... to create browse from parameters. XBROWSE command syntax provides a very simple and robust way of creating browse from parameters. Create a multi-dim array like this: aColInfo := { ; { cExpression1, [ cHeader1 ], [ cPicture1 ], [ nColWidth1 ], [lnAlign1], [cSortOrder1] }, ; ........ { cExpressionN, ...
by nageswaragunupudi
Sat Jan 03, 2015 2:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: errores de xbrowse ??? NO SOLUCIONADO ??? AYUDA
Replies: 8
Views: 2284

Re: question about TDataRow

You must be aware that TDataRow operates on a single record. TDataRow has DATA aData, which is a multi-dim array. First column is field name and second column is value of the field. oRec := TDataRow():New( [cAlias] ) oRec:aData[ n, 1 ] --> nth field name oRec:aData[ n, ...
by nageswaragunupudi
Fri Dec 26, 2014 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: question about TDataRow [answered]
Replies: 2
Views: 420

Consignar el contenido de un ZIP en un arreglo de bytes

... el contenido del archivo ZIP en un arreglo de Bytes" Hay alguna función, clase, Etc que lo haga, encontré una pero creo que es C o VB : Dim billService As New Sunat.billServiceClient billService.sendBill(fileName, contentFile) billService.sendSummary(fileName, contentFile) billService.getStatus(ticket) ...
by Enrrique Vertiz
Tue Sep 16, 2014 3:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consignar el contenido de un ZIP en un arreglo de bytes
Replies: 0
Views: 307

Facturacion Electronica Peru, Metodo sendBill

... hacerlo es "se debe consignar el contenido del archivo ZIP en un arreglo de Bytes", aqui tengo un ejemplo de como lo hacen en VB : /* Dim billService As New Sunat.billServiceClient billService.sendBill(fileName, contentFile) billService.sendSummary(fileName, contentFile) billService.getStatus(ticket) ...
by Enrrique Vertiz
Thu Sep 11, 2014 3:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Facturacion Electronica Peru, Metodo sendBill
Replies: 22
Views: 8357

New FTDN August 2014 (FWH 14.08)

... lModified := MsgGet( "TEST", { "Name", "DOB", "Married", "Salary" }, aVars ) (c) Using Multi-Dim array. This is the most recommended form, as this supports greater degree of formatting, customization, setting up comboboxes/dbcombo, memoedits, ...
by Antonio Linares
Sat Sep 06, 2014 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August 2014 (FWH 14.08)
Replies: 2
Views: 1843

New FTDN May/Mayo 2013 (FWH 13.05)

... provided as the 7th parameter, data from the dbf is appended to the array. * New: Methods RowGet( [<cFieldList>], [<lBlank>] --> 2 dim array of field names and values RowPut( aData, <lNew> ) Writes data into fields from the data array in TDatabase class * New: New Class TDataRow ...
by Antonio Linares
Wed Jun 05, 2013 3:09 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2013 (FWH 13.05)
Replies: 0
Views: 2831
PreviousNext

Return to advanced search