Search found 209 matches: duplicate

Return to advanced search

Re: check existing first and last on customer

... principles of relational-database programming. Another principle is to store each piece of data, only once. In the real-world, you are going find duplicate names--people, cities, items, etc. And you MUST be able to have more than one customer, city, or item with the same name(s). A unique numeric ...
by James Bott
Mon Jun 14, 2021 3:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check existing first and last on customer - RESOLVED !!!
Replies: 23
Views: 2584

Re: duplicate record (tdatarow)

... right ? oElementi:= TDatabase():Open( , cDir+"Elementi", "DBFCDX", .T. ) oElementi:setorder(1) oElementi:gotop() //sample for duplicate oElemento:=Editsetup(oElementi,3,oElemento) Function Editsetup(oDbf,nMode,oRec)    IF nMode==1  //add    ...
by Silvio.Falconi
Sun Jun 06, 2021 7:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: duplicate record (tdatarow)
Replies: 3
Views: 561

Re: duplicate record (tdatarow)

thanks
by Silvio.Falconi
Thu Jun 03, 2021 9:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: duplicate record (tdatarow)
Replies: 3
Views: 561

Re: duplicate record (tdatarow)

Code: Select all  Expand view

oRec  := oDbf:Record()  // existing record
oRec:Copy()
oRec  := oDbf:Record( .t. ) // new record to append
oRec:Paste()
oRec:Edit()
 
by nageswaragunupudi
Thu Jun 03, 2021 3:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: duplicate record (tdatarow)
Replies: 3
Views: 561

duplicate record (tdatarow)

on tdatabase to inser ta a record I use

oElemento:=oElementi:record(.t.)

and to modify

oElemento:=oElementi:record()

How I can make to have a duplicate record to modify ?
by Silvio.Falconi
Wed Jun 02, 2021 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: duplicate record (tdatarow)
Replies: 3
Views: 561

Re: Strange issue: Excel

Thanks for the observation. My client reported teh problem but I was able to duplicate it on my system. Also it works in some instances and not others.

We both are using Office 365, so Excel versions are the same, but different locations.
by TimStone
Tue Jan 05, 2021 12:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange issue: Excel
Replies: 6
Views: 1022

Re: bug BTNBMP

It is a duplicate ( copy without the text ) to show the difference F5 Añadir is missing. is added as PROMPT :!: REDEFINE BTNBMP oBtn1 ID 500 OF oDlg ; RESOURCE " TI_ANADIR " ACTION oDlg:End() REDEFINE BTNBMP oBtn2 ID ...
by ukoenig
Sun Mar 22, 2020 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug BTNBMP
Replies: 24
Views: 2701

Re: FADE IN AND FADE OUT

It is not a duplicate of viewtopic.php?f=3&t=37673 ?
by AntoninoP
Mon Nov 18, 2019 1:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FADE IN AND FADE OUT
Replies: 3
Views: 539

Re: problem with GET and “” chars

Doing some fast testing, I can duplicate the behavior, I'm doing my test based on the idea of some kind of format being pasted to the get together with the text.... on different versions of FWH up to 12.04, and tested on an application compliled ...
by Bayron
Sun Nov 17, 2019 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with GET and “” chars
Replies: 10
Views: 1148

Re: An easy way to make a tree-browse

... oserver:query("insert into ac (acid,currency) select '"+acid1+"',currency from currency limit 1 on duplicate key update descrip=descrip"),; if(MYSQL_AFFECTED_ROWS(oserver:nSocket)>0,(obrow2:otreeitem:add(acid1),obrow2:refresh()),)) MENUITEM ...
by ShumingWang
Wed Jul 31, 2019 1:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3613

Re: [BUG] in source/font.prg and a question

or including maybe the existing function BUILDFONT( aFont ) :?:

You can, If you like to duplicate the existing functionality.
by nageswaragunupudi
Thu Jul 25, 2019 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: [BUG] in source/font.prg and a question
Replies: 8
Views: 1050

Re: To James Bott - Error Using TData

... from the last of the same table +1 without using sysdbf.file and autoincremental class sample: at init IF nMode == 1 .or. nMode == 3 // add new or duplicate oCust: gobottom () CCLI: = StrZero (Val (oCust: NumCli) +1.4) else cCli: = oRec: numcli // modify endif dialog @ 12, 5 SAY "Code:" ...
by James Bott
Wed May 29, 2019 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5320

Re: To James Bott - Error Using TData

... be a fraction of a second later ), gets the next number. With this being done thousands of times a day by my clients, we never have an issue with duplicate account numbers so I know it is safe. All of this discussion is about customer ID numbers, and unfortunately I still do not understand why ...
by TimStone
Wed May 29, 2019 3:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5320

Re: To James Bott - Error Using TData

... from the last of the same table +1 without using sysdbf.file and autoincremental class sample: at init IF nMode == 1 .or. nMode == 3 // add new or duplicate oCust: gobottom () CCLI: = StrZero (Val (oCust: NumCli) +1.4) else cCli: = oRec: numcli // modify endif dialog @ 12, 5 SAY "Code:" ...
by Silvio.Falconi
Wed May 29, 2019 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5320

Re: to Nages: test for tdatabase

... for all the archives and to have different types of lengths for example 4-digit customers, 10-digit orders Nages on the test I add a new Method to duplicate a record ( seem run ok) I have implemented your requirements. This is the program to test. #include "fivewin.ch"REQUEST DBFCDXstatic ...
by Silvio.Falconi
Sat May 11, 2019 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5904
PreviousNext

Return to advanced search