Search found 24 matches: adisplay

Return to advanced search

Re: Problemas xbrowse 2210 (xharbour)

Estimado Leandro,

El Sr. Rao lo está revisando

El error viene de aqui:
oCol := ::aCols[ ATail( ::aDisplay ) ]

Parece que ATail( ::aDisplay ) esta devolviendo nil
by Antonio Linares
Wed Nov 16, 2022 8:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas xbrowse 2210 (xharbour)
Replies: 2
Views: 415

Re: Xbrowse : Setup configuration file

... Trim( MemoLine( if(VALTYPE(oCol:cHeader)=="C",oCol:cHeader,EVAL(oCol:cHeader)), 250, 1 ) ) MenuAddItem( cPrompt, , !oCol:lHide, ( len(::aDisplay) != 1 .or. ocol:nPos != 1 ), GenMenuBlock( ::aCols, nFor ) ) next ENDMENU if ::bkeydown<>nil.and.::nMarqueeStyle==MARQSTYLE_HIGHLCELL ...
by ShumingWang
Sat Apr 17, 2021 12:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Setup configuration file
Replies: 5
Views: 1243

Re: XBROWSE : SortArrayData (FWH1402)

... problem , see http://forums.fivetechsupport.com/viewtopic.php?f=3&t=28365 So i have added in Method setarray : # ifdef FRANKDEMONT IF ::aDisplay == nil ::GetDisplayCols() END # endif Frank As you yourself have observed in the other post, calling ::oBrw:Refresh() in the SortArrayData() ...
by nageswaragunupudi
Wed May 07, 2014 7:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : SortArrayData (FWH1402)
Replies: 2
Views: 596

Re: XBROWSE : SortArrayData (FWH1402)

... problem , see http://forums.fivetechsupport.com/viewtopic.php?f=3&t=28365 So i have added in Method setarray : # ifdef FRANKDEMONT IF ::aDisplay == nil ::GetDisplayCols() END # endif Frank
by Franklin Demont
Sun Apr 27, 2014 6:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : SortArrayData (FWH1402)
Replies: 2
Views: 596

XBROWSE : SortArrayData (FWH1402)

Hello, FWH1402 fails when setarray is called , followed with SelectedCol() , ColAtPos() , .... (uses ::aDisplay) ::aDisplay is not set anymore. Placing some trace's in method setarray , i found that aDisplay was set in SortarrayData , in FWH1303 we see as last line in the ...
by Franklin Demont
Fri Apr 25, 2014 9:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : SortArrayData (FWH1402)
Replies: 2
Views: 596

Re: XBrowse with full grid

... nTemp := 2 case nColStyle < LINESTYLE_INSET nTemp := 1 otherwise nTemp := 0 end case ... ... //---------------------- if nLast == Len( ::aDisplay ) nCol := acols[ nFor ] - nTemp nWidth := ::BrwWidth() - 4 if nRowStyle != LINESTYLE_RAISED DrawHorz( hDC, nRow, nCol, nWidth, hRowPen ) else ...
by ShumingWang
Fri May 17, 2013 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with full grid (Solved)
Replies: 14
Views: 4792

Re: XBROWSE : LEN(::aDisplay)==0 AGAIN !

Anyhow , i will include your code (with a tracelog) , so that i can see which line produces the offending code.

To help us to locate the problem, please do this test.
Please also try to find the information to identity the alias, etc. within the error routine.
by nageswaragunupudi
Fri Feb 22, 2013 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : LEN(::aDisplay)==0 AGAIN !
Replies: 3
Views: 973

Re: XBROWSE : LEN(::aDisplay)==0 AGAIN !

Normally ::aDisplay can not be an empty array unless ::aCols is empty or the data lHide of all columns is true. Such situation can happen only due to some inadvertent code in the application. For locating the issue, please insert ...
by Franklin Demont
Thu Feb 21, 2013 7:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : LEN(::aDisplay)==0 AGAIN !
Replies: 3
Views: 973

Re: XBROWSE : LEN(::aDisplay)==0 AGAIN !

Normally ::aDisplay can not be an empty array unless ::aCols is empty or the data lHide of all columns is true. Such situation can happen only due to some inadvertent code in the application. For locating the issue, please insert ...
by nageswaragunupudi
Thu Feb 21, 2013 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : LEN(::aDisplay)==0 AGAIN !
Replies: 3
Views: 973

XBROWSE : LEN(::aDisplay)==0 AGAIN !

Hello, Xbrowse gives again an error that also in the past was a problem. Executing : METHOD ColAtPos( nPos ) INLINE ::aCols[ ::aDisplay[ MinMax( If( nPos == nil .or. nPos == 0, 1, nPos ), 1, Len( ::aDisplay ) ) ] ] I have a error while LEN(::aDisplay) == 0 The aplication seems to have ...
by Franklin Demont
Thu Feb 21, 2013 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : LEN(::aDisplay)==0 AGAIN !
Replies: 3
Views: 973

Re: xbrowse : sporadic error

aDisplay is created from METHOD GetDisplayCols() CLASS TXBrowse, so I guess thats where we could place some traces: So we could place a trace just after it:   if Len( aDisplay ) == 0      MsgInfo( "aDisplay ...
by Demont Brecht
Tue Nov 15, 2011 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse : sporadic error
Replies: 19
Views: 4182

Re: xbrowse : sporadic error

aDisplay is created from METHOD GetDisplayCols() CLASS TXBrowse, so I guess thats where we could place some traces: 1. If you are not using any frozen coluns, then this loop should not be executed:   do while nFreeze > ...
by Antonio Linares
Tue Nov 15, 2011 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse : sporadic error
Replies: 19
Views: 4182

Re: xbrowse : sporadic error

... RETURN I got exact the same error list as mine user Frank I don't believe it will solve the problem , the real problem is that for some reason ::aDisplay is empty. Yes. This is the real reason. One case was resolved recently. When HScroll bar is moved in a single column browse, this was happening. ...
by Demont Brecht
Mon Nov 07, 2011 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse : sporadic error
Replies: 19
Views: 4182

Re: xbrowse : sporadic error

I don't believe it will solve the problem , the real problem is that for some reason ::aDisplay is empty. Yes. This is the real reason. One case was resolved recently. When HScroll bar is moved in a single column browse, this was happening. This was fixed. We need ...
by nageswaragunupudi
Sun Nov 06, 2011 8:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse : sporadic error
Replies: 19
Views: 4182

Re: xbrowse : sporadic error

Antonio, /* METHOD ColAtPos( nPos ) INLINE ::aCols[ ::aDisplay[ MinMax( If( nPos == nil, 1, nPos ), 1, Max( Len( ::aDisplay ), 1 ) ) ] ] */ I don't believe it will solve the problem , the real problem is that for some reason ::aDisplay is empty. With ...
by Demont Brecht
Sun Nov 06, 2011 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse : sporadic error
Replies: 19
Views: 4182
Next

Return to advanced search

cron