Search found 28 matches: advisable

Return to advanced search

Re: add a line in the print report

... the other will become defensive and defend his position at all costs. No one likes to admit they are wrong and feel stupid. For this reason, it is advisable to present data and opinions in a way that is as similar as possible to the ideas of the interlocutor, seeking common ground from which to ...
by Silvio.Falconi
Tue Dec 12, 2023 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: add a line in the print report
Replies: 8
Views: 537

Re: DOS accounting system to TWeb

Silvio.Falconi wrote:do you're using DBF ?


Is it possible to use DBF files in PHP? ( please read )
https://www.php.net/manual/es/intro.dbase.php
https://www.php.net/manual/es/book.dbase.php

You have to add an extension
https://pecl.php.net/package/dbase

Is it advisable to use DBF as databases?
NO, NO, NO
by cnavarro
Mon Apr 08, 2019 9:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DOS accounting system to TWeb
Replies: 45
Views: 5679

Re: Lines and rectangles

... oline:setBorderColor(0,255,0,100) oline:SetBorderWidth( 5 ) anyway , @property NSBorderType borderType is deprecated and It's not advisable use custom lines in views.
by mastintin
Sun Sep 30, 2018 9:44 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Lines and rectangles
Replies: 8
Views: 2050

Re: Busqueda SQL

... never faced any issues with AddNew(). I can say that Update() and AddNew() methods are as robust as UPDATE and INSERT commands. In addition, it is advisable to use Update() and AddNew() but not direct UPDATE / INSERT commands to avoid the need to Requery() everytime. Note: Requery() puts lot of ...
by nageswaragunupudi
Sat Jul 14, 2018 10:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda SQL
Replies: 15
Views: 3079

Re: Mr Nages - FWHMySql

SGS wrote:Thank you Mr Nages, so it is advisable to use the FWH17.03 version?


Yes and that is much better and this is going to be the near final version for quite sometime to come.

But you can start your work with your existing FWH 16.08, though you may be missing some useful features introduced later on.
by nageswaragunupudi
Mon Mar 20, 2017 11:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr Nages - FWHMySql
Replies: 4
Views: 564

Re: Mr Nages - FWHMySql

Thank you Mr Nages, so it is advisable to use the FWH17.03 version?
by MGA
Mon Mar 20, 2017 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr Nages - FWHMySql
Replies: 4
Views: 564

xbrowse not refresh with bEditBlock

... lVol oLbxp:aCols[ 5 ]:Value := cpres->pr_codi oLbxp:aCols[ 7 ]:Value := cpres->pr_desc Else if I put this other code (I have seen it is not advisable to use it) but updated code and description of the two lines If lVol oLbxp:aCols[ 5 ]:bStrData := cpres->pr_codi oLbxp:aCols[ 7 ]:bStrData ...
by gautxori
Sat Jul 02, 2016 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse refresh with new recordset
Replies: 7
Views: 1509

Re: ADO RDD xHarbour

Antonio,

Thanks but it seems filter its not advisable and compatible with all providers.

Ill give a try with selects
by AHF
Fri Mar 27, 2015 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446240

Re: ADO RDD xHarbour

... way to solve this is to: If we use always adUseClient because ADO knows all rows and there ist any problem but performance decreases a lot. Not advisable! IF we use adUseServer then with a WHERE clause ADO returns wrong RECORDCOUNT and OrdKeyCount! The only solution we for this is : If there ...
by AHF
Thu Mar 26, 2015 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446240

Re: XBROWSE : SortArrayData (FWH1402)

... SelectedCol(), etc. have meaning and can be used at runtime only after the browse is displayed atleast once. Premature use of these data is not advisable.
by nageswaragunupudi
Wed May 07, 2014 7:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : SortArrayData (FWH1402)
Replies: 2
Views: 592

Re: FWH 13:09 Default Printer

... default printer. Of course, an app could override this behavior by saving and restoring it's own printer selections. This may or may not be advisable. I have used this occasionally when different reports needed to be sent to different printers (within the same app). It is possible to change ...
by James Bott
Wed Nov 13, 2013 11:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13:09 Default Printer
Replies: 61
Views: 12633

Re: Images of buttons disappear

... come from FiveWin itself, and it is something that we fix as soon as it gets detected or as soon as possible (on difficult cases), so it is very advisable to use an updated FWH version.
by Antonio Linares
Tue Sep 17, 2013 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Images of buttons disappear
Replies: 7
Views: 1635

Re: bug in FW 13.04 combobox

Antonio...

I have same problem. Advisable your posting the fix here..
but in my case, in RC file I must be change all combobox elements..
is so very very very very very back breaking....:(
TQ.


Mulyadi
by Mulyadi
Wed May 08, 2013 2:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug in FW 13.04 combobox
Replies: 82
Views: 29083

Re: xBrowse CRYPT

When we want to edit a column, it is advisable to assign bEditValue with SETGET block. :bEditValue := { |x| If( x != nil, FIELD->PASSWORD := Encrypt( x, cPw ), nil ), Decrypt( FIELD->PASSWORD, cPW ) }  ...
by nageswaragunupudi
Sat Mar 09, 2013 5:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse CRYPT
Replies: 1
Views: 500

Re: xbrowse\Header

... column object. oCol:nCreationOrder gives the serial number of the column while creating the browse. While programming with xbrowse it is normally advisable to use the column objects instead of numbers. thanks for the reply form below worked oBrw:aCols[i]:bLClickHeader := {|r,c,f,o| ...
by Luisão PITBULL
Thu Jan 31, 2013 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse\Header
Replies: 2
Views: 585
Next

Return to advanced search