Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Micie

@Micie
About
Posts
17
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Residental Application
    M Micie

    I'm using here win[shit]98... and I want to write an app, you can ask why. Here's the answer: I want to practise my programming skills and.. this app will work in my parents office - they just want to have a proof if some1 is using chattin' app like MSN, ICQ etc., also this app will log every WWW title to the file - than we will know what was she/he doing and when. Do you know how to help me? I'm going now - be back tomorrow -.- I'm from europe! It's 18:26 now thought... have to go to home and make my homeworks [I'm just 18years-old.. hah!]. Keep posting! I'll be back tomorrow and I'll read everything ! **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC c++ help question

  • Residental Application
    M Micie

    I want to do for my parents an app which will log to file every application which run on it. My parents have an office - they want to prevent from using chattin' tools in it so they asked me. It have to work in background, otherwise it can be easily closed what will cause stopping of logging. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC c++ help question

  • Residental Application
    M Micie

    I my dictionary I found it as application which works in background of system. It starts mostly before starting of system. Do u know other name for such application ? If so, please post it here. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC c++ help question

  • Residental Application
    M Micie

    Hah! Thanks for help! :) The thread is still open, do not hesitate to post any yr suggestion about it. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC c++ help question

  • Residental Application
    M Micie

    Doh. How can I make the residental app in C++ ? Give me sample code or something :) **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC c++ help question

  • Residental Application
    M Micie

    Is this possible to make such an appl in pure C++ ? If so, please tell me how - at least which func should I use. Thank you for help in advance. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC c++ help question

  • WinSock2
    M Micie

    Do u have a link to it? **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC help tutorial question c++ game-dev

  • WinSock2
    M Micie

    I need a VERY GOOD tutorial with many examples of ws2 use. Post links here, plz. :rolleyes: I read several, but most of them sux. Authors only showing struct and use of the functions. I know what is doing accept() func, but I don't know why should I use it =\ the same is with bind() etc. My problem is: I have a client of the game. I want to connect my application with this - send and recv packets. Does any one of you know how to help me? **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC help tutorial question c++ game-dev

  • Results of ReadProcessMemory()
    M Micie

    Thank you very much for every post written in this thread. :rose: That's what I wanted and expected! :-D **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question c++ performance

  • Results of ReadProcessMemory()
    M Micie

    Gratz and thanks :) Could you translate now how u done it? I don't u'stand everything starting from r+= ... Just do as big comment as you can. :) Thanks in advance ^^ **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question c++ performance

  • Results of ReadProcessMemory()
    M Micie

    That's what I mean! :) Thanks Papa for help - my system is working in little-endian. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question c++ performance

  • help on good old C
    M Micie

    int *p; // prepare int pointer for var p p=(int (*)[4])malloc (3*sizeof(*p)); This code is allocating an array for 12 bytes long (3 ints = 12bytes) in memory and returns result to variable p :-O **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC help

  • Results of ReadProcessMemory()
    M Micie

    Are you waiting for my reaction? I don't u'stand last solution made by 4apai. Could some1 make this with comments? And what do u mean by big-endian and little-endian? I'm newb in C++ things, that's why I'm here.. where I can get answers for my questions :rolleyes: **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question c++ performance

  • Results of ReadProcessMemory()
    M Micie

    In the results I recieve a pointer to void type as every1 know with bytes from memory. But they are reversed =\ How can I change it ? I.e.: bytes in memory: 00218040 // this is in memory bytes in result: 00408021 I want them like they are in memory. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question c++ performance

  • enumwindows on window hidden to systray
    M Micie

    Using spy++ and find a class of the program. This is safer in my view, 'coz the caption may be changed by a program behaviour or other program. HWND hWindows = FindWindow("ProgClass", NULL) **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question

  • Need help with encryption/decryption program
    M Micie

    I have an idea for encrypt implementation only. Pointers are my bad side. Still working on them. ;P [btw. You are a lucky guy, coz u have some1 who can teach you... I'm learning from net and books.]

    void encrypt(char array[])
    {
       char getString[] = decryptedString;
       char encryptedString[];
       int size = sizeof(getString);
       for( int n=0 ; n < size ; n++ )
       {
            encryptedString[n] = char((reinterpret_cast<int>(decryptedString[n]))-1);
       }
    }
    

    I'm outta home now.. not sure if it will works.. can't check it now.. I think that code is close to truth though. Hope it works and will help you at least a little. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC tutorial security help learning

  • What should I use instead of for(;;)
    M Micie

    Like in topic.. this question may be silly, but I'm new programmer so be gentle (plz). What should I do if I want to "refresh" the value of variables in DOS version? I'll include here a part of my source code. Treat this as a sample of my problem.

    for( ;; )
    {
    int result = GetKeyState(VK_SHIFT);
       if(retult == 1)
       {
           ..code..
       }
    }
    

    This code will slow down every comp - I think. I need a solution of that problem. :| Thanks in advance. **__________ I'm made in C++... and I'm proud of it!_**

    C / C++ / MFC question c++ help announcement
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups