Search found 147 matches: desirable

Return to advanced search

FWH 18.12 Window/Dialog:SaveState() and RestoreState()

... of the window in the current setup. If an existing application is saving and restoring windows/dialogs on the basis of coordinates, it is desirable to change using these new methods.
by nageswaragunupudi
Sat Dec 29, 2018 5:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.12 Window/Dialog:SaveState() and RestoreState()
Replies: 0
Views: 622

Re: Your EXE into a Web app

... y reconversiones, creo que este es el deseo de todos o más bien de la mayoría de los usuarios de fivewin y Harbour anyway, dear lords is desirable a product that comes from the Fivetech team of which there are guarantees, maybe even third-party products like Terraco or Fiveweb also work ...
by Silvio.Falconi
Sat Oct 13, 2018 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Your EXE into a Web app
Replies: 41
Views: 9108

Re: oCn:ImportFromDBF function autoincrement id feature problem

... As a simple numeric field? In that case you should programmatically keep on assigning unique values as when a record is inserted. Option (a) is desirable. If you let us know if you want option (a) or (b), we will advise you the suitable way.
by nageswaragunupudi
Sun Aug 26, 2018 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCn:ImportFromDBF function autoincrement id feature (Solved)
Replies: 5
Views: 848

Re: UPPER() and IsAlpha() return not reals values in french

... is after "z" for example.  (x)Harbour is expected to adopt the collation rules of the codepage set. If the order is not correct, it is desirable to discuss the issue in (x)Harbour forums. Anyway please try USING the DBF with CODEPAGE clause.
by nageswaragunupudi
Sun Jun 03, 2018 5:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UPPER() and IsAlpha() return not reals values in french
Replies: 25
Views: 2526

Re: A question about function FW_Cdxcreate()

FW_CdxCreate( [caTagList], [lMemory] ) --> lSuccess Works only for DBFCDX. It is desirable to delete the existing cdx and open the DBF in exclusive mode before calling this function. Param.2: [lMemory] Defaults to .F.. If .t., creates temporary index in memory ...
by nageswaragunupudi
Tue Feb 27, 2018 2:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question about function FW_Cdxcreate()
Replies: 8
Views: 1673

Re: FWH 1801: Enhancements to TBitmap class

... array with relevant information about the image data. The first element can be GDI+ pImage (if opted), hBitmap, hIcon, hMeta, Segoe Symbol. It is desirable (though not essential) to send the entire array as it is to FW_DrawImage( hDC, aBmpInfo, ... )
by nageswaragunupudi
Sun Feb 18, 2018 1:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1801: Enhancements to TBitmap class
Replies: 7
Views: 1141

Re: Working with barcode

Please add this line after defining oBtnBC2 oBtnBC2:lCancel := .t. This solves your problem. It is any way desirable to make the valid clause safer:      VALID ( If( Empty( cBarCode ), nil, AAdd( aBrowseCodes, cBarCode   ) ), ;  ...
by nageswaragunupudi
Thu Feb 15, 2018 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Working with barcode
Replies: 9
Views: 2314

Re: EN_UPDATE never called on TEdit

Code: Select all  Expand view
GetClassName( hWndCtl ) == "Edit"

This is true for all the 3 classes TEdit, TGet and TMultiGet.
Any changes affect all these 3 classes.
It is desirable to test the effect of these changes on all the three classes thoroughly before implementation.
by nageswaragunupudi
Sat Dec 30, 2017 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EN_UPDATE never called on TEdit
Replies: 9
Views: 2263

Re: BUSCA EN CUALQUIER POSICION CON DBF

... second browse are retained even after closing the second dialog. In this case, the filter set by the browse in the second dialog remains. It is desirable to avoid using the same alias in two or more browses at the same time. Anyway, in this case, please "clear the filter" when closing ...
by nageswaragunupudi
Wed Nov 08, 2017 1:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: BUSCA EN CUALQUIER POSICION CON DBF
Replies: 16
Views: 3359

Re: Is this Netopen function from 16 bit ok for FWH32 ?

... 3) Ado allows Ms Access and Ms Sql server to share ( virtually ) the same code .. just change the connection string. 4) Modern SQL code is very desirable with many CIO's It sounds like you are on the verge of a major re-write anyway ... please have a look at the sample AdoRick.Prg .. a good ...
by Rick Lipkin
Sun Sep 24, 2017 2:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is this Netopen function from 16 bit ok for FWH32 ?
Replies: 4
Views: 1073

Re: xBrowse TAB vs ENTER key EDIT_GET ( rao )

There is no change in xbrowse code. I am unable to comment because I do not know what is inside the postedit code. It is desirable and safer if we leave XBrowse to work with its own default codeblock for bOnPostEdit. If you write your own codeblock you should be able to resolve these ...
by nageswaragunupudi
Thu Jun 22, 2017 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse TAB vs ENTER key EDIT_GET ( rao )
Replies: 16
Views: 2632

Re: Antonio: Num2Word.prg

... and 'B' : 999,999,999.99 'E' : 999.999.999,99 'I' : 99,99,99,999.99 function NUMPICT( 9, 2 ) --> picture depending on the country code. It is desirable to depend on FWNumFormat() and NumPict() rather than hard-coding the picture clauses. This enables to change the numeric format globally and ...
by nageswaragunupudi
Tue Jun 06, 2017 3:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Num2Word.prg
Replies: 17
Views: 2888

Re: FWH: MySql/MariaDB: RowSet object

... ?", { "where inactive = 'N'", 50 } ) oRs:Requery( "where name like '%PINEAPPLE%'", 100 } ) Except for large tables, it is desirable to avoid where clause and instead use setfilter()
by nageswaragunupudi
Mon May 15, 2017 11:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19758

Re: FWHMARIADB Samples

... scalable and suits large muti-user applications. If the application is required to be adopted to different RDBMSs like MySql, MSSql, etc., it is desirable to choose ADO, because a major part of the code is portable. 1: Disadvantages of using ADO It requires installation of ODBC driver on every ...
by nageswaragunupudi
Sat Apr 22, 2017 3:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20744

Re: Ejemplo de Tdatarow para crear Base de datos y tablas

... server. MSSQL Server/SQLEXPRESS can be configured to accept logins as user/password or with Windows authentication or both. When configuring it is desirable to allow user/password based logins. For MSSQL server, built-in adiminstrator account's name is SA, like "root" for MySql. Syntax: ...
by nageswaragunupudi
Tue Mar 21, 2017 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo de Tdatarow para crear Base de datos y tablas
Replies: 19
Views: 3268
PreviousNext

Return to advanced search

cron