Search:

Type: Posts; User: Metal Man

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    929

    Quick question

    How would I go about making my program close instantly after it finished doing its thing?
    Without displaying "Press any key to continue" and waiting to be closed manually.
  2. Replies
    14
    Views
    2,177

    The error points to this line ...

    The error points to this line


    hFind=FindWindow("IEFrame",NULL);


    And if I remove it then the error points to the next line which has "hFind" in it.
  3. Replies
    14
    Views
    2,177

    hFind=FindWindow("IEFrame",NULL); If I remove...

    hFind=FindWindow("IEFrame",NULL);

    If I remove that it points to any line with "hFind"
  4. Replies
    14
    Views
    2,177

    // TheClicker3 Beta1Dlg.h : header file // ...

    // TheClicker3 Beta1Dlg.h : header file
    //

    #if !defined(AFX_THECLICKER3BETA1DLG_H__92934473_FD13_4460_A993_E946B5A1D54E__INCLUDED_)
    #define...
  5. Replies
    14
    Views
    2,177

    // TheClicker3 Beta1Dlg.cpp : implementation file...

    // TheClicker3 Beta1Dlg.cpp : implementation file
    //

    #include "stdafx.h"
    #include "TheClicker3 Beta1.h"
    #include "TheClicker3 Beta1Dlg.h"

    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef...
  6. Replies
    14
    Views
    2,177

    error C2440: '=' : cannot convert from 'class...

    error C2440: '=' : cannot convert from 'class CWnd *' to 'struct HWND__ *'
    Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    Error executing...
  7. Replies
    14
    Views
    2,177

    The only thing I can think of is... ...

    The only thing I can think of is...

    TerminateProcess("iexplore.exe", 0);

    That didnt work...
    I looked up TerminateProcess and couldnt find anything that really helped me (I'm obviously very...
  8. Replies
    14
    Views
    2,177

    Killing processes

    My program currently opens up multiple iexplorer.exe's in the background. Everytime I run it i get around 50 iexplorer.exe processes.

    Now I'm hoping to find a way to kill all of them with a single...
  9. Replies
    8
    Views
    1,637

    i dont really care about the program displaying...

    i dont really care about the program displaying the html, i just want to send the GET command. I'm just trying to find a way to open the telnet session and then write to it.
  10. Replies
    8
    Views
    1,637

    I tried to put it in the same line ...

    I tried to put it in the same line


    system("telnet site.com 80 GET /whatever.html HTTP/1.1");


    but that doesnt work either.
  11. Replies
    8
    Views
    1,637

    Small issue with system()

    I have the following code


    #include <stdio.h>
    #include <stdlib.h>
    #include <iostream.h>

    int main()
    {
    system("telnet site.com 80");
Results 1 to 11 of 11