Search found 11 matches: selectbox

Return to advanced search

My journey to the web

... I also have with xBrowse on the desktop. In addition to sorting by clicking in the column header, I can also select specific sortorders via a selectbox. With a click on a letter I can then start the display. All data comes from DBF files. mod harbour and FIVEWIN work so well together and complement ...
by Otto
Sat Feb 26, 2022 8:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: My journey to the web
Replies: 2
Views: 464

Re: xBrowse ARRAY SELECTBOX

Hello Daniel,
thank you. Now it is ok.

Best regards,
Otto
by Otto
Fri Jul 24, 2009 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Otto...

this is a easy way to solve your problem... but you need modify the xbrowse class

open xbrowse.prg
find METHOD PaintData
in method find ( aprox line 6834 )
Code: Select all  Expand view
if ::bStrData != nil

change with
Code: Select all  Expand view
if ::bStrData != nil .and. ! ::hChecked

save file and include this in you project
by Daniel Garcia-Gil
Fri Jul 24, 2009 5:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

this was a minor bug earlier.
In the present version it is automatically suppressed
by nageswaragunupudi
Fri Jul 24, 2009 4:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Hello Daniel,

I tried
oBrw:aCols[1]:bStrData := {|| NIL } but with no success.
But on the PC I am working – production system – I have 9.01 installed.
I will try with a newer xBrowse later.
I will post the result tomorrow. Thanks again.
Best regards,
Otto
by Otto
Fri Jul 24, 2009 3:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Hello Otto.

Please try with bStrDta := {|| NIL }
by Daniel Garcia-Gil
Fri Jul 24, 2009 3:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Hello Mr. Rao, thank you. You are right. May I ask for some more help. How do I suppress the displaying of .T., .F. beside the bitmap? I would like to lock some records from being able to be changed. I tried like this. How would you suggest to implement this functionality. Thanks in advance Otto oBr...
by Otto
Fri Jul 24, 2009 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Mr Otto

Why all this code? I think this small function works well

oBrw:aCols[ 1 ]:SetCheck( { 'OKKLEIN', 'LEER' } )
oBrw:aCols[ 1 ]:nEditType := 1
by nageswaragunupudi
Fri Jul 24, 2009 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Hello James, thank you for putting me in the right direction. Now it is working. Best regards, Otto oBrw:aCols[1]:cHeader         := 'Löschen'    oBrw:aCols[1]:nWidth          := 90     oBrw:aCols[1]:nEditT...
by Otto
Fri Jul 24, 2009 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Re: xBrowse ARRAY SELECTBOX

Otto, Here is a copy of an old message about using a on/off bitmap in xBrowse. Is this what you are already doing? Why do you need to reload the array? James ---------------------------- Post subject: Re: Xbrowse newbiePosted: Fri Mar 20, 2009 11:07 am Joined: Fri Oct 07, 2005 5:50 am Posts: 474 Loc...
by James Bott
Fri Jul 24, 2009 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

xBrowse ARRAY SELECTBOX

To all, Would someone be so kind to post an example how to make best a xBrowse from an ARRAY with a select column (YES/NO). I always change the array and then read the whole array again and do a refresh. But I think this could be done easier. Thanks in advance, Otto http://www.atzwanger-soft...
by Otto
Fri Jul 24, 2009 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ARRAY SELECTBOX
Replies: 9
Views: 1398

Return to advanced search