Results 1 to 8 of 8

Thread: programing language

  1. #1
    Low Bitrate
    Join Date
    Sep 1999
    Location
    Australia
    Posts
    99

    programing language

    If I needed to write a program, for example, to drive something hooked up to the parallel port, what would I use to do this? At this stage I don't know the first thing about programming, the only experience Ive had with it is programing in Basic on BBC Micro's at School before real computers were even invented. What is Visual Basic? Where should I start?

  2. #2
    Constant Bitrate monger's Avatar
    Join Date
    Nov 1999
    Location
    Good ole Maine. Gotta love trees and deer.
    Posts
    210
    Try Borlands turbo C++.
    Monger
    ICQ-7207702
    UPDATE: I moved farther north. Now its even too cold for the deer; only moose now

  3. #3
    Newbie
    Join Date
    Oct 1999
    Posts
    9
    I have an html based instructional txt for learning C++. It is pretty decent, and if nothing else, can be used as reference for basic commands and structure. Let me know if you want it.



  4. #4
    Newbie
    Join Date
    Oct 1999
    Posts
    14
    I think visual basic is more suitable
    for beginners if u work in win32 platform
    since
    1) You dont have to worry about pointers
    2) The GUIs are simple to build
    3) It is easier to compile
    4) It supports writing and reading from
    ports



  5. #5
    Variable Bitrate
    Join Date
    Aug 1999
    Location
    Yorba Linda, CA
    Posts
    323
    I would recommend Inprise Delphi over Visual Basic, because:

    1) It compiles fast. Borland (Inprise) has one of the fastest compilers on the market.
    2) It generates more efficient native code.
    3) It's based on Pascal, which was designed from the start to be a language easy to learn.
    4) It's available for Linux now, so porting applications to another OS is possible.
    5) The language is very straightforward and easy to understand. Often times all that's needed is some tinkering to use new functions and libraries.
    6) Like Visual Basic, it's totally visual. If you can click and drag a mouse, then you can build an application in a very short time.

    I've been programming for 10 years and have done extensive programming with Delphi and found it to be a great development platform. I know C/C++, Java, Basic, and Assembly and Delphi is the easiest language I've found to learn and to do RAD (Rapid Application Development)


    --Jason
    http://jump.to/m2pc
    Jason Johnson
    Yorba Linda, California
    http://www.m2pc.com

    M²PC Phase IV - *** PENDING ***

  6. #6
    Variable Bitrate
    Join Date
    Nov 1999
    Location
    Ishoej, Denmark
    Posts
    310
    I dont think that you can control the parallel port from Visual Basic, not directly anyways.

    There is source code available for programming in C/C++, check the list of the ring members.

    However keep in mind C/C++ is rather hard to pick up as your first language.

    I dont know enough about Delphi, but im pretty shure that it allows you to access the paralle port as well.

    Hope this clarifies matters a bit.

    BTW, if you can find a dll that allows you to access its functions, you can use Visual basic.

  7. #7
    Maximum Bitrate Meatballman's Avatar
    Join Date
    Jul 1999
    Location
    Hartsville, SC
    Posts
    747
    I'll have to concur with jjohnson. Every point he made is absolutely true. Delphi is the way to go. If you absolutely must have C\C++, then try Inprise/Borland C++ Builder, although IMHO, it is lacking a bit.

  8. #8
    Low Bitrate
    Join Date
    Sep 1999
    Location
    Australia
    Posts
    99
    No worries, Ill have a look at Delphi then. Thanks for the suggestions.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •