Search:

Type: Posts; User: iPromise

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,665

    make sure you include libmysql.lib, and mysql.h. ...

    make sure you include libmysql.lib, and mysql.h.

    #pragma comment ( linker, "libmysql.lib" )

    or configerate with the programs properties.
  2. Replies
    2
    Views
    1,502

    // Double check hwndP, make sure the message is...

    // Double check hwndP, make sure the message is not sent by the scroll bar, or else add the handle of the scroll bar to the lparam.

    SendMessage(hwndP, WM_HSCROLL, LOWORD(SB_LINERIGHT), NULL);
  3. Sorry guys, I coded that on the spot, here is a...

    Sorry guys, I coded that on the spot, here is a better example:



    #include <string>
    #include <iostream>
    #include <ifstream>

    using namespace std;
  4. Replies
    6
    Views
    1,551

    You can inject a dll into program two and read...

    You can inject a dll into program two and read data from there, or you can send data with Winsock between the two applications. Or you can make program two write to a file, and program one reads data...
  5. Heres a working example, pseudo code: ...

    Heres a working example, pseudo code:



    #include <iostream>
    #include <fstream>

    using namespace std;

    void readfile ( const char * filepath )
  6. Thread: DirectPlay

    by iPromise
    Replies
    2
    Views
    1,817

    Thanks.

    Thanks.
  7. Replies
    4
    Views
    15,731

    Look at your projects output folder for your...

    Look at your projects output folder for your executable. In VC++ its usually at:

    ../Debug/ or
    ../Release/

    The code for displaying a "Hello World" message in your console application is:


    ...
  8. Replies
    4
    Views
    9,379

    Thanks guys.

    Thanks guys.
  9. Replies
    4
    Views
    9,379

    The difference between vectors and arrays

    So what is the difference between these types? Performance, ineffiency, what?
  10. Thread: DirectPlay

    by iPromise
    Replies
    2
    Views
    1,817

    DirectPlay

    Hey,

    A classic game called Age of Empires doesn't have any startup agruments to place to host / join a multiplayer game, so the only alternative to that is DirectPlay which was depreciated 3 years...
  11. Replies
    8
    Views
    5,005

    #include void main() { char...

    #include<iostream>

    void main()
    {
    char Buffer[81];

    cout<<"Enter a line of text and press enter, all vowels in the text shall be discarded:";

    cin>>buffer;
  12. Replies
    153
    Views
    694,955

    Sticky: Object Oriented Programmming in C++...

    Object Oriented Programmming in C++ by "The Waite Group's"
  13. Don't check your char type variables with a...

    Don't check your char type variables with a simple '==' equality sign.

    Use strcmp to check your variables, here is your problem:



    if ( choice == "Y" )
    {
    ...
    }
Results 1 to 13 of 13