CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Anddos

Search: Search took 0.04 seconds.

  1. Replies
    27
    Views
    9,106

    Re: MySQL and C++ lib error

    Now when i run the program its crashing and i cannot understand why
    The source code as follows



    #include "stdafx.h"
    //#include "my_global.h" // Include this file first to avoid problems...
  2. Replies
    27
    Views
    9,106

    Re: MySQL and C++ lib error

    ive got it compiled by installing the x86 package on a vmware x86 and copying the x86 files over to this pc, its clear to me the x86 installer installs x64 library even those they say x86 package..
  3. Replies
    27
    Views
    9,106

    Re: MySQL and C++ lib error

    theres no MySQL Server 5.6 in C:\Program Files (x86)\MySQL), i dont think posting in the mysql section will help as mysql.h is used for programming related and there is no issues with the server etc..
  4. Replies
    27
    Views
    9,106

    Re: MySQL and C++ lib error

    Hey was just reading through this thread, i am in the same situtation now, i downloaded the x86 mysql installer and picked developer enviroment, now the directories path is C:\Program...
  5. Replies
    3
    Views
    9,679

    Re: Connect to a site/forum with c++?

    No its not about spamming,its about saving time getting questions answered with programming...
  6. Replies
    3
    Views
    9,679

    Connect to a site/forum with c++?

    How would i connect to a website or a forum with c++ inside visual studio,i am thinking of developing a program to post the same question to multiforums on the internet all at once and also knowing...
  7. Replies
    2
    Views
    53,883

    Re: Opengl loading 3d animated model

    can you link me to the article on the collada format ?
    ive heard fbx is what professional developers are using
  8. is it possible to scan for types in the memory?

    is it possible to scan a process for say an int with the value 5?
  9. Replies
    1
    Views
    557

    scan ints in a process

    basically what i want todo is scan this process for all the ints with the value 5, i am close to getting it working but i think something is missing , can anyone take alook at my code , thanks

    ...
  10. Replies
    1
    Views
    1,028

    Memory Dumper Crashing

    Basically i want a program that will scan all the regions and then dump the bytes



    #pragma comment(lib, "advapi32.lib")
    #include <windows.h>
    #include <stdio.h>

    VOID DumpBuffer(const...
  11. Replies
    6
    Views
    1,271

    Re: string search on all process's

    BobS0327 you're sample seems to be crashing...
    would there be away to scan for a int , or float etc in the regions?
  12. Re: Mouse hit test/know when mouse is over something.

    D3DXIntersect can do it , check the pick example in dx sdk
  13. can't see the rendering .x mesh with this camera position

    I am really starting to get anoyed with directx , i cant seem to place a animated mesh at the position i give , it works fine for static such as a teapot etc..



    I have uploaded the source code...
  14. Replies
    6
    Views
    1,271

    Re: string search on all process's

    i am using std::search and working well :D
  15. Replies
    6
    Views
    1,271

    Re: string search on all process's

    i have this code but i dont know how to compare the data in the memory with strcmp()


    #include "stdafx.h"
    #include <windows.h>
    #include <iostream>
    using namespace std;
  16. Replies
    6
    Views
    1,271

    string search on all process's

    how do i go about doing a full string search on all the process's in task manager?
    i have created the snapshot and enumed the process's , i know you use ReadProcessMemory but unsure how to make the...
  17. Replies
    0
    Views
    461

    hide a install process

    hmm ok i didnt know where to asked this but i will asked here
    basically i need something that will hide a windows exe when its click ..
    so when i click the windows installer exe nothing apears on...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured