Search found 81 matches: narea

Return to advanced search

Re: FWH: MySql/MariaDB: RowSet object

... For sample METHOD FCount() INLINE ( ::oRc:FCount() ) //where ::oRc is rowset object created for this object instead of METHOD FCount() INLINE ( ::nArea )->( FCount() ) Could this approach work? And am I correct it is not possible to inherit from Mariadb connection RowSet class? Our database ...
by Taavi
Tue Oct 01, 2024 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 55
Views: 23591

Tdatabase ordcreate temp

I use tdatabase

Select( oTemp4:nArea )
index on oTemp4:jump To Temp

why make error ?
by Silvio.Falconi
Fri Jan 26, 2024 12:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tdatabase ordcreate temp
Replies: 2
Views: 590

How write a right name of a field

... How I can make to found the field on oDbf (tadatabase) I try with oDbf:&cField but not run ok I tried also with fieldWBlock(cField,oDbf:nArea ) It return me an array https://i.postimg.cc/0QvnXYWh/jj.png I try also with atemp:= fieldWBlock(cField,oDbf:nArea ) nNumero := ...
by Silvio.Falconi
Thu Apr 28, 2022 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How write a right name of a field
Replies: 6
Views: 645

Re: Nages Help for locate

... in TDatabase and locate is not buffered Function Locate_Records3(anno1,anno2,oDbf) local aLocate:= {} LOCAL nFirst,nLast oDbf:use() select(oDbf:nArea ) oDbf:gotop() locate for year(FIELD->data) = anno2 oDbf:load() if (oDbf:Found()) locate for year(FIELD->data) != anno2 ; next 60 // endif ...
by Silvio.Falconi
Sun Apr 17, 2022 11:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages Help for locate --- Resolved
Replies: 1
Views: 150

Re: TDatabase Class

... there some documentation? Can you try: msgInfo(oDbf:fieldname ) // where fieldname is an actual fieldname. Does that work? Also try: MsgInfo(oDBF:nArea) Note that TDatabase creates it's own unique workareas which is not going to be 9 in this case. With database objects you never deal with workareas. ...
by James Bott
Wed May 19, 2021 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2842

Re: fieldWBlock

Try
eval(fieldWBlock(aCampi[nFor],nArea ))
by ADutheil
Tue Nov 17, 2020 2:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fieldWBlock
Replies: 13
Views: 1603

Re: Printer class question - RESOLVED

... question and each Item action are in ElementActions function so there's no any class for the graphic items oItems:bMoved := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, .T. ) } oItems:bResized := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, ...
by Silvio.Falconi
Sat Oct 24, 2020 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printer class question - RESOLVED
Replies: 41
Views: 4961

Re: Fast Report´s future

... question and each Item action are in ElementActions function so there's no any class for the graphic items oItems:bMoved := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, .T. ) } oItems:bResized := {|| SetItemSize( i, nArea, cAreaIni ), MsgBarItem( i, nArea, cAreaIni,,, ...
by Silvio.Falconi
Wed May 13, 2020 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 8445

Re: Write a Block

FieldWBlock( cFieldName, oDbf:nArea )
by nageswaragunupudi
Wed Jun 26, 2019 3:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Write a Block
Replies: 4
Views: 911

Re: Migrating TDatabase to FWH19.03's from FWH11.08 (Resolved)

... := TDataBase():new(cAlias, a_[i,2])         ...      endif  next  4. At this point RTE still occur. Now it's because :nArea is 0. How can I set :nArea without using :SetArea()? I do not wish to use :SetArea() because it assigns :cAlias and :cFile with the same value ...
by nageswaragunupudi
Sat May 04, 2019 11:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating TDatabase to FWH19.03's from FWH11.08
Replies: 15
Views: 2455

Migrating TDatabase to FWH19.03's from FWH11.08

... := TDataBase():new(cAlias, a_[i,2])         ...      endif  next  4. At this point RTE still occur. Now it's because :nArea is 0. How can I set :nArea without using :SetArea()? I do not wish to use :SetArea() because it assigns :cAlias and :cFile with the same value ...
by hua
Thu May 02, 2019 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating TDatabase to FWH19.03's from FWH11.08
Replies: 15
Views: 2455

Re: XBrowse & Edit Dialogs: Writing Portable code (Recommended)

Uwe, seem this function is not right with tdatabase as sad James and Nages FUNC CreaCodiceClienti(oDbf) LOCAL nLast := 0 local nArea := Select() oDbf:OrdSetFocus(0) oDbf:GoBottom() nLast := Val(oDbf:NumCli) + 1 Select (nArea) RETURN StrZero(nLast,4) I have always done it this way and ...
by Silvio.Falconi
Sun Mar 31, 2019 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse & Edit Dialogs: Writing Portable code (Recommended)
Replies: 17
Views: 4096

Re: A toolbox of netfunctions

... ::cAlias, ::lShared, ::lReadOnly ) }, ; "Unable to open " + ::cFile + ". Retry?" ) ::SetArea( Select() ) SELECT 0 else ::nArea := 0 ::cAlias := "" return .f. endif ... ... return ::Used() FUNCTION NET_PACKZAP(nStyle)MsgAlert( oCust:lShared() ...
by ukoenig
Thu Jan 24, 2019 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A toolbox of netfunctions and tDatabase-tests
Replies: 30
Views: 7416

Re: How to Create Easy Report Designer Files ?

... 'CRULER1' .\source\ereport.prg(5164) Warning W0001 Ambiguous reference 'CRULER2' .\source\ereport.prg(5167) Warning W0001 Ambiguous reference 'NAREA' .\source\ereport.prg(5167) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5167) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5169) ...
by Otto
Sun Jan 06, 2019 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Create Easy Report Designer Files ?
Replies: 35
Views: 7858

Re: How to Create Easy Report Designer Files ?

... 'CRULER1' .\source\ereport.prg(5164) Warning W0001 Ambiguous reference 'CRULER2' .\source\ereport.prg(5167) Warning W0001 Ambiguous reference 'NAREA' .\source\ereport.prg(5167) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5167) Warning W0001 Ambiguous reference 'SELF' .\source\ereport.prg(5169) ...
by Otto
Sat Jan 05, 2019 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Create Easy Report Designer Files ?
Replies: 35
Views: 7858
Next

Return to advanced search