Search:

Type: Posts; User: blackcoder41

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,188

    Just download the said dll.

    Just download the said dll.
  2. Replies
    2
    Views
    3,975

    "" I think that will return a...

    "<" && ">"


    I think that will return a boolean which is always true of course. When you pass that to string::find, I think it will be casted to char. Then your if statement evaluates to true...
  3. Replies
    64
    Views
    6,003

    You can imagine class a master plan or blue print...

    You can imagine class a master plan or blue print of a car. It's just on paper, and it describes how the car should be created. The same model of cars can be created from a master plan but with...
  4. Replies
    13
    Views
    4,671

    This is kinda long story, CommonTater already...

    This is kinda long story, CommonTater already answered it shortly.

    You might want to look here
    Win32 Examples: Net Price Calculation
    Controls
    Standard Controls: Button, Edit, List Box, Static
  5. Replies
    64
    Views
    6,003

    tabstop answered it already. A class is just a...

    tabstop answered it already. A class is just a custom data type with some more extra behaviours.

    Anyway check this out.


    #include <iostream>
    #include <string>
    using namespace std;

    class...
  6. Replies
    64
    Views
    6,003

    Maybe something like.. class ChatProgram {...

    Maybe something like..


    class ChatProgram
    {
    private:
    vector<Client>;

    //your methods here..
    };
  7. Replies
    13
    Views
    4,671

    Well there's so many way to make a form in C++, I...

    Well there's so many way to make a form in C++, I don't know how much you knowlege you know and what you are using so.. Maybe MFC, WINAPI, wxWidgets, C++/CLI, etc, etc. Sorry my post didn't help.
  8. Replies
    64
    Views
    6,003

    Look here, read the object oriented programming...

    Look here, read the object oriented programming part. C++ Language Tutorial The interesting part there is inheritance and polymorphism.

    BTW, what exactly is confusing you?
  9. Replies
    13
    Views
    4,671

    #include int WINAPI...

    #include <windows.h>

    int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpCmdLine, int nCmdShow)
    {
    MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
    ...
  10. Replies
    64
    Views
    6,003

    I guess when you need to represent a real world...

    I guess when you need to represent a real world object in terms of programming. Also to divide the task. Just like the car example given above, each programmer could focus on different task like...
  11. Replies
    4
    Views
    14,274

    YouTube - Simple C++ DLL Programming Tutorial...

    YouTube - Simple C++ DLL Programming Tutorial
  12. In visual studio there is what we call solutions...

    In visual studio there is what we call solutions or workspace in codeblocks. It can contain many projects just like what you did I think. To active it you have to right click on the project then...
  13. Replies
    4
    Views
    5,800

    // Ex6_09Extended.cpp // A program to implement...

    // Ex6_09Extended.cpp
    // A program to implement a calculator accepting parentheses

    #include <iostream> // For stream input/output
    #include <cstdlib> // For...
  14. Replies
    6
    Views
    1,187

    Person p1("John","Willians",Person::MALE,1989); ...

    Person p1("John","Willians",Person::MALE,1989);

    Since your enum is inside the Person class then it's under the scope of that class.
Results 1 to 14 of 14