Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums
Old 08-17-2004, 09:39 PM   #1 (permalink)
Phaedrus
Registered User
 
Phaedrus's Avatar
 
Join Date: Feb 2003
Posts: 41
Phaedrus is on a distinguished road
Send a message via ICQ to Phaedrus
Delphi

Hi everyone. I was looking at starting coding (again) and I heard Delphi was the way to go. I got the complier and all that and I was wondering if any of you could point me to some Basic tutorials.
Phaedrus is offline   Reply With Quote
Old 08-18-2004, 02:10 AM   #2 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,148
Belisarius is on a distinguished road
Sorry, never heard of it.
__________________
GitS
Belisarius is offline   Reply With Quote
Old 08-18-2004, 04:14 AM   #3 (permalink)
Phaedrus
Registered User
 
Phaedrus's Avatar
 
Join Date: Feb 2003
Posts: 41
Phaedrus is on a distinguished road
Send a message via ICQ to Phaedrus
Never heard of Delphi? Goodness Gracious Me. I thought it was odd it didnt have its own forums, but I didnt think people wouldnt have even heard of it. My god Man, I mean, GEEZ! eh.

However I digress.
Phaedrus is offline   Reply With Quote
Old 08-18-2004, 04:37 AM   #4 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,148
Belisarius is on a distinguished road
Well (and this is after having just googled Delphi), as a Java coder there really isn't much reason to look at Borland for anything. Between NetBeans and Eclipse, we had all the IDE tools we need.
__________________
GitS
Belisarius is offline   Reply With Quote
Old 08-18-2004, 04:44 AM   #5 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,470
sde is on a distinguished road
we used to have a delphi forum in here, but no one ever used it. if we had more delphi coders around, i'd bring it back... but it's not very common now.

why do you choose delphi?
__________________
Mike
sde is offline   Reply With Quote
Old 08-18-2004, 04:56 AM   #6 (permalink)
Phaedrus
Registered User
 
Phaedrus's Avatar
 
Join Date: Feb 2003
Posts: 41
Phaedrus is on a distinguished road
Send a message via ICQ to Phaedrus
I asked a friend. He seems to know it well and recommended it as a first language. Frankly what would help me learn would be a most basic of the basic lexicon. But those basic terms wont be hard to find about the place.

I was just readin this as something that I managed to turn up.
Phaedrus is offline   Reply With Quote
Old 08-18-2004, 05:14 AM   #7 (permalink)
DavH27
PHP Pilgrim
 
DavH27's Avatar
 
Join Date: Aug 2004
Location: London
Posts: 167
DavH27 is on a distinguished road
Isn't Delphi a certain species of Dolphins?

If we think about it, if we learn programmign syntax of one language then we only need to purchase a reference manual for another language and we've instantly migrated!
__________________
Davy - Programming since 1998 [CV]
Currently working on: n/a
Status: n/a
DavH27 is offline   Reply With Quote
Old 08-18-2004, 05:21 AM   #8 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,470
sde is on a distinguished road
Quote:
Originally posted by DavH27
If we think about it, if we learn programmign syntax of one language then we only need to purchase a reference manual for another language and we've instantly migrated!
sort of, if you are using a language that uses c style syntax.
__________________
Mike
sde is offline   Reply With Quote
Old 08-18-2004, 05:25 AM   #9 (permalink)
Phaedrus
Registered User
 
Phaedrus's Avatar
 
Join Date: Feb 2003
Posts: 41
Phaedrus is on a distinguished road
Send a message via ICQ to Phaedrus
ARG!~

lol.I'f I think really hard I think I can understand most of what you just said.

So Am I to understand that C is fairly well a standard among programming languages.
Phaedrus is offline   Reply With Quote
Old 08-18-2004, 06:15 AM   #10 (permalink)
Phaedrus
Registered User
 
Phaedrus's Avatar
 
Join Date: Feb 2003
Posts: 41
Phaedrus is on a distinguished road
Send a message via ICQ to Phaedrus
I'm unsure how to proceed. On the one hand, I'd rather learn an object oriented language first (Can anyone suggest an easy one?) But on the other, Programming is kinda like a closed loop, its difficult to initially get in so you can start making progress. So maybe Delphi would be a good place to get a grounding since its all Visual and all that.
Phaedrus is offline   Reply With Quote
Old 08-18-2004, 06:18 AM   #11 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,148
Belisarius is on a distinguished road
C, C++, Java, and C# are all based off the syntax of C. That's not to say there aren't great differences, but the layout of the code is generally the same. Pascal has its own syntax.

Basically, if you see curly braces, boolean operations that consist of == and !=, you've got a C-syntax language.
__________________
GitS
Belisarius is offline   Reply With Quote
Old 08-18-2004, 06:24 AM   #12 (permalink)
DavH27
PHP Pilgrim
 
DavH27's Avatar
 
Join Date: Aug 2004
Location: London
Posts: 167
DavH27 is on a distinguished road
Something 'visual' that would be good for starting off would be Visual Basic 6. Make sure it is the 6 version and not it's scarier vb.NET brother.
__________________
Davy - Programming since 1998 [CV]
Currently working on: n/a
Status: n/a
DavH27 is offline   Reply With Quote
Old 08-18-2004, 06:37 AM   #13 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,470
sde is on a distinguished road
keep in mind that php and javascript are also c style stynax.

**

vb is a perfect example of something NOT c style. in vb your lines end with nothing ( or a new line )

c style syntax, lines ends with a semi colon

**

vb uses: if something then

c style uses: if(something){ }

**
that is all i really mean. vb is a very 'wordy' language, and i don't know other languages with similar syntax ( well maybe basic ) .. on the other hand, there are LOTS of languages that follow the style of coding that c uses .. php, perl, java, javascript, actionscript, c++, & c# ( there's more i can't think of )

make more sense?
__________________
Mike
sde is offline   Reply With Quote
Old 08-18-2004, 06:51 AM   #14 (permalink)
DavH27
PHP Pilgrim
 
DavH27's Avatar
 
Join Date: Aug 2004
Location: London
Posts: 167
DavH27 is on a distinguished road
Well that's probably why vb was so easy for me because I learned BASIC at 13 ...

But yeah, good luck with Dalpha, I mean Delphy, I mean Dulphon... damnit... delpont... DELPHI. Got it finally.
__________________
Davy - Programming since 1998 [CV]
Currently working on: n/a
Status: n/a
DavH27 is offline   Reply With Quote
Old 08-18-2004, 07:23 AM   #15 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,148
Belisarius is on a distinguished road
Yeah, I forgot the semi-colon. Using them has become such second nature it's become a "they're just there" deal.

Yeah, I keep putting PHP in a differnent category even though it really is a C language because it isn't a C++ language like Java and C# are (it uses "." for concatination, and "->" to reference a method on an object).
__________________
GitS
Belisarius is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
import delphi dll in c# eandras MS Technologies ( ASP, VB, C#, .NET ) 0 05-20-2004 05:36 AM
alright dammit, delphi here Valis Feedback 3 02-22-2003 12:42 PM
Delphi TCP/IP confusedous Standard C, C++ 0 02-05-2003 07:48 AM


All times are GMT -8. The time now is 07:32 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting