Thread: Delphi 7 functions.

  1. #1
    60% Braindead
    Join Date
    Dec 2005
    Posts
    379

    Delphi 7 functions.

    I learned delphi a while back. and I know the syntax any everything, I wanted to make something in it, but I cant find any chart/list/tutorial or anything on functions. I was using a ... weird compiler that had its own set of private functions, but I I need to see a list of general delphi functions.

    Thank you, sorry if this is in the wrong section. (Yes, I did google this, I got alot of articles, but no tutorials/lists/source/anything related to programming delphi)
    Code:
    Error W8057 C:\\Life.cpp: Invalid number of arguments in function run(Brain *)

  2. #2
    Registered User
    Join Date
    Dec 2005
    Posts
    50

  3. #3
    chococoder
    Join Date
    Nov 2004
    Posts
    515
    There's a rather good tutorial that comes with Delphi.
    And tons of resources online.

    function someFunction:integer;
    begin
    result:= 42;
    end;

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Void Functions Help
    By bethanne41 in forum C++ Programming
    Replies: 1
    Last Post: 05-09-2005, 05:30 PM
  2. Functions and Classes - What did I do wrong?
    By redmage in forum C++ Programming
    Replies: 5
    Last Post: 04-11-2005, 11:50 AM
  3. calling functions within functions
    By edd1986 in forum C Programming
    Replies: 3
    Last Post: 03-29-2005, 03:35 AM
  4. Factory Functions HOWTO
    By GuardianDevil in forum Windows Programming
    Replies: 1
    Last Post: 05-01-2004, 01:41 PM
  5. Shell functions on Win XP
    By geek@02 in forum Windows Programming
    Replies: 6
    Last Post: 04-19-2004, 05:39 AM