Search found 76 matches: field1

Return to advanced search

Re: Action execute when at bottom of xbrowse

... YourTable table" ) RETURN(.F.) END TRY select 1 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() ...
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: FUNNY Indexing

Hi,

INDEX ON STR(VAL(MyDbf->Field1),LEN(MyDbf->Field1)) TO MyIndex

Yes this is going well ....

Enrico ...this is problem in FWH too if you use NTX index ...with CDX there is no problem.

Thanks to all,
Best regards,
by avista
Mon Jan 23, 2012 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FUNNY Indexing
Replies: 14
Views: 2456

FUNNY Indexing

... {"11","9","9999999999","99999999999","11111111111" } DbCreate( "MyDbf.dbf", { { "Field1", "C", 13, 0 } } ) USE MyDbf FOR i = 1 TO LEN( aData) DbAppend() REPLACE Field1 WITH aData[ i ] NEXT INDEX ON VAL(MyDbf->Field1) ...
by avista
Sun Jan 22, 2012 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FUNNY Indexing
Replies: 14
Views: 2456

Re: Error System Stopped Working

Hi Tim; Could it be that what you are getting is a gpf? A way to test is to manually introduce semantics error such as; MsgInfo( nonexitant->field1 ) //where that work area is not in use. or local cText := "some text" if cText endif That should compile fine yet it would cause the ...
by reinaldocrespo
Thu Jan 12, 2012 8:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error System Stopped Working
Replies: 14
Views: 3197

Re: for. Mr. Rao

... ok and we shall see him soon here in this forum. As per your questions , i do this frequently 1. Load dbf into an array while ! eof() aadd(TVISU,{field1,file2,filed3,ctod(field4) ....}) // You can also transform field dates ..etc Browsing the array This is a sample where i browse certain fields ...
by Richard Chidiak
Sun Apr 03, 2011 3:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: for. Mr. Rao
Replies: 11
Views: 2086

How to browse memo text (effectively)

... (Alias). With other words: As far as I know, it’s not possible to alter the leading table, you can’t do something like this: Row 1: table1->Field1… n Row 2: table1->Field1…n … Row n: table2-> Field1…n … Row n+k: table1->Field1…n … So all informations you want to browse, must have ...
by frose
Fri Nov 26, 2010 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse – memofields
Replies: 18
Views: 5249

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

LA 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> ...
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 ...

... to read 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 ...
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 ...

... fields 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 ...
by Adolfo
Wed Oct 28, 2009 11:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Choosing SQL database ...
Replies: 118
Views: 30458

Re: convert program to a network version

... return(.f.) endif database->field := cValue unlock // reclock() select database if reclock( 5 ) // time-out else return(.f.) endif database->field1 := cValue unlock Hope this helps.. Rick Lipkin /* LOGICAL NETUSE( CDATABASE, LOPENMODE, NSECONDS )  CHARACTER CDATABASE      - NAME OF DATABASE  ...
by Rick Lipkin
Mon Jul 20, 2009 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5535

Re: Network update problem with timer

... yes, of cause. The 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.
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

... ) RETURN So, 2 problems: 1. Border and scrollbar in ActiveX 2. Tab does not go from field1 to fields2 or in the sample from field1 to submit button. Tab is handled by the WINDOW instead of the ACTIVEX. I also tried to put the "oActiveX:nDlgCode ...
by Patrick Mast
Thu Sep 11, 2008 8:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX NO BORDER
Replies: 25
Views: 4615

Browsing generally

... {"+ cLine + "} }") Not perfect, but you could do it like this as a last resort : bLine:=&("{|| {MyBrwLine()} }") FUNCTION MyBrwLine() RETURN {Field1, Field2, Field3.... Field35} -------------------------------------------------------------------------------- Please look at the .JPG: ( WIN3.JPG ...
by Antonio Linares
Wed Aug 27, 2008 7:35 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 65511
PreviousNext

Return to advanced search