Search found 172 matches: internally

Return to advanced search

Re: Unicode vs UTF8

... UTF8 because it is popular and used across the Web and also because many database servers support this encoding and (2) UTF16LE because Windows OS internally deals with all strings in this format only.
by nageswaragunupudi
Sun Jan 07, 2024 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode vs UTF8
Replies: 2
Views: 1025

Re: Editar celdas en xbrowse

Code: Select all  Expand view
WITH OBJECT oLbx:Costo
:nEditType := EDIT_GET
END
 


Please remove bPostEdit
Xbrowse internally prepares a better bPostEdit codeblock by default.
by nageswaragunupudi
Thu Aug 31, 2023 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editar celdas en xbrowse
Replies: 7
Views: 559

Re: Request For TDataRow Example for MariDB

... directly using TDataRow is because you do not need to deal with it explicitly. XBrowse and classes like RowSet, TRecSet, TDatabase. etc implicity internally use this class to provide Edit()
by nageswaragunupudi
Tue Aug 01, 2023 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request For TDataRow Example for MariDB
Replies: 4
Views: 271

Re: "id" for PRIMARY KEY ?

... specifying the structure of a table using a structure like DBSTRUCT(). FWH creates the required SQL for creating the table using the structure internally and creates the table. Using FWH functions for creating tables has the benefit of portability across different RDBMSs
by nageswaragunupudi
Sun Jul 23, 2023 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "id" for PRIMARY KEY ?
Replies: 9
Views: 479

Re: identify Type of DBF

... far as (x)Harbour is concerned, we need to decide whether to open VIA "DBFNTX" or "DBFCDX". In our functions we use this logic internally, when we open DBF internally: if File( cFileSetExt( cDbf, "fpt" ) ) .or. File( cFileSetExt( cDbf, "cdx" ...
by nageswaragunupudi
Wed May 03, 2023 12:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: identify Type of DBF
Replies: 5
Views: 315

Re: Fivewin & TDolphin & MariaDb & UFT8 problem?

... between MySQL upto version 5 and version 8 and MariaDB. FWH' own library knows if the server is MySql, its version and if it is MariaDB. Internally FWH library takes into account takes into account these differences and behaves appropriately. If you are a serious user of MySQL or MariaDB ...
by nageswaragunupudi
Fri Nov 04, 2022 8:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin & TDolphin & MariaDb & UFT8 problem?
Replies: 6
Views: 482

Re: Manifest

... relative to the use of them with Win 10 or 11. So, I would like to know the current advice on including a .manifest file, should it be linked internally, and what should it consist of. A search of this forum seems to not provide a discussion of when, where, how to use them ... except some ...
by Silvio.Falconi
Wed Oct 26, 2022 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1790

Manifest

... relative to the use of them with Win 10 or 11. So, I would like to know the current advice on including a .manifest file, should it be linked internally, and what should it consist of. A search of this forum seems to not provide a discussion of when, where, how to use them ... except some ...
by TimStone
Wed Oct 26, 2022 1:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1790

Re: Clase para Graficos Vectoriales

... Pix2Units( ... ) But for using many methods, we need not do any calculations ourselves. Just mention the Units as parameter. Printer class will internally does all calculations and print. Eg: Line( nTop, nLeft, nBottom, nRight, oPen, cUnits ) METHOD Box( nRow, nCol, nBottom, nRight, anoPen, ...
by Antonio Linares
Wed Sep 21, 2022 2:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase para Graficos Vectoriales
Replies: 20
Views: 1157

Re: XBROWSE and any Key

bSeek is automatically generated by XBrowse internally, depending on the type of database (i.e., array,dbf,tdbf,ado, etc.)
Better not to attempt preparing our own bSeek.
by nageswaragunupudi
Sun Jul 31, 2022 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE and any Key
Replies: 9
Views: 702

Re: Problema con xBrowse

... HDR_CLI field is a NULL field type, some records has a null value, some records has a number value. That is the reason, we used Empty() XBrowse internally translates the expression "IF(EMPTY(HDR_CLI),HDR_TOT,0.00)" into a codeblock like this and assigns to oCol:bEditValue :bEditValue ...
by nageswaragunupudi
Sat Apr 30, 2022 4:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse (SOLUCIONADO)
Replies: 11
Views: 1157

Re: IA

... binary data passed from an ActiveX control or automation object as an array of VT_UI1 type data to a Visual FoxPro character string. Visual FoxPro internally marks this character string as binary data passed from an ActiveX control or automation object. When the character string is passed back ...
by Antonio Linares
Fri Apr 08, 2022 11:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IA
Replies: 19
Views: 1696

Re: txbrowse totals and edit modes

... readonly. They can not be used to assign values. That is the reason We (FWH Team) recommends use of COLUMNS clause. In that case, xbrowse itself internally generate the correct codeblocks. Please implement our recommendation (this is official recommendation of FWH) using COLUMNS clause as shown ...
by nageswaragunupudi
Thu Feb 17, 2022 4:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: txbrowse totals and edit modes
Replies: 6
Views: 654

Re: Error in database.prg?

... For example oDbf:MapCol( "END", "ENDX" )? oDbf:EndXoDbf:EndX := <val>  You can safely use oDbf:Endx and it is internally mapped to the field "END" You can use any name you like. Note: Please change the caption "Error in database.prg". There ...
by wartiaga
Thu Feb 17, 2022 2:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can you use a field named End with Class TDataBase ? yes!
Replies: 15
Views: 965

Re: Error in database.prg?

... For example oDbf:MapCol( "END", "ENDX" )? oDbf:EndXoDbf:EndX := <val>  You can safely use oDbf:Endx and it is internally mapped to the field "END" You can use any name you like. Note: Please change the caption "Error in database.prg". There ...
by nageswaragunupudi
Thu Feb 17, 2022 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can you use a field named End with Class TDataBase ? yes!
Replies: 15
Views: 965
Next

Return to advanced search