Search found 48 matches: field2

Return to advanced search

Re: isexerunning

Enrico, all, solved!! I use database fields to make the title of the main window, like a->field1+a->field2, perhaps it has spaces in the field, not finding the window title, after use a constant as name of the main window, it worked. I think that all solutions posted work, ...
by norberto
Sun May 06, 2012 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: isexerunning (Solved)
Replies: 18
Views: 3944

Re: Action execute when at bottom of xbrowse

... Use temp excl zap oRs:MoveFirst() Do while .not. oRs:eof Select temp append blank temp->field1 := oRs:Fields("field1"):Value temp->field2 := oRs:Fields("field2"):Value ... ... oRs:MoveNext() Enddo select temp dbCommit() oRs:Close() select temp //// use in your app Rick ...
by Rick Lipkin
Tue Feb 21, 2012 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Action execute when at bottom of xbrowse
Replies: 7
Views: 1699

Re: FUNNY Indexing

Hi,

I never use numeric keys.
1st) In dates do not obtain good order; it's necessary dtos()
2st) Numerics do not permit add subkeys field1+ field2

I allways use character key expressions, are more controllables (length key) y expansives (subkeys)

Regards
by hmpaquito
Mon Jan 23, 2012 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FUNNY Indexing
Replies: 14
Views: 2456

Re: How i do to find in RecordSet?

Just an obvious question .. you are defining CliDes in your Select statement ? as in Select field1,field2,field3,CliDes .... or Select * ??

Rick Lipkin
by Rick Lipkin
Wed Nov 17, 2010 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How i do to find in RecordSet?
Replies: 5
Views: 847

Re: Mostrar base .MDB

... manera de adicionar, eliminar, modificar una fila en una tabla de access (MDB) es con las instrucciones de SQL INSERT INTO <tabla> (field1, field2, field2) (dato1, dato2, dato3) UPDATE <tabla> (field1, field2, field2) (dato1, dato2, dato3) WHERE field1 = 1234 DELETE <tabla> WHERE ...
by wmormar
Tue Aug 24, 2010 7:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mostrar base .MDB
Replies: 14
Views: 2702

Re: Choosing SQL database ...

... all the records across the network (but you would still only have one record in memory at a time). In the sample I do... select rut,nombre,field1,field2,field3 from clientes and "clientes" TABLE has 35 FIELDS, when I dobleclick the record, I do a new RECORDSET containing all the methods ...
by James Bott
Wed Oct 28, 2009 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Choosing SQL database ...

... you want to show, then you can LOAD whatever you want... so NET traffic is reduced dramatically.... In the sample I do... select rut,nombre,field1,field2,field3 from clientes and "clientes" TABLE has 35 FIELDS, when I dobleclick the record, I do a new RECORDSET containing all the methods ...
by Adolfo
Wed Oct 28, 2009 11:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: Network update problem with timer

... whole record buffer is written to file after record cursor is "touched". This helps to avoid multiple disk access on: FIELD1 := value1 FIELD2 := value2 ... FIELDn := valuen Use DBCOMMIT() (or move record pointer DBSKIP(), DBGOTO(), etc.) to force write of record buffer. EMG
by Enrico Maria Giordano
Fri Jan 30, 2009 2:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network update problem with timer
Replies: 10
Views: 1194

Browsing generally

... b) and in the fields clause use the handler number instead of the field name: REDEFINE LISTBOX.... FIELDS dbf->field, dbf->field2, IIF(deleted(),hBmp1,hBmp2),dbf->field3...... -------------------------------------------------------------------------------- Is it possible ...
by Antonio Linares
Wed Aug 27, 2008 7:35 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65559

... use appropriate connection string from http://www.connectionstrings.com ------------------------------- > oCol:bStrData := { || str(field1 + field2 + field3) } > it is not any more necessary in xbrowse to covert values as character values. Use of bStrData is deprecated according to documentation ...
by nageswaragunupudi
Fri Jun 20, 2008 5:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Footer sum of all numeric fileds in a row
Replies: 12
Views: 2816

How about something like:

oCol:bStrData := { || str(field1 + field2 + field3) }
by James Bott
Thu Jun 19, 2008 1:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Footer sum of all numeric fileds in a row
Replies: 12
Views: 2816

Existencia de un DATA

... estoy haciendo pruebas y me gustaría saber ¿cómo puedo conocer la existencia de un data de una clase?, es decir. class myclass data field1 data field2 data field3 .... end class quiero saber si existe por ejemplo clase:field3. He probado: if type('clase:field3') == "UI",con valtype, pero no ...
by Mike Serra
Fri Mar 14, 2008 6:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Existencia de un DATA
Replies: 3
Views: 786

... in the browse you wish to view .. SELECT * from table can get UGLY if you have a lot of records and lots of fields .. consider SELECT field1,field2,field3 from table order by field1... and I would highly consider you stay away from a full table scan and include a where clause for only those ...
by Rick Lipkin
Mon Sep 17, 2007 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD Question
Replies: 4
Views: 1331

... oRdd:Skip(1) field->Field3="test3" *field->Field3="test update2" *do while n <= 10 * n++ * oRdd:oOdbc:append() * field->field2=n *enddo browse() oRdd:End() return nil
by xhbcoder
Thu Dec 21, 2006 3:59 pm
 
Forum: FiveWin for CA-Clipper
Topic: updating table from ODBC
Replies: 14
Views: 6265

... DO WHILE !(cDBFILE)->(EOF()) oSheet:Cells( nLine, 1 ):Value = (cDBFILE)->Field1 oSheet:Cells( nLine, 2 ):Value = (cDBFILE)->Field2 nLine:=nLine+1 (cDBFILE)->(DBSKIP(1)) ENDDO oExcel:Visible := .T.
by betoncu
Sun Mar 19, 2006 7:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL and FWH
Replies: 16
Views: 4724
PreviousNext

Return to advanced search