Thread: Visuals

  1. #1
    Registered User CAP's Avatar
    Join Date
    May 2002
    Posts
    179

    Lightbulb Visuals

    I am sorry to ask this it must be a simple question but I know that there is visual C++ and Visual Basic so...

    1. Is there a Visual C?
    2. How different are the languages between normal and visual?
    [I tried VB and then just B(only looked at them)and they
    seemed to be somewhat different]
    3. How easy is it to draw things with code i.e. make a sqare by telling the compter where to draw things and how large to make them and so on.

    Thanks

  2. #2
    Registered User
    Join Date
    Jul 2002
    Posts
    13
    1)No, but you can compile C code with the visual C++ compiler


    2)Visual C++ is not a language. The code you type- like int main() - is C++. The term Visual is the name of the compiler line.

    B is an extremely old, dead programming language. The full name of VB is Visual Basic. Look up basic, and you will see a language that is similar to VB, but deals with text mode apps on any OS, not Windows specifically.

    3)Depends on the OS and graphics library. C++ and C do not have graphics in the library- they dont care if the computer attached to them has a screen, keyboard, video card, sound card, or not. They work perfectly well if its an embedded processor in a microwave. Thats its strength.

    An OS or a graphics library includes a set of functions for drawing to the screen. Which one(s) you use determines the answer to this question.

    Im assuming you run windows, and wish to use either the GDI or DirectX. DirectX is a bit complicated, as its meant for high intensity graphics. The GDI is fairly simple, but doesn't draw as quickly or as well. You'd need to pick one to learn.

  3. #3
    Registered User CAP's Avatar
    Join Date
    May 2002
    Posts
    179
    Ok, so what do I do, learn dirext x code(if there is any)and if I do that or lets say make a graphic, how do I put it together with my C/C++ code and have it respond to things that I do?
    -Microsofts Visual C++ Introductory Kit-
    Current Projects: Learning Everything C.

    Everyone has a photographic memory, some people just don't have any film.
    ______________________________

    When was the last time you went for a colon cleansing? Because quite frankly, you're so backed up with crap that it's spilling out your mouth

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Why hasn't the markup language model been popular for visuals outside web design ?
    By indigo0086 in forum A Brief History of Cprogramming.com
    Replies: 6
    Last Post: 01-19-2009, 11:10 AM