Skip to main content

Posts

Showing posts from June, 2017

Login Menu using C++ GUI

Hello Guys,                                   CREATING LOGIN FORM USING C++ This is bit long procedure so i would like to post only Video . Thank you Login Form C++ --->   

Button and Labels handling

Welcome Back Guys, For this you have to continue my previous Tutorial, if you have missed it then just take a look on it. ->   Previous Tutorial This Whole Tutorial is available as " Video " at the Button of this page . Starting at First. Open that Form and to to this tab. 1. Go to this "MyForm.h [Design]". 2. Then From "View" Select "Toolbox". 3.  Then From Toolbox Select "Label" 4. Just Drag and drop that label to the form. Align your label where ever you want :)  . Now Moving to Buttons so we can perform a function on our label. 6. Now Select Button in the Toolbox , drag and drop it to the form as we done with label. 7.Double Click on Button and you will get a Coding screen where you can specify your functions. lets do it Some Important points. Windows Form uses a string called System::String its different from std::string. So if you have ...

Introduction to C++ Form Programming Using Visual Studio (GUI)

Welcome to C++ Form Programming using Visual Studio 13 1. Open  Visual Studio 13. 2. Go to File->New->Project. 3. Go to Visual C++ and choose CLR Empty Project. 4. After this go to : 5. Go to Visual C++ -> UI -> Select Windows Form. Will Look like this -> 6. Now Right click on Project<your project number> ( mine is Project6 so i will select Project6) and select properties and do same as me. 7. Go to Linker and under this select System and then select SubSystem from menu and click bottom-faced arrow and select the same as below.  8. Now, select Advanced, An Entry point row will come in menu and type "main" (without quotes). 9. Click Apply and Ok. 10. Now select your .cpp file from solution explorer in the right. in my case its "MyForm.cpp" 11.Then type this code in your cpp file. #include "MyForm.h" using namespace System; using namespace System::Windows::Forms...