Search found 86 matches: trecord

Return to advanced search

Re: Finding XBrowse current record

... you can also do it with a database. You can ignore the functions ... they are specialized processes. Here is another snippet of code that employs tRecord. When the record changes, tRecord is loaded from the new ( highlighted ) row, and then the fields are all individually displayed. The browse ...
by TimStone
Wed Jul 07, 2021 4:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding XBrowse current record
Replies: 11
Views: 1390

Re: To Nages Problem with Tdatabase and new DAtepick

... oPrenotazione:= oReservations:Record(.t.) /record() With tdata CLASS TReservatios from Tdata METHOD New() ENDCLASS CLASS TReserva from Trecord METHOD New() ENDCLASS oReservas := TReservations():New(.....) oOne_Reserva:=TReserva():New(...) and Mr James sad me allway to not to use type ...
by Silvio.Falconi
Thu May 06, 2021 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Problem with Tdatabase and new DAtepick
Replies: 13
Views: 1746

Re: XBrowse edit only one column

I understand you want to browse and edit an array of your TRecord() objects. We do not have TRecord class or TData class. We prepared this sample using TDatabase and TDataRow (now FW_Record) classes of FWH. First please build and run this program as it ...
by nageswaragunupudi
Tue Jun 18, 2019 3:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse edit only one column
Replies: 26
Views: 2937

Re: xBrowse edit dialog and navigation

... You can also define the menus for buttons ... and it all works quite smoothly. You will notice that I'm using data objects. I use tData / tRecord. The browse references the file as a tData object. A tRecord object is created, and each time a new record is highlighted, the :load() places ...
by TimStone
Mon Jun 03, 2019 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse edit dialog and navigation
Replies: 26
Views: 3956

Re: xBrowse edit dialog and navigation

... and a faster means of moving through a lot of data. It has absolutely no relationship to the database ( though I do use tdatabase / tdata / trecord ) since I built the same concept back with Clipper and DOS ... and in fact, it probably dates all the way back to dBase II ...
by TimStone
Sun Jun 02, 2019 2:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse edit dialog and navigation
Replies: 26
Views: 3956

Re: To James Bott - Error Using TData

... for him this is logical I'm sorry Silvio, maybe you are not understanding what I said. There is never a lost number using my[b] stock TData and TRecord classes . They are built differently than what you want. ID's are only assigned when a new record is saved. Thus, there are never any lost IDs ...
by Silvio.Falconi
Wed May 29, 2019 1:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5116

Re: To James Bott - Error Using TData

... for him this is logical I'm sorry Silvio, maybe you are not understanding what I said. There is never a lost number using my[b] stock TData and TRecord classes . They are built differently than what you want. ID's are only assigned when a new record is saved. Thus, there are never any lost IDs ...
by James Bott
Wed May 29, 2019 1:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5116

Re: To James Bott - Error Using TData

... locked, that woulde be a problem. The value of tData is that is a class that INHERITS from tDatabase and does many things automatically. Used with tRecord, it is a safe way to edit data easily outside of the saved records, and when the changes are complete and confirmed, it then saves the values ...
by TimStone
Tue May 28, 2019 6:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To James Bott - Error Using TData
Replies: 49
Views: 5116

Re: to Nages: test for tdatabase

... and down, the data in the upper half must be refreshed with the browse record in focus.  When I open the parts database, for example, I also open tRecord for the part in focus, and it will fill all the fields appropriately.  The data is all in buffers, and is only written back to the actual database ...
by TimStone
Fri May 10, 2019 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681

Re: to Nages: test for tdatabase

... had done it If we analyze the Tdb class it is the same Tdatabase of 2005 and Miguel_Angel_Cortés_Marchant added the class TObjDb which is a real Trecord is indeed in the methods of the Tdb we find the calls to this class    METHOD NewObj () CLASS TDb        ...
by Silvio.Falconi
Fri May 10, 2019 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681

Re: to Nages: test for tdatabase

... I used a system so long ago that it seems easier to me than James and Mr. Nages also in this system the tdatabase class was used but the trecord was not used and there was a small class that served as trecord I explain you the procedure give mr from Miguel_Angel_Cortés_Marchant many year ...
by Silvio.Falconi
Thu May 09, 2019 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681

Re: To Nages : Explain me how I must make this tdatabase

... using a single archive must move a series of classes and subclasses that I believe are lost system resources. >a TTclient class is linked to Trecord which in turn is linked to the class TTclienti which in turn is linked to the Tautoinc class which in turn is linked to the Tdata class which ...
by Silvio.Falconi
Wed Mar 06, 2019 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Explain me how I must make this tdatabase
Replies: 18
Views: 3313

Re: To Nages : Explain me how I must make this tdatabase

... using a single archive must move a series of classes and subclasses that I believe are lost system resources. >a TTclient class is linked to Trecord which in turn is linked to the class TTclienti which in turn is linked to the Tautoinc class which in turn is linked to the Tdata class which ...
by James Bott
Tue Mar 05, 2019 6:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Explain me how I must make this tdatabase
Replies: 18
Views: 3313

Re: To Nages : Explain me how I must make this tdatabase

... move a series of classes and subclasses that I believe are lost system resources. I'll give you a practical example. a TTclient class is linked to Trecord which in turn is linked to the class TTclienti which in turn is linked to the Tautoinc class which in turn is linked to the Tdata class which ...
by Silvio.Falconi
Mon Mar 04, 2019 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Explain me how I must make this tdatabase
Replies: 18
Views: 3313
Next

Return to advanced search