Search found 19 matches: instantiated

Return to advanced search

New FTDN May/Mayo 2019 (FWH 19.05)

... // list of tables HasTable( cTable ) --> lExists Table( cTable ) --> ORM_Table Object Close() - Class ORM_Table() Table object can be instantiated either by calling oTable := oConnection:Table( cTableName ) or oTable := ORM_Table():New( oConnection, cTableName ) Methods: Navigation: ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3160

Re: oBarGet on xbrowse header

... 2. I tried to add a button to the get object on the header of an xbrowse but I get a runtime error. I'm guessing the get object hasn't been instantiated until :CreateFromCode() is executed. oBarGets are created during execution of oBrw:Adjust() by calling an "internal" method oCol:CreateBarGet(). ...
by nageswaragunupudi
Thu Dec 07, 2017 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBarGet on xbrowse header
Replies: 7
Views: 1033

oBarGet on xbrowse header

... 2. I tried to add a button to the get object on the header of an xbrowse but I get a runtime error. I'm guessing the get object hasn't been instantiated until :CreateFromCode() is executed. ...      :nHeaderHeight := 40       :lGetBar       := .t.      :oCol:oBarGet:bAction   := {|| ...
by reinaldocrespo
Thu Dec 07, 2017 12:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oBarGet on xbrowse header
Replies: 7
Views: 1033

Re: xBrowse + OO Array

James, Enrico, According to the book, "Business Engineering with Object Technology," by David A. Taylor, P 91, classes that never get instantiated themselves are called "abstract" classes. If they are instantiated themselves, then they are called "concrete" classes. ...
by Enrico Maria Giordano
Wed Jun 04, 2014 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + OO Array
Replies: 16
Views: 4796

Re: xBrowse + OO Array

Enrico, According to the book, "Business Engineering with Object Technology," by David A. Taylor, P 91, classes that never get instantiated themselves are called "abstract" classes. If they are instantiated themselves, then they are called "concrete" classes. ...
by James Bott
Wed Jun 04, 2014 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + OO Array
Replies: 16
Views: 4796

Re: xBrowse + OO Array

James,

James Bott wrote:A TDataSource class could be a parent class of these various types of classes that is never actually instantiated by itself, but rather just used as an inheritance source. I have seen this done before.


Yes, in OOD they call it an "interface", if I remember correctly.

EMG
by Enrico Maria Giordano
Wed Jun 04, 2014 5:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + OO Array
Replies: 16
Views: 4796

Re: xBrowse + OO Array

... class, a SQLite class, a MySQL class, etc. A TDataSource class could be a parent class of these various types of classes that is never actually instantiated by itself, but rather just used as an inheritance source. I have seen this done before. James
by James Bott
Wed Jun 04, 2014 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + OO Array
Replies: 16
Views: 4796

Re: Debug

... PACKIT(203) - n (A): Array Length is: 0 ... Array values follow: Ofcourse, the code can be tailored to suit yourselves; perhaps even displaying instantiated Object variables in a tabular form. Best regards, Angelo.c Dear Angelo, What is output debug window ? I try your modified code but it doesn't ...
by dutch
Mon Oct 31, 2011 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Debug
Replies: 26
Views: 8439

New FTDN May/Mayo 2011 (FWH 11.05)

... cleared when unzoomed. Fixed * Enhancement: TRect class in rect.prg: (a) TRect():new() now accepts aRect also as a single paramter. Object can be instantiated either with TRect():New( nTop, nLeft, nBottom, nRight ) or TRect():New( aRect ) (b) New width or height can be assigned to oRect:nWidth ...
by Antonio Linares
Sat May 28, 2011 10:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2011 (FWH 11.05)
Replies: 0
Views: 1423

Re: access to a supplier web site under program control

... you need something like the code below. I could not get it working with my version of FWH (I think it is 10.06). The activeX object never gets instantiated properly. You will need to change the 1000 to whatever Dealer number you need. James /*Purpose: Test auto login to website*/#include "fivewin.ch"function ...
by James Bott
Tue Apr 05, 2011 5:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: access to a supplier web site under program control
Replies: 21
Views: 7620

Re: Best resource editor

... files) and those resources get embedded inside your EXE (or DLL) and you can instantiate those objects from your application at runtime, and once instantiated, you can modify them, etc. From Visual Basic on, Microsoft and other companies started to use non standard ways of storing resources, thus ...
by Antonio Linares
Thu Mar 19, 2009 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Best resource editor
Replies: 10
Views: 2902

Re: Debug

... PACKIT(203) - n (A): Array Length is: 0 ... Array values follow: Ofcourse, the code can be tailored to suit yourselves; perhaps even displaying instantiated Object variables in a tabular form. Best regards, Angelo.c
by angelo.c
Wed Mar 18, 2009 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Debug
Replies: 26
Views: 8439

Re: xBrowse from resource

Otto wrote:Enrico,
I tried to understand the sourcecode but I don’t find out where the
METHOD Initiate is called from if you have build the xBrowse with CreateFromResource.

Could you please give me a hint.
Thanks in advance
Otto


Initiate() method is internally called when the object is instantiated.

EMG
by Enrico Maria Giordano
Sat Feb 07, 2009 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse from resource
Replies: 24
Views: 4572

Hello Is it possible to pass instantiated objects from a FW++ exe application to FWH *.dll code? What I would like to do is to have my current application (which is mainly written in FW++) call and pass objects to a FWH DLL code. My current ...
by angelo.c
Tue Jul 08, 2008 11:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 32-bit DLLs with Harbour Code - Any More Progress
Replies: 14
Views: 5860

New FTDN June/Junio 2008 (8.06)

... TXBrwChild() } ). Then the commands will invoke the derived class, instead of the parent class. Also new instances of derived browse class can be instantiated with TXBrows():New() ( not TXBrowse():new() ). b) xbrowse.ch. Constants DATATTYPE_* are moved from XBrowse.Prg to XBrowse.Ch. c) Added ...
by Antonio Linares
Fri Jun 27, 2008 11:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2008 (8.06)
Replies: 1
Views: 3004
Next

Return to advanced search