Search found 4235 matches: field

Return to advanced search

Re: Best use of aSelected in Xbrowse

... also change a other value based on the changed value, in Code A we need to program it but in Code B Xbrowse will handle also the change in other field, so less code True. For a few records this is better. But for bulk operations, Code-A is better and we can handle the consequential changes in ...
by nageswaragunupudi
Tue May 14, 2024 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Best use of aSelected in Xbrowse
Replies: 1
Views: 32

Best use of aSelected in Xbrowse

... also change a other value based on the changed value, in Code A we need to program it but in Code B Xbrowse will handle also the change in other field, so less code In large selections, It seems that code A can freeze ? (or just bad coding :D ) How can I show a Timer or visual reccount in Xbrowse ...
by Marc Venken
Tue May 14, 2024 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Best use of aSelected in Xbrowse
Replies: 1
Views: 32

How to make password GET viewable on demand?

Is it possible to make a password GET field viewable if user click to view password?
Something similar to what we see in most web forms

TIA
by hua
Mon May 13, 2024 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make password GET viewable on demand?
Replies: 6
Views: 95

Re: Filter on Xbrowse

João, have also a look in the filter setting of xbrowse self. The advantidge is that you already have all the field you want to filter on. #include "fivewin.ch"function Main()   local oDlg, oBrw, oFont   local aData   USE CUSTOMER   aData := FW_DbfToArray( ...
by Marc Venken
Mon May 06, 2024 3:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 773

Re: Filter on Xbrowse

... Otto, later I will learn MOD_HARBOUR, this name is very bad, it should have a more commercial name. Master Otto, how do I change the MARRIED FIELD .T., .F., for SI ó NO? Yes or No? Buenos días Maestro Otto, más tarde aprenderé MOD_HARBOUR, este nombre es muy malo, debería tener un nombre ...
by Marc Venken
Sat May 04, 2024 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 773

Re: Filter on Xbrowse

... Otto, later I will learn MOD_HARBOUR, this name is very bad, it should have a more commercial name. Master Otto, how do I change the MARRIED FIELD .T., .F., for SI ó NO? Yes or No? Buenos días Maestro Otto, más tarde aprenderé MOD_HARBOUR, este nombre es muy malo, debería tener un nombre ...
by karinha
Sat May 04, 2024 10:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 773

xbrowse report group

... but if I have an array how can I sort? I assume that the oBrw is open in autosort and I create the agroup array and field array doing it this way  AEval(  oBrw:aCols, { |o| If( o:lHide .or. Empty( o:cSortOrder ),, AAdd( aGroup, o:cCbxItem ...
by Silvio.Falconi
Mon Apr 29, 2024 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse report group
Replies: 0
Views: 48

Re: New txbrowse

... select one of the saved states ? I still like the idea to subclass xbrowse for our own purposes, and will look into it. Yes. Imagine you have many fields for customer archive. the programmer makes all the fields available to the end user but for space reasons sets some columns (defined columns) ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 459

FWHMYSQL Insert failing

Dear Friends, I'm having a huge problem with Insert/MySql. I have a Decimal field where I'm tryng to save the value 1(one), but it's saved as 0(zero). Bellow i'm showing a little sample where the problem is happening. function Main()LOCAL oCn, oAnt,nValInss,nValIn13,aVal,cvd_500  ...
by vilian
Fri Apr 05, 2024 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 434

Re: Talking to your apps

> From what I understand it works in every application, as long as the focus is in a text field

right! Thats why we invoke it when a GET has the focus :-)
by Antonio Linares
Fri Mar 29, 2024 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talking to your apps
Replies: 20
Views: 4021

Re: Talking to your apps

It's amazing It works even in my old console program!
I press Windows H And then I click on microphone on the left
From what I understand it works in every application, as long as the focus is in a text field
by MarcoBoschi
Fri Mar 29, 2024 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talking to your apps
Replies: 20
Views: 4021

Re: incremental search on Xbrowse

... ::cSeek )            ::SelectRow( 2 )  Nages I'm also interested in this change, I would also like to search for a word within the fields, how can I do it? I normally use get (cseek) and combo to change the field to search and I use multiselectcol I would like to add to the normal ...
by Silvio.Falconi
Wed Mar 27, 2024 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2107

Re: Question about performance RowSet

Hello Mr. Rao. I am try this: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" )if aRow == NIL // not found, then inserts    aRow := { "aa","bb" }    oCn:Upsert( "states", ...
by Eroni
Wed Mar 20, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4180

Re: Question about performance RowSet

I am try this: Code: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" ) if aRow == NIL // not found, then inserts aRow := { "aa","bb" } oCn:Upsert( "states", nil, { aRow } ) endif But ...
by nageswaragunupudi
Wed Mar 20, 2024 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4180

Re: FW_DbfSqlQuery con campos mayores de 256 carracteres

... string: oC:Open('Provider=vfpoledb;Data Source='+cPath+';Collating Sequence=general;') and the result is the same, when there are fields longer than 256 characters, the information in subsequent fields is returned truncated. Thinking that the reading that ADO performs is sequential ...
by VictorCasajuana
Fri Mar 08, 2024 2:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW_DbfSqlQuery con campos mayores de 256 carracteres
Replies: 3
Views: 676
Next

Return to advanced search