Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Delphi Quick Start in Developer's Guide (Read 4982 times)
unisnk
Junior Member
**
Offline


D'Oh!

Posts: 59
Joined: Sep 3rd, 2008
Delphi Quick Start in Developer's Guide
Dec 9th, 2008 at 1:35pm
Print Post  
Just a little curiosity...

I saw this code in the page "Delphi Quick Start"

Code
Select All
var  arrowsOut: IArrows;
[...]
arrowsOut := boxSelected.Get_OutgoingArrows;
for iArrow := 0 to arrowsOut.Get_count() - 1 do 



now the methods I use in my code are sligthly different (I don't use "get_")

Code
Select All
var  arrowsOut: IArrows;
[...]
arrowsOut := boxSelected.OutgoingArrows;
for iArrow := 0 to arrowsOut.count - 1 do 




Am I wrong using the same methods without "get_" prefix? The methods with "get_" are not shown with code-autocompletion but when I compile the program with them, it runs without problems...

Which is the better way?
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Delphi Quick Start in Developer's Guide
Reply #1 - Dec 9th, 2008 at 2:26pm
Print Post  
I don't think there would be any difference. Perhaps that's something left from the days of Delphi 4 8)
  
Back to top
 
IP Logged
 
unisnk
Junior Member
**
Offline


D'Oh!

Posts: 59
Joined: Sep 3rd, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #2 - Dec 9th, 2008 at 2:46pm
Print Post  
good Grin

Delphi 4? It was History, man! Shocked
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Delphi Quick Start in Developer's Guide
Reply #3 - Dec 9th, 2008 at 3:02pm
Print Post  
flowchartx is such a historic component Wink
  
Back to top
 
IP Logged
 
Stuart
Junior Member
**
Offline


Short, fat and bald, that's
me.

Posts: 64
Location: Lincs, UK
Joined: Sep 5th, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #4 - Dec 11th, 2008 at 9:12am
Print Post  
unisnk wrote on Dec 9th, 2008 at 2:46pm:
Delphi 4? It was History, man! Shocked

If Only that were true. Tongue We're still using it on a daily basis!
  

-- &&Stuart
Back to top
YIM  
IP Logged
 
unisnk
Junior Member
**
Offline


D'Oh!

Posts: 59
Joined: Sep 3rd, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #5 - Dec 11th, 2008 at 9:46am
Print Post  
Stuart wrote on Dec 11th, 2008 at 9:12am:
If Only that were true. Tongue We're still using it on a daily basis!


legacy systems? or well-tested environment?  Grin
  
Back to top
 
IP Logged
 
Stuart
Junior Member
**
Offline


Short, fat and bald, that's
me.

Posts: 64
Location: Lincs, UK
Joined: Sep 5th, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #6 - Dec 11th, 2008 at 9:50am
Print Post  
Commercial product. Constantly developed since nineteen hundred and frozen to death.

New version has just gone out of the door, now working on the next version. D4 will be with us for some while yet, I fear.
  

-- &&Stuart
Back to top
YIM  
IP Logged
 
unisnk
Junior Member
**
Offline


D'Oh!

Posts: 59
Joined: Sep 3rd, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #7 - Dec 11th, 2008 at 10:16am
Print Post  
Stuart wrote on Dec 11th, 2008 at 9:50am:
Commercial product. Constantly developed since nineteen hundred and frozen to death.

New version has just gone out of the door, now working on the next version. D4 will be with us for some while yet, I fear.


well, maybe you can't work with the "marvelous" ribbon forms, but I think you can develop a good product with D4 too...

good job!  Wink
  
Back to top
 
IP Logged
 
Stuart
Junior Member
**
Offline


Short, fat and bald, that's
me.

Posts: 64
Location: Lincs, UK
Joined: Sep 5th, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #8 - Dec 11th, 2008 at 10:20am
Print Post  
Granted, but try getting new 3rd party components!

Still, as you say, it works, and while it keeps doing the job, I can keep on paying the mortgage!  Wink
  

-- &&Stuart
Back to top
YIM  
IP Logged
 
unisnk
Junior Member
**
Offline


D'Oh!

Posts: 59
Joined: Sep 3rd, 2008
Re: Delphi Quick Start in Developer's Guide
Reply #9 - Dec 11th, 2008 at 11:27am
Print Post  
Stuart wrote on Dec 11th, 2008 at 10:20am:
[...] while it keeps doing the job, I can keep on paying the mortgage! Wink

we have the same issue Wink
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint