Search found 18 matches: alternating

Return to advanced search

Re: SayBarCode control

... ... ( for all and Nages ) comments and your experiences are appreciated By linear we mean a bar code as we are normally used to seeing it: an alternating series of straight, white and black lines, of different thickness, usually accompanied by an underlying writing in legible characters by ...
by Silvio.Falconi
Wed Apr 10, 2019 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SayBarCode control
Replies: 34
Views: 6533

Re: Resource leak in menus

Please paste image of Task Manager Cristobal: In these 3 images you can see the GDI count increasing simply from alternating focus between the two windows. https://postimg.org/image/t6mph07rd/ https://postimg.org/image/ppfol1f05/ https://postimg.org/image/9dh4iq76b/ It would really ...
by Randal
Sat Jul 22, 2017 12:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resource leak in menus
Replies: 27
Views: 4818

Re: xBrowse

... am just going to set the browse records on a single color... to avoid all of the trouble... NOT AT ALL. I prepared the sample to show you that the alternating colors are painted correctly after deleting records. You see my sample. Works PERFECTLY. If it is not working for you, please recheck your ...
by nageswaragunupudi
Thu Sep 15, 2011 4:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse
Replies: 22
Views: 3550

Re: Why Some Browses with ADS are slow?

the alternating colors should be handled by the xbrowse class itself. FWH endeavors to provide what many programmers want. May be this will be provided sooner or later. Before that we need to achieve best speeds with ADS. I ...
by nageswaragunupudi
Thu Apr 14, 2011 2:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why Some Browses with ADS are slow?
Replies: 22
Views: 9967

Re: Why Some Browses with ADS are slow?

... execute a code block and change anything about the grid, including a row fgrnd/bckgrnd colors, but other than having to handle some exception, the alternating colors should be handled by the xbrowse class itself. As for ADS and large tables... don't you just love what you can do with ADS and still ...
by reinaldocrespo
Thu Apr 14, 2011 1:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why Some Browses with ADS are slow?
Replies: 22
Views: 9967

Re: A problem in xBrowse to change from Row to Col-preview ???

... as a data holder in xBrowse. There is a function. Can you explain this to me, or is there a change necessary for xbrowse ? I also noticed that the alternating color bars for xbrowse using this method don't always alternate. I assume that is the result of non-displayed, but deleted, records in the ...
by TimStone
Wed Aug 26, 2009 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem in xBrowse to change from Row to Col-preview ???
Replies: 11
Views: 2866

Re: To Antonio: help with xBrowse (newbie question)

... and other issues - not only things regarding TXBrowse - in a word file, to reflect them later on. Here is an extract of the TXBrowse part: XBrowse alternating row colors: http://forums.fivetechsupport.com/viewtopic.php?f=3&t=9711 Why Some Browses with ADS are slow? http://forums.fivetechsupport.com/viewtopic.php?f=3&t=9343 ...
by frose
Wed Apr 29, 2009 10:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: help with xBrowse (newbie question)
Replies: 4
Views: 954

Re: xBrowse sort

Julio,

yes!!!! you were right.
Now i got it working with oBrw:aCols[ n ]:SetOrder()

But be careful
You will have to set oBrw:aCols[ 3 ]:cOrder := 'D' after.
Otherwise with every call you have alternating ascending and descending sort orders.

Thanks again.
Regards,
Detlef
by Detlef Hoefner
Wed Jan 14, 2009 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse sort
Replies: 7
Views: 926

Example

... }} ) // degraded headers background color oLbxin:setColor( {14}, {{ CLR_HEADERTOP, CLR_HEADERBOT }} ) // degraded headers background color // Show alternating color in rows lClrFlag:=.f. oLbxin:bSkip := {|nRecs| nRecs := oInv:skipper( nRecs) } oLbxin:setColor( {2}, {{|| IIF(ADSKeyNo() % 2 == 0, ...
by TimStone
Sat Nov 08, 2008 1:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can I get an example of tsbrowse+ADS+TDatabase objects
Replies: 2
Views: 630

Update

... time to load the browse was much longer then the older version. It was about double what I see for a load time on a 9.5MB data file. 2) We have alternating color bars on each row. These disappeared with the new version. 3) When browsing, the highlight bar should extend all the way across the ...
by TimStone
Wed Feb 27, 2008 5:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse V.8.0
Replies: 13
Views: 3981

How to show OemToAnsi in xBrw. (when no Col's defined) ?

... | ( if(nRecs == nil, nRecs := 1,), ; nRecs:= (1)->(dbskipper( nRecs )), ; lClrFlag:= if( nRecs % 2 = 0, lClrFlag,!lClrFlag), nRecs) } // Define alternating row colors oBrw5:bClrStd := { || Colors() } oCol:nEditType := 1 oCol:bOnPostEdit := ; {|o, v, n| IIF( n != VK_ESCAPE, ; ( IIF( NET_RLOCK(), ...
by ukoenig
Sun Feb 17, 2008 1:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to show OemToAnsi in xBrw. (when no Col's defined) ?
Replies: 0
Views: 498

Problem with xBrowse in MDI-Childs

... | ( if(nRecs == nil, nRecs := 1,),nRecs:= ; (1)->(dbskipper( nRecs )), ; lClrFlag:= if( nRecs % 2 = 0, lClrFlag,!lClrFlag), nRecs) } // Define alternating row colors oBrw5:bClrStd:= {|| if(lClrFlag,{ CLR_BLACK, COLOR_LIGHT }, ; { CLR_BLACK, COLOR_DARK }) } oCol:nEditType := 1 oCol:bOnPostEdit ...
by ukoenig
Tue Jan 29, 2008 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse in MDI-Childs
Replies: 3
Views: 1125

xBrowse Darstellg. => OemToAnsi ???

... | ; ( if(nRecs == nil, nRecs := 1,),nRecs:= (1)->(dbskipper( nRecs )), ; lClrFlag:= if( nRecs % 2 = 0, lClrFlag,!lClrFlag), nRecs) } // Define alternating row colors oBrw5:bClrStd := { || Colors() } oCol:nEditType := 1 oCol:bOnPostEdit := ; {|o, v, n| IIF( n != VK_ESCAPE, ( IIF( NET_RLOCK(), ...
by ukoenig
Fri Jan 25, 2008 2:19 pm
 
Forum: All products support
Topic: xBrowse Darstellg. => OemToAnsi ???
Replies: 0
Views: 1288

XBrowse alternating row colors

There was a recent discussion of how to set alternating row colors in browses. I showed a way to do this for TWBrowse and TCBrowse. Here is an example for TXBrowse using the same technique. James /* Purpose : TXBrowse with alternating row colors ...
by James Bott
Mon Jan 21, 2008 7:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse alternating row colors
Replies: 36
Views: 5640

... you look at the size of the PRGs, TWBrowse is 68K and TSBrowse is 273K (and that is not counting the other modules for columns, etc.). You can use alternating row colors with TWBrowse by defining a bSkip block. Here is an example using a database object. lClrFlag:=.f. oLbx:bSkip:={| ...
by James Bott
Thu Oct 11, 2007 12:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Suggested enhancement
Replies: 4
Views: 1568
Next

Return to advanced search