Search found 36 matches: increments

Return to advanced search

New FTDN April/Abril 2023 (FWH 23.04)

... and DateTime variables, following keys have this functionality: "=" Assigns Current Date " " Assigns Blank date "+" Increments the get by one day/month/year/hour,etc depending on the position of the cursor "-" Decrements the date as above. This feature can ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1757

Re: to Nages: test for tdatabase

... structure of every table using the above system. "ROWID" : Field Type "+" Autoincrement numeric field. DBFCDX automatically increments the value in this field every time a new record is appended. Uniqueness and chronological continuity are assured even in multi-user environments. ...
by nageswaragunupudi
Sun May 12, 2019 4:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5688

Re: to Nages: test for tdatabase

... I have classes for each process like work orders, my Add() method appends a record, fills the buffers with blanks, then goes to the counter dbf, increments the proper number, saves the value back to the record, and saves it to the appended record. The interaction with the counters file takes ...
by nageswaragunupudi
Sat Apr 27, 2019 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5688

Re: to Nages: test for tdatabase

... I have classes for each process like work orders, my Add() method appends a record, fills the buffers with blanks, then goes to the counter dbf, increments the proper number, saves the value back to the record, and saves it to the appended record. The interaction with the counters file takes ...
by TimStone
Sat Apr 27, 2019 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5688

Re: oCn:ImportFromDBF function autoincrement id feature problem

... In that case, please let us know how do you like to maintain this field in MySql? (a) As Autoincrement field? In that case, the server itself increments the value and you can not programmatically assign any values to this field. OR (b) As a simple numeric field? In that case you should programmatically ...
by nageswaragunupudi
Sun Aug 26, 2018 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCn:ImportFromDBF function autoincrement id feature (Solved)
Replies: 5
Views: 842

Re: TGraph 2 Y-axis for different's scales

... with a "Y" and there is no setting for the maximum X-axis. The variable name should be nYMaxValue. nXRanges - number of Y-axis label increments. This would be better labeled nYIncrements cTitX - This is for the Y-axis and would be better named cYTitle. One wonders, why was it abbreviated ...
by James Bott
Wed Aug 09, 2017 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGraph 2 Y-axis for different's scales
Replies: 20
Views: 3517

Re: TGraph 2 Y-axis for different's scales

Heber, Here is an example chart. I think this is the best we can do with TChart without modifying it. TChart cannot handle putting different axis increments on the right-hand side. And, ideally you would want to give the axis itself a label (like "Gas Flow MMPCD") which would also require ...
by James Bott
Mon Aug 07, 2017 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGraph 2 Y-axis for different's scales
Replies: 20
Views: 3517

Re: TGraph 2 Y-axis for different's scales

Hebert, If they are two different graphs, then they can have different ranges on the Y-axis and the increments will be different. So, for instance, the bottom graph could have a range from 300,000 to 500,000 and the top one could have a range from 400,000 to 5 million even ...
by James Bott
Sun Aug 06, 2017 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGraph 2 Y-axis for different's scales
Replies: 20
Views: 3517

Re: class tprinter and a dot-matrix printer

... printers should be: "27,69" SetCoors(r,c) Let you change the current row and col is the equivalent of SetPrc() of Ca-Clipper NewLine() Increments the current row Write(cText) Prints the string cText in the current row and column Say(nRow ,; Prints the string cText in nRow, nCol nCol ...
by ukoenig
Sun Mar 26, 2017 3:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: class tprinter and a dot-matrix printer
Replies: 2
Views: 767

Re: Ejemplo TdosPrn

... printers should be: "27,69" SetCoors(r,c) Let you change the current row and col is the equivalent of SetPrc() of Ca-Clipper NewLine() Increments the current row Write(cText) Prints the string cText in the current row and column Say(nRow ,; Prints the string cText in nRow, nCol nCol ...
by LuisPonce
Thu Aug 18, 2016 4:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo TdosPrn
Replies: 11
Views: 2755

Re: Saving bitmap from TXImage.

... a code (1,2,3)? This would be easier to remember. James This is what is in my mind too. Nages, Actually, would it be possible to rotate in degree increments( e.g. 92 degrees)? This would help de-skew crooked scans, etc.. James The present function is only a wrapper to the gdi+ function, which ...
by nageswaragunupudi
Mon Feb 22, 2016 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving bitmap from TXImage.
Replies: 14
Views: 2939

Re: Saving bitmap from TXImage.

Nages,

May I suggest just using the degrees themselves (90,180,270) for the rotation rather than a code (1,2,3)? This would be easier to remember.

Actually, would it be possible to rotate in degree increments( e.g. 92 degrees)? This would help de-skew crooked scans, etc..

James
by James Bott
Mon Feb 22, 2016 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving bitmap from TXImage.
Replies: 14
Views: 2939

Re: ADO and Lock

... ( ie. invoice numbers, client account numbers, etc ). When someone wants to create a new invoice, a very simple call grabs the last number used, increments it, saves it, and gives it to the client machine. This takes a fraction of a second. Over all the years I've used the system, with probably ...
by TimStone
Wed Aug 26, 2015 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO and Lock
Replies: 27
Views: 6944

Re: DBF to SQL converter program

... user is updating the sequece at the same time. (3) implement a row version field. Most SQL engines allow you to have a rowVersion field that auto-increments any time that record is written/updated. This will allow you to know if someone else has updated the record since you last read it. Keep ...
by reinaldocrespo
Tue Aug 25, 2015 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 17991

Re: Record Lock problem

... it using oDBF:load(). Or use both ideas. You can build all this logic into a subclass of TDatabase. Create a new Append method that automatically increments the primary key field and saves it to the newly appended record, then calls the load() method (to get the primary key into the buffer). Regards, ...
by Wanderson
Fri Aug 16, 2013 3:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Record Lock problem
Replies: 14
Views: 3811
Next

Return to advanced search