- This topic has 10 replies, 5 voices, and was last updated 17 years ago by Sabotage2.
-
AuthorPosts
-
December 9, 2006 at 6:49 am #191306MrAl3nMember
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 😀
December 9, 2006 at 3:56 pm #191317Sabotage2Membergood job X East BoY X
December 9, 2006 at 7:02 pm #191315MrAl3nMember🙂 thanks
December 10, 2006 at 3:38 am #191314AdminAdministratorgood 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 😉
December 10, 2006 at 4:59 am #191313MrAl3nMemberThanks Loco 🙂 I’ll get more tuts as soon as i get my other pc running i’ll teach some more stuff 🙂
December 10, 2006 at 3:09 pm #191312Sabotage2Memberhey i try to make a program with paltalk but its not working on pal 🙁
December 10, 2006 at 4:09 pm #191311MrAl3nMemberIn what programming language are you making it in ?
December 19, 2006 at 3:10 am #191310BattleStar-GalacticaMemberMFC 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 😉
February 7, 2007 at 2:55 am #191309ThE DJ GaNgStERMemberhey people im just annoying you all but anyone has Microsoft Visual c++ ??
February 7, 2007 at 3:12 am #191308AdminAdministratorFebruary 7, 2007 at 8:04 am #191307BattleStar-GalacticaMemberme feeling not good
me go to watch porn now
me search porn now
me dont find good porn
me sad 😥 -
AuthorPosts
Related
- You must be logged in to reply to this topic.