Skip to content

Make a program.

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #191306
    MrAl3n
    Member

    Ok first off you must have Microsoft Visual c++ Installed

    Then open visual c++ up, click file and click new

    Follow the above instuctions and then..

    Once youv down that you should get this..

    there ya can edit all ur stuff on yer form its just like in vb just abit diff..

    there you can edit everything once your done with that go to ‘Build’ and click Build (WHAT EVER NAME YOU HAVE YOUR PROJECT) exe and you program will be done and there uv created something in c++ lol i was bored so i decided to do this dont care if you think its lame or not i just got bored 😀

    #191317
    Sabotage2
    Member

    good job X East BoY X

    #191315
    MrAl3n
    Member

    🙂 thanks

    #191314
    Admin
    Administrator

    good tutorial specially for peeps that dont know bout c+

    PS: you can now mod your own topics in the forums just in case ya need too edit or delete some posts in your post 😉

    #191313
    MrAl3n
    Member

    Thanks Loco 🙂 I’ll get more tuts as soon as i get my other pc running i’ll teach some more stuff 🙂

    #191312
    Sabotage2
    Member

    hey i try to make a program with paltalk but its not working on pal 🙁

    #191311
    MrAl3n
    Member

    In what programming language are you making it in ?

    #191310

    MFC is too complicate for vb programmer to jump in that because it’s very difficult for debugging compare to vb, I suggest someone want code in c++ native to use c++ managed becuz you can code in both unmanaged and managed.

    example I can do this

    String^ winclass="DlgGroupChat Window Class";
    IntPtr pWinclas = System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi(winclass);
    
    //unmanaged code
    char *Winclass=static_cast(pWinclas.ToPointer());
    HWND hParent=FindWindow(Winclass,NULL);
    char wincaption[255];
    int x=GetWindowTextA(hParent,wincaption,255);
    x =MessageBoxA(NULL,wincaption,wincaption,MB_OK);
    //managed code
    String^ s;
    s= System::Runtime::InteropServices::Marshal::PtrToStringAnsi(static_cast(wincaption));
    System::Windows::Forms::MessageBox::Show(s);
    System::Runtime::InteropServices::Marshal::FreeHGlobal(pWinclas);

    I call FindWindow and MessageBoxA directly from my managed project without using the P/Invoke like c# or vb have to use if they want some win32 function like FindWindow

    and it’s seem easy to learn like vb 😆 click click click and you got it 😉

    #191309

    hey people im just annoying you all but anyone has Microsoft Visual c++ ??

    #191308
    Admin
    Administrator
    #191307

    me feeling not good
    me go to watch porn now
    me search porn now
    me dont find good porn
    me sad 😥

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.