Search found 2136 matches: current

Return to advanced search

Re: xbrowse problem with :bLClicked

...       Refresh_title(oBrw,oDlg,oDbf,cSection)   )}  Here's where the issue lies. When you press the spacebar, it checks if the current row is selected and updates the buttonbar accordingly. However, it doesn't take into account the overall selection state of the xbrowse. If ...
by Antonio Linares
Mon Apr 22, 2024 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 96

Re: ADS with 64bit FWH Apps

Ok, I will not touch the current builds for now but will wait for different opinions.
by Enrico Maria Giordano
Tue Apr 16, 2024 8:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2298

Re: ADS with 64bit FWH Apps

... really have to include those files. The end users probably already have them in place. In my case, I built the .exe for my application using the current .lib files for ADS. Originally I was including the four .dll files from the ADS 12 distributions. After seeing Reinaldo's comment, I instead ...
by TimStone
Tue Apr 16, 2024 7:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2298

SetMultiSelectCol() on line

... :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) MENUITEM "Deselect everything" action oBrw:SelectRow( 0 ) MENUITEM "Prints the selected ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 171

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() We do not recommend ...
by Silvio.Falconi
Mon Apr 01, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 683

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: 683

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: 683

Re: incremental search on Xbrowse

What is your FWH version?

Space is working with incremental search already without any changes in the current and recent versions.
by nageswaragunupudi
Mon Mar 25, 2024 3:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2006

Fulltext-Search

... multiple files by specifying more than one file name or using wildcards. For example, to search for "example" in all text files in the current directory, you would use: findstr "example" *.txt Piping and Redirection: findstr can be used with piping (|) to filter the output ...
by Otto
Fri Mar 15, 2024 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1244

Re: New FWH 24.02

This is the content of my current bcc32.cfg: -I@\..\include\windows\crtl;@\..\include\windows\sdk;@\..\include\dinkumware-O-O1-OS-Ob-Oc-Ov-c-d-g0-k--v--w-w!-w-inl-w-pro This is the content of my current ilink32.cfg: -Gn-aa-x To my opinion, ...
by Enrico Maria Giordano
Tue Mar 12, 2024 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.04
Replies: 37
Views: 7040

Re: New FWH 24.02

This is the content of my current bcc32.cfg:
Code: Select all  Expand view
-I@\..\include\windows\crtl;@\..\include\windows\sdk;@\..\include\dinkumware
-O
-O1
-OS
-Ob
-Oc
-Ov
-c
-d
-g0
-k-
-v-
-w
-w!
-w-inl
-w-pro

This is the content of my current ilink32.cfg:
Code: Select all  Expand view
-Gn
-aa
-x


To my opinion, everything is ok.
by driessen
Tue Mar 12, 2024 2:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.04
Replies: 37
Views: 7040

Re: ¿Cómo saber la fecha de los cambios a una carpeta?

Converting time in Spain to my local time in India.
We know the current UTC offset of Spain is +1:00 and India's is +5:30

Code: Select all  Expand view
tsUTC := FW_AddTime( DateTimeSpain. "-01:00:00" )
tsIndia := FW_AddTime( tsUTC, "05:30:00" )
by nageswaragunupudi
Mon Mar 04, 2024 5:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber la fecha de los cambios a una carpeta?
Replies: 6
Views: 192

FWH 24.02 new Class TWebView2

... webview_2.prg which are the equivalents for Class TWebView2. Please notice that there are some differences, so you will have to review your current code to get it properly working with new Class TWebView2 (in the future it will become the official FWH Class TWebView) Thanks for reading this ...
by Antonio Linares
Thu Feb 29, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 24.02 new Class TWebView2
Replies: 11
Views: 2465

Re: Data exchange between PC and Android device on the same loca

... and more in line with my old methods... But at the same time, I want to know how things are maded with the tools of the most "official" current programming side. You are right when you clarify about the myth of the exposed sources... Except perhaps in a scenario where due to its characteristics ...
by Arturo Lopesoria
Wed Feb 28, 2024 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 793

Re: To Nageswrao Del Objs on TscrollPanel

... nth control 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: 664
Next

Return to advanced search