Search found 147 matches: desirable

Return to advanced search

Re: Ado - consulta en xbrowse

... Add this line here  ENDIF  Then rest of your code will work normally. Some other advices: 1. After modifying a field is NOT necessary or desirable to call ReQuery(). It is not a good practice to call Requery() except when it is "essential". This is a very slow operation. 2. ...
by nageswaragunupudi
Thu Aug 29, 2013 6:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ado - consulta en xbrowse
Replies: 17
Views: 2876

Re: New FWH 13.07 revised build

And oReport:bInit can be setted globally at the main function? Not possible because it is not a class data. I would even advise it is not desirable. A project would contain many reports some dealing with dbfs, some arrays, some recordsets, some other kinds of datasources and thinking of one ...
by nageswaragunupudi
Fri Aug 23, 2013 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 13.07 revised build
Replies: 28
Views: 6780

Re: New FWH 13.07 revised build

... He will complain that report.prg has a bug because export to excel is starting from 1st record. Report class is very generic and it is highly desirable that the programmer himself sets the Restart point. Its just writing one line of code in the program.
by nageswaragunupudi
Fri Aug 23, 2013 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 13.07 revised build
Replies: 28
Views: 6780

Re: Problem in creating GETs

... The problem I'd want mainly pointing out was the visual difference between the two GETs. Any workaround? Yes, it may be normal, but it is not desirable. I was just suggesting that both things should (or could) be fixed at the same time. As we have determined, this is a partly a theme issue. ...
by James Bott
Fri Aug 16, 2013 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem in creating GETs
Replies: 6
Views: 1270

Re: Curiosidad XBROWSE

... code, XBrowse got registered with the ID given instead of registering with a new ID, because there was no conflict. This is new for me. it is not desirable to use REDEFINE with a non-resource dialog. Yes I know. It all started when a user asked me to modify the code, and I found out that I had ...
by FranciscoA
Sun Aug 11, 2013 3:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Curiosidad XBROWSE
Replies: 2
Views: 695

Re: Curiosidad XBROWSE

... instead of registering with a new ID, because there was no conflict. While we can understand the internal working and why it worked, it is not desirable to use REDEFINE with a non-resource dialog.
by nageswaragunupudi
Sun Aug 11, 2013 2:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Curiosidad XBROWSE
Replies: 2
Views: 695

Re: xBrowse ascending order

Mr Otto Please introduce new DATA by adding this line in the class declaration section of xbrowse.prg DATA lSortDescend AS LOGICAL INIT .t.  Desirable position is next to DATA lAutoSort. In the METHOD SetOrder CLASS TXBrwColumn, insert these three lines of code just after local declaration: ...
by nageswaragunupudi
Sun Aug 11, 2013 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ascending order
Replies: 8
Views: 2269

Re: new bug FWH 13.07 xBrowse:Report()

Export to xbrowse is to be made through oBrw:ToExcel() and report through oBrw:Report()

Not desirable going from xbrowse ---> report --> excel. Report's to excel is far inferior to obrw:toexcel()
by nageswaragunupudi
Sat Aug 10, 2013 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: new bug FWH 13.07 xBrowse:Report()
Replies: 2
Views: 492

Re: force table alias in complex select

... column names, in all DBMS expect MSACCESS. Ok, I didn't understand. You can use SELECT *, PRESTAMOS.REGISTRO AS PREREG, etc. FROM ... It is highly desirable to avoid duplicate field names I agree. EMG
by Enrico Maria Giordano
Sat Jul 20, 2013 9:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: force table alias in complex select
Replies: 5
Views: 1185

Re: force table alias in complex select

... , unless you specify every column and provide unique alias column name for the duplicated column names, in all DBMS expect MSACCESS. It is highly desirable to avoid duplicate field names by laboriously specifying all field names in the select clause. Sad no DBMS, except MSACESS provides this automatic ...
by nageswaragunupudi
Sat Jul 20, 2013 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: force table alias in complex select
Replies: 5
Views: 1185

Re: Setting a Standard

... let him true. from already thank you Setting lVThumbTrack to .t. works well with fast access data sources. For slow access datasources, it is not desirable to set this data to .t. For Array and Recordset browses, lVThumbTrack is set to .t. by default in the SetArray() and SetADO() methods, because ...
by nageswaragunupudi
Fri Jul 19, 2013 12:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Setting a Standard
Replies: 6
Views: 1932

New FTDN June/Junio 2013 (FWH 13.06)

... creation of field names which may confilct with reserved words. This is done by escaping the column names suitable to the RDBMS. However it is not desirable to have column names which conflict with reserved words. To guard against this, the programmer may specify a string to be prefixed to each ...
by Antonio Linares
Mon Jul 08, 2013 6:53 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2013 (FWH 13.06)
Replies: 1
Views: 3017

Re: filtrar un xbrowse

Code: Select all  Expand view
SELECT oPedido:DJAIESTA FOR ""

works in wbrowse but does not work in xbrowse.

We need to set Filter or Scope on the Alias as we need.

Code: Select all  Expand view
COLUMNS { 1, 2, 3, 4, 5 }

It is desirable that field names are used instead of numbers.
by nageswaragunupudi
Fri Jul 05, 2013 1:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: filtrar un xbrowse
Replies: 1
Views: 631

Re: xBrowse, bSeek y lAutoOrder

... during Initialization is provided as one of such features in case the programmer forgot the explicitly call this method initially. But it is not desirable for th programmer to rely on such defaults because it is always safe to be explicit and not to rely on defaults. After reviewing the xBrowse ...
by nageswaragunupudi
Mon Jul 01, 2013 12:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1414

Re: xBrowse, bSeek y lAutoOrder

It is highly desirable to first call oBrw:cAlias := <youralias> oBrw:SetRdd( .... ) before assigning any of your data and codeblocks. If you do not explicitly call SetRdd( .. ) initially in the program, XBrowse at the time ...
by nageswaragunupudi
Mon Jul 01, 2013 7:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse, bSeek y lAutoOrder
Replies: 3
Views: 1414
PreviousNext

Return to advanced search