Search found 22 matches: enclose

Return to advanced search

Re: Xbrowse : oBrw:ToArray (How to do it)

While showing syntax, we enclose some parameters in square brackets to inform the programmer that these parameters are optional. Not at all that you should use the square brackets in real usage. NOT oBrw:bRClicked := { |r,c,f,oBrw| ...
by nageswaragunupudi
Thu Apr 13, 2023 2:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 1026

Re: EXPORTAR DATOS DESDE FW A PRESTASHOP

... | <xDelimiter> ] ] [CODEPAGE <cCodePage>] ; DELIMITED WITH <xDelimiter> The WITH option specifies the delimiting character to enclose values of Character fields in. <xDelimiter> can be specified as a literal character or a character expression enclosed in parentheses. ...
by Antonio Linares
Mon Dec 26, 2022 9:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: EXPORTAR DATOS FW A PRESTASHOP [SOLUCIONADO PROBLEMA IMAGEN]
Replies: 32
Views: 2957

Re: How read lines of word doc

Hi Anser,

Great work!

Is there also a way to get the words with emphasis? For example, I want to enclose all italic words in <italic>italic word</italic> and bold words in <bold>bold word</bold>.

Many thanks,
ryu ( FWH1706 + xHB1.0 + Pelles C + VS Code)
by ryugarai27
Fri Feb 26, 2021 4:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How read lines of word doc
Replies: 5
Views: 541

Re: Editar RowSet con dos tablas - At. Mr. Rao

... fieldlist, aValues ) b) oCn:Insert( table, fieldlist, aValues ) c) oCn:Upsert( table, fieldlist, aValues ) Whatever way you write data, you can enclose in Beging/Commit Transactions; Make a separate function to Write. Example: function WriteAll()  oCn:BeginTransaction()  <write ...
by Horizon
Wed May 27, 2020 12:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar RowSet con dos tablas - At. Mr. Rao
Replies: 15
Views: 3072

Re: Editar RowSet con dos tablas - At. Mr. Rao

... fieldlist, aValues ) b) oCn:Insert( table, fieldlist, aValues ) c) oCn:Upsert( table, fieldlist, aValues ) Whatever way you write data, you can enclose in Beging/Commit Transactions; Make a separate function to Write. Example: function WriteAll()  oCn:BeginTransaction()  <write ...
by Horizon
Wed May 27, 2020 11:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar RowSet con dos tablas - At. Mr. Rao
Replies: 15
Views: 3072

Re: Editar RowSet con dos tablas - At. Mr. Rao

... fieldlist, aValues ) b) oCn:Insert( table, fieldlist, aValues ) c) oCn:Upsert( table, fieldlist, aValues ) Whatever way you write data, you can enclose in Beging/Commit Transactions; Make a separate function to Write. Example: function WriteAll()  oCn:BeginTransaction()  ...
by nageswaragunupudi
Thu Jul 11, 2019 1:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editar RowSet con dos tablas - At. Mr. Rao
Replies: 15
Views: 3072

Re: SQL FUNCTIONS

... can also use BEGINMYSQL, COMMITMYSQL, ROLLBACKMYSQL. In any case, because you are inserting only one row in one single table, there is no need to enclose in Begin and Commit Transaction. FWH supports FWMARIALIB. Using this lib, we could write the above code as: nRet := oCn:Insert( "nombres", ...
by nageswaragunupudi
Thu Dec 14, 2017 6:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL FUNCTIONS
Replies: 4
Views: 1017

Re: Copy File SDF eliminar comillas

... The DELIMETED option specifies the target file as a delimited ASCII file where field values are separated with a comma and Character values are enclosed with a delimiting character. The default delimiter for Character values is a double quotation mark. DELIMITED WITH BLANK | TAB | PIPE When ...
by armando.lagunas
Mon Jul 17, 2017 2:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Copy File SDF eliminar comillas
Replies: 2
Views: 587

Re: DBF TEMPORARY

The case of memory file was not considered when making this part of the code in database.prg. Please enclose all lines from 289 to 295 inside an if condition "if ! Empty( ::cfile ) ........... endif" like this            if ! Empty( ...
by nageswaragunupudi
Wed Feb 17, 2016 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF TEMPORARY
Replies: 50
Views: 12587

Re: DBF to SQL converter program

... software. When table names of field names conflict with reserved words, the work-around we adopt is to escape the names. In Microsoft products enclose them in [] and for MySql `. Out adofuncs.prg automatically helps escaping the names suitably depending on the database. But in Oracle and PostGre ...
by nageswaragunupudi
Fri Aug 21, 2015 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 18450

Re: ADO RDD xHarbour

... it errors like that. Here with Mysql sometimes gives also error NOT Supported. Probably because there aren't any pending updates? My idea its to enclose it in TRY CATCH. with catch doing nothing. In all my trials with MySQL and oledb ADS doesn't seem to have any bad effect. What do you think? ...
by AHF
Tue May 19, 2015 6:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 452292

Re: Problemas con xbrowse

// alias dbART ; Nover omit specifying the alias. This is a must for proper functioning. You need to enclose alias name in quotes. fields DBART->CODIGO,DBART->DESCRIPCIO, Please never use FIELDS. Only use COLUMNS. (We provided FIELDS clause only for very quick migration ...
by nageswaragunupudi
Mon Jan 12, 2015 4:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con xbrowse
Replies: 4
Views: 1047

Re: Cantidad variable de parámetros

... FoxPro evaluates expressions, functions, memory variables, and array elements specified with TextLines only if you set SET TEXTMERGE to ON and enclose them with the delimiters specified by SET TEXTMERGE DELIMITERS. If SET TEXTMERGE is OFF, Visual FoxPro outputs expressions, functions, memory ...
by carlos vargas
Mon Dec 01, 2014 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cantidad variable de parámetros
Replies: 29
Views: 10146

New FTDN march/april 2014 (FWH 14.04)

... to modify data in some other tables also. This is now achieved by including such code in the DATA bOnSave codeblock. Now, it is possible to enclose all the changes ( to the main table and other tables ) in a Begin and Commit Transaction. New DATAs: bBeginTrans, bCommitTrans, bRollBack DATA ...
by Antonio Linares
Thu May 22, 2014 4:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN march/april 2014 (FWH 14.04)
Replies: 2
Views: 1755

Re: Creating acces table from dbf table

... INT, AGE NUMERIC ( 2, 0 ), SALARY NUMERIC ( 9, 2 ), NOTES VARCHAR ( 70 ) ) FIRST and LAST are reserved words. If you must use them you have to enclose them in square brackets. 2) When the acces file is created , which code should be used to populate the acces file ? Something like this: FUNCTION ...
by Enrico Maria Giordano
Sat Jun 29, 2013 5:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating acces table from dbf table
Replies: 11
Views: 2521
Next

Return to advanced search