Search found 30 matches: subclasses

Return to advanced search

Re: EasyReport progress?

... to change the ER graphic engine and inserting a class equal to c5 report that is the parent class that creates the part to be drawn and many subclasses for the graphic design and to insert the objects. The parent class must support the movement of each object. As long as you use Fivewin's ...
by Silvio.Falconi
Thu Jul 29, 2021 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport progress?
Replies: 86
Views: 8868

Re: Simulate header report with oprn:Box

... 550, 784, oClient,0,rgb(173,197,229), { 20, 20, 297+20, 210+20 } ) on a oClient ( odlg,oPanel,...) and that class works with all its graphics subclasses ( line, box, ...) and it save to ini or another format file ER only uses one function to create everything and then uses Tcontrol's dots ...
by Silvio.Falconi
Fri May 14, 2021 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Simulate header report with oprn:Box
Replies: 9
Views: 877

Re: Silvio: Reports

... areas of the sheet to print and in this class the class c5report must be inserted which is a parent class that creates the white area and has some subclasses (line, box, circle, fields, texts, image) . This parent class manages the movement of each object (dots) not like the tcontrol class but ...
by Silvio.Falconi
Fri Jan 22, 2021 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvio: Reports
Replies: 16
Views: 1949

Re: EasyReport progress?

... the MyRpt structure, i.e. with the display of a page that supports the graphic classes that Paco created, i.e. the parent class TrptItem and the subclasses (TRptBoxItem, TRptImageItem, TRptLineItem, TRptTextItem, etc.) to modify the data use the Inspector class (as Myrpt does) or the simplest ...
by Silvio.Falconi
Mon Dec 21, 2020 12:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport progress?
Replies: 86
Views: 8868

Re: EasyReport progress?

... Is there any progress? Thanks :D there are no small ER problems but big problems, the objects must not be created by Tcontrol but must belong as subclasses of a general parent class as I have already explained more times to gurus, you have to rewrite all or part of it - A Treportdesigner class ...
by Silvio.Falconi
Sun Dec 13, 2020 5:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport progress?
Replies: 86
Views: 8868

Re: Easyreport " the reverenge"

... for all of us the better solution. there are no small ER problems but big problems, the objects must not be created by Tcontrol but must belong as subclasses of a general parent class as I have already explained to you, you have to rewrite all or part of it - A Treportdesigner class where a white ...
by Silvio.Falconi
Sat May 16, 2020 1:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Easyreport " the reverenge"
Replies: 3
Views: 712

Re: Fast Report´s future

... should be, just as happens in the LINE control of the figure that I posted How is it resolved? By creating a base class Telementi and then all subclasses for each graphic object just like Charles did in MyRpt, or Paco on C5Report or modify Tcontrol there are no other solutions the non-experts ...
by Silvio.Falconi
Wed May 13, 2020 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 6039

Re: Fast Report´s future

... not work, did not work well and only a waste of time, the designer must rewrite it from the beginning as I said with a main class Elements and subclasses for the lines for the boxes and the you imagine just like Paco did there are people who have created other more functional systems for example ...
by Silvio.Falconi
Tue May 12, 2020 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 6039

Re: Fast Report´s future

... never corrected For example the procedure of the elements (Box, line, ..) is badly created, it had to be corrected and an Elements class and then subclasses (tbox, tLine, tImage, ...) Each area had to have the ability to zoom, this is important because many people like myself have difficulty creating ...
by Silvio.Falconi
Tue May 12, 2020 10:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 6039

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

... you are doing. >You must know that the current situation in a simple little program 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 ...
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: 3349

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

... you are doing. >You must know that the current situation in a simple little program 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 ...
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: 3349

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

... old wbrowse again. You must know that the current situation in a simple little program using a single archive must 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 ...
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: 3349

Re: dbfs on Network : wich performance method?

... this before but I forgot. One of the great things about OOP is that you can move common code up the heirarchy and it is inherited by all the subclasses. If you can write each piece of code only once then you only have to change it once if you need or want to. You also eliminate many lines ...
by James Bott
Tue Oct 30, 2018 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfs on Network : wich performance method?
Replies: 26
Views: 5450

Re: Class syntax not working

... running. I ran some class scoping tests and this is what I found. FW/Clipper HIDDEN Only visible within the class in which it is defined and it's subclasses. PROTECTED Visible everywhere. Not assignable outside the class or subclass. READONLY Same as protected. FWH/Harbour All class scope syntax ...
by James Bott
Fri Jun 30, 2017 10:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Class syntax not working
Replies: 6
Views: 1201

Re: 15.10 Browse problem

tData ( James Bott ) which is an extension of tDatabase.

Actually, all of my databases are themselves object classes as subclasses of tdata, thus:

oOrders <- tData <- tDatabase
by TimStone
Fri Jan 08, 2016 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 15.10 Browse problem
Replies: 27
Views: 8430
Next

Return to advanced search