Search:

Type: Posts; User: juschillin

Search: Search took 0.02 seconds.

  1. Does anybody know anything about MySQL? or ...

    Does anybody know anything about MySQL?

    or

    Does anybody know where I can get help that makes sense....NOT the MySQL manual!


    Thanks for your help,

    -juschillin
  2. mysql++ select * from table where such = '?'

    I'm still new so please be nice



    case IDC_SEARCH:
    BOOL bSuccess;
    if(bSuccess)
    {
    int len = GetWindowTextLength(GetDlgItem(hwnd, IDC_SEARCHFIELD));
    if(len > 0)
  3. Replies
    0
    Views
    2,391

    MySQL Connect from Outside Computer

    Here is my code:



    case IDC_GET:
    MYSQL *pConnection;
    MYSQL_RES *pResult; //pointer to the result set structure
    MYSQL_ROW Row;
    pConnection = mysql_init(NULL);...
  4. Replies
    1
    Views
    985

    can you show me how to do this?

    can you show me how to do this?
  5. Replies
    0
    Views
    1,432

    rich text on applications

    I posted this in windows programming but got no reply

    I'm new! Giving you fair warning

    I wrote a small application that is square box (duh) and has three buttons and a list box. One of the...
  6. Thread: The Basics

    by juschillin
    Replies
    5
    Views
    2,079

    I don't have a site right off hand. But go to...

    I don't have a site right off hand. But go to www.google.com and type in c++ tutorials


    I'm sure you'll find something.

    or Text Editor in C++

    do some searches
  7. Replies
    1
    Views
    985

    rich text in application

    I'm new! Giving you fair warning :)

    I wrote a small application that is square box (duh) and has three buttons and a list box. One of the buttons clears the list box, one deletes selected items,...
  8. Thread: Api

    by juschillin
    Replies
    2
    Views
    975

    #include Is this what you are...

    #include <windows.h>


    Is this what you are asking?

    these are good to use too...

    #include "resource.h" //create a file to put all you *.h's in.
    #include <stdio.h> //for printf()...
  9. Replies
    2
    Views
    4,282

    Does anybody know the answer to this one???

    Does anybody know the answer to this one???
  10. Replies
    2
    Views
    4,282

    mysql_real_connect and c++

    here's my code:



    case IDC_GET:
    MYSQL *pConnection;
    MYSQL_RES *pResult; //pointer to the result set structure
    MYSQL_ROW Row;
    pConnection = mysql_init(NULL);...
  11. Replies
    5
    Views
    1,072

    http://www.winprog.org/tutorial/ this is a...

    http://www.winprog.org/tutorial/

    this is a great link!

    You are never to soon to begin learning something new!

    This will take you step by step with the first couple of tutorials. After that...
  12. Replies
    9
    Views
    1,435

    I love you guys!!! Thanks alot

    I love you guys!!!

    Thanks alot
  13. Replies
    9
    Views
    1,435

    I'm pretty new at this stuff, would it be...

    I'm pretty new at this stuff, would it be possible to give me an example?


    :(
  14. Replies
    9
    Views
    1,435

    c++ mysql++ WinMain windows programming

    here's a snippet of the code I'm having trouble with:


    case IDC_GET:
    MYSQL *pConnection;
    MYSQL_RES *pResult; //pointer to the result set structure
    MYSQL_ROW Row;...
  15. Replies
    7
    Views
    1,278

    Not that I can remember I just did something and...

    Not that I can remember I just did something and messed it up. So I can't compile right now.

    Anything you come up with would be great.

    Or if you get it working that would be awesome.
  16. Replies
    7
    Views
    1,278

    One sec I'm trying to compile it. I'll be...

    One sec I'm trying to compile it.


    I'll be right with you.
  17. Replies
    7
    Views
    1,278

    #include #include "resource.h"...

    #include <windows.h>

    #include "resource.h"
    #include <stdio.h>
    #include <stdlib.h>
    #include <iostream>
    #include <iomanip>
    #include <mysql++>
    #include <mysql++.h>
    #include <conio.h>
  18. Replies
    7
    Views
    1,278

    #include #include "resource.h"...

    #include <windows.h>

    #include "resource.h"
    #include <stdio.h>
    #include <stdlib.h>
    #include <iostream>
    #include <iomanip>
    #include <mysql++>
    #include <mysql++.h>
    #include <conio.h>
  19. Replies
    7
    Views
    1,278

    Mysql++ and C++ and Windows Programming

    I can connect to mysql with with "Connection con" if I'm writing a windows application. But if I try to make a windows console application I cannot use "Connection con" to connect to the mysql...
  20. Error: explicit type cast cannot convert 'void* to 'int*'

    I'm a newbie, so please bear with:

    Here's my problem and the line I get an error on:

    int *buf = GlobalAlloc(GPTR, sizeof(int) * count);

    when I compile the program that contains this line...
Results 1 to 20 of 20