Search found 1875 matches: row

Return to advanced search

Re: xbrowse problem with :bLClicked

... I see what's going on here. You're experiencing some issues with the selection and deselection of records in your xbrowse, specifically when using the spacebar to toggle selection. Let's break it down and see if we can fix this. First, let's analyze the `:bLClicked` ...
by Antonio Linares
Mon Apr 22, 2024 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 84

xbrowse problem with :bLClicked

i have a xbrowse with :SetMultiSelectCol() with bRClicked I associated a menupopup with :bLClicked I click on a row and select it I made the same with :bKeyChar ( space button)   :bLClicked := { |r,c,f,oBrw| if( ...
by Silvio.Falconi
Sun Apr 21, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 84

SetMultiSelectCol() on line

I have an xbrowse created with an array without the :SetMultiSelectCol() and I have the ability to display a menupopup like this MENU oMenu POPUP if oBrw:IsSelectedRow() MENUITEM "Deselect the current row" action DeSelect_One_array(oBrw) ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 3
Views: 101

Re: Problem with valid email refresh btnbmp

Karinha,
For me it's no good
I have a dialog with many get , how row of source I must make for insert your source ?

look the sample's Nages , why here not run ?
by Silvio.Falconi
Mon Apr 08, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2370

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this. if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0HB_ADel( oBrw:aSelected, nAt, .t. )endifoBrw:Refresh() ...
by Silvio.Falconi
Mon Apr 01, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 681

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this.
Code: Select all  Expand view
if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0
HB_ADel( oBrw:aSelected, nAt, .t. )
endif
oBrw:Refresh()

We do not recommend this, but this is possible.
by nageswaragunupudi
Sun Mar 31, 2024 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 681

Re: xbrowse SelectRow method

oBrw:SelectRow( 2 ) toggles selection of the current row in focus.
by nageswaragunupudi
Sun Mar 31, 2024 5:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 681

Re: Problema super raro (SOLUCIONADO)

Mr. Rao and friends I apologize, after several nightmare nights, I have finally solved the problem, the problem was in the last line of this code. [code] oRsWrk := FW_OpenRecordSet(oApp:oCon,"SELECT " +; "*," +; "RUB_DES," +; "CON_DES " +; "FROM " +;...
by Armando
Thu Mar 28, 2024 1:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2099

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Silvio, a question yPos := 0 this is no good because the first panel can init from 18 and not from 0 row I not found the exact variable perhaps ::nTop ? as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel() yes but the first position ...
by Silvio.Falconi
Wed Feb 28, 2024 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 472

Re: To Nageswrao Del Objs on TscrollPanel

... of a Panel/dialog/window oPanel:aControls[ n ]:End()HB_ADel( oPanel:aControls[ n ], n, .t. ) To delete current row in XBrowse ( applies to arrays, dbf, ado or any data source) oBrw:Delete()oBrw:Refresh() This code: FOR i := 1 TO LEN(oBrw:aCols)oCol ...
by Silvio.Falconi
Wed Feb 28, 2024 8:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 660

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Silvio,
Silvio.Falconi wrote:a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?

as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel()
by Jimmy
Tue Feb 27, 2024 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 472

Re: To Nageswrao Del Objs on TscrollPanel

... of a Panel/dialog/window oPanel:aControls[ n ]:End()HB_ADel( oPanel:aControls[ n ], n, .t. ) To delete current row in XBrowse ( applies to arrays, dbf, ado or any data source) oBrw:Delete()oBrw:Refresh() This code: FOR i := 1 TO LEN(oBrw:aCols)oCol ...
by nageswaragunupudi
Tue Feb 27, 2024 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 660

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?
by Silvio.Falconi
Tue Feb 27, 2024 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 472

Re: RC to PRG generator

... create html files from RC files using the rc.prgr. However, I couldn't find a quick solution for how to solve the positioning. In html, I have a row/column-based positioning and with the RC files, it's absolute. It then requires a bit of logic to implement this, and I eventually gave up on the ...
by Otto
Mon Feb 12, 2024 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1197

Re: RAO advice on using Mysql

... the page required page. In the beginning it reads the first 100 records only and is ready for use. At the same time it also gets the total row count. If user uses GoBottom() it reads the last 100 records. If the user wants oRs:GoTo( 123040 ), then it reads 100 records around the row number ...
by nageswaragunupudi
Wed Feb 07, 2024 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 973
Next

Return to advanced search