C++ GUI: Install C++ CLR Workloads in Visual Studio | WinForms

Поділитися
Вставка
  • Опубліковано 20 сер 2024
  • One of the most common questions I get on my channel is "How do I set up Visual Studio for C++ CLR Windows Forms Application Development?".
    In this video, I am going to teach you each and every step required.
    Visual Studio is one of the best IDEs and hopefully, it gives us the opportunity to build C++ GUI apps in an easy way with C# interop. However, to make a C++ GUI application, certain components are required to be installed in addition to just the C++ Desktop Development Workload. Let's say that you installed everything. In that case even, you won't see a template code C++ Windows Forms. Therefore you need to create it manually.
    Visit Us : sciber.dev

КОМЕНТАРІ • 212

  • @wearesciber
    @wearesciber  3 роки тому +42

    Here is the code to paste in the MyForm.cpp file 3:42
    #include "MyForm.h"
    using namespace System;
    using namespace System::Windows::Forms;
    [STAThreadAttribute]
    int main(array^ args) {
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    ProjectName::MyForm form;
    Application::Run(% form);
    }
    Copy the whole thing and paste it in the cpp file. Change "ProjectName" to the name of your project and change "MyForm" to the Windows Form's name.

    • @lynxarc6394
      @lynxarc6394 2 роки тому

      Oh, help me..
      i did the same 100% but it doesn't work and gives error
      Severity Code Description Project File Line Suppression State
      Error (active) E0020 identifier "string" is undefined Project2 D:\Code\ProjectCpp\Project2\MyForm.cpp 8
      Severity Code Description Project File Line Suppression State
      Error C2065 'string': undeclared identifier Project2 D:\Code\ProjectCpp\Project2\MyForm.cpp 8
      Severity Code Description Project File Line Suppression State
      Error C2059 syntax error: '>' Project2 D:\Code\ProjectCpp\Project2\MyForm.cpp 8
      Severity Code Description Project File Line Suppression State
      Error C3699 '^': cannot use this indirection on type 'unknown-type' Project2 D:\Code\ProjectCpp\Project2\MyForm.cpp 8

    • @sameerbvk1976
      @sameerbvk1976 11 місяців тому

      what is this code

    • @brandonholland1150
      @brandonholland1150 10 місяців тому +1

      the visual part of visual studio was missing for me until this thanks

  • @germanhoyos4422
    @germanhoyos4422 7 місяців тому +2

    I love how you didnt skip the part about what to paste in the main cpp. many vids about this topic skip that part and its a critical part

  • @freedomofmusic2112
    @freedomofmusic2112 3 роки тому +4

    We have a C++ GUI project in my CS class right now, this was incredibly helpful. The instructions we were given are only for VS 2017 so it didn't have the 2 versions of CLR project to choose from when creating a new project. Thank you so much!!!

  • @celebrity_rooster7488
    @celebrity_rooster7488 3 роки тому +11

    Good job man. This must have taken you lots of time to figure this shit out. Keep it up!!!

  • @bluqe6841
    @bluqe6841 3 роки тому +2

    tthank you so much dude u went straight into it and didnt talk heaps of bullshit, respect dude u saved my life !!!!!!!!!!!!

  • @shyamsundartiwari7671
    @shyamsundartiwari7671 2 роки тому +2

    Thank you so much! I was looking all around on YT for a good and simple start.....

  • @ixworks
    @ixworks 3 роки тому +7

    Although its not exactly the same code (my project is "CLRStuff"), here's the code from 3:44. Why not just post it (The OP) in the comments for the video ?
    #include "MyForm.h"
    using namespace System;
    using namespace System::Windows::Forms;
    [STAThreadAttribute]
    void main(array^ args) {
    Application::SetCompatibleTextRenderingDefault(false);
    Application::EnableVisualStyles();
    CLRStuff::MyForm myFrm;
    Application::Run(% myFrm);
    }

  • @alonelyproducer663
    @alonelyproducer663 4 роки тому +4

    Thank you very much for this tutorial, this helped me a lot

  • @statwizard
    @statwizard 3 роки тому

    Simply put, well done! 👍👍 Microsoft should fix this issue within VS as the IDE should just work without these extra steps.

    • @wearesciber
      @wearesciber  3 роки тому

      Oh yeah, the problem is this is not an issue. It's just that Microsoft discontinued this. This is kind of deprecated now.

  • @leby_leby
    @leby_leby 2 роки тому +1

    BEST TUTORIAL EVER!!!!!!

    • @wearesciber
      @wearesciber  2 роки тому

      Amazing 🤗 care for a sub 😇

  • @Silvathor
    @Silvathor Рік тому

    Thank you so much! You just helped my entire class ahah

    • @wearesciber
      @wearesciber  Рік тому +1

      Also I made a Visual Studio Extension to add this template so you won't have to go through the hassle each and every time you need a project, check the video here: ua-cam.com/video/ymTCXDGakj4/v-deo.html

  • @ardhiyashita3314
    @ardhiyashita3314 3 роки тому

    Damn.. it's working now!! Thanks, sir, you give me a new life right now

  • @telmokissocabailan5454
    @telmokissocabailan5454 4 роки тому +2

    You saved my life, thanks.

  • @Vlingn
    @Vlingn 8 місяців тому +2

    I followed the video exactly but after running it I got the message: ''Unable to start program 'C:\User\TCP\source
    epos\Project1\x64\Debug\Project1.exe'
    The system cannot find the file specified''
    Please guide me!!!

    • @NgocNguyenAnh-lk4wr
      @NgocNguyenAnh-lk4wr 2 місяці тому

      me too🥺🥺. Have you fixed it yet, can you help me? Please

  • @beyondsounds2640
    @beyondsounds2640 13 днів тому

    Thanks sir. It worked for me🙏

  • @feedgaming8374
    @feedgaming8374 Рік тому +1

    thanks man very helpful

  • @dawidhajduk7135
    @dawidhajduk7135 Рік тому +1

    You helped a lot bro, well done !!!

  • @GokdenizCetin
    @GokdenizCetin 7 місяців тому +1

    I cannot use #include with C++ CLR project. It gives error.

  • @user-ql7pw7ld1n
    @user-ql7pw7ld1n 7 місяців тому

    Fantastic.... works like a charm

  • @Ghost_...2401
    @Ghost_...2401 3 роки тому +1

    Thank you very much! You helped me!

  • @sumeetkumar298
    @sumeetkumar298 3 роки тому

    Your video quality is very clear..

  • @packa5676
    @packa5676 3 роки тому +1

    Gotta respect the freenom domain name though!

  • @darko_n6819
    @darko_n6819 3 роки тому +1

    thanks this was very helpful :)

  • @abhayminachi6020
    @abhayminachi6020 4 роки тому +1

    thanks for this man
    really helped

  • @negai_
    @negai_ 2 роки тому

    Thanks, working, you helped me a lot!

  • @edmond2565
    @edmond2565 2 роки тому

    This has saved my day bro thanks for sharing
    I kindly request for a video on how to install mySQL database and how to link it and use in visual studio 2019

  • @yosefaregahegn1682
    @yosefaregahegn1682 3 роки тому

    Thank you very.... much!
    It really works!Thank you again sir!

  • @SpartaniXGames
    @SpartaniXGames 3 роки тому

    Nice video, it worked... Nicely explained, thanks.

  • @pasitho6971
    @pasitho6971 4 роки тому +1

    Thank you 💓 hope for more

  • @marcelpi0
    @marcelpi0 3 роки тому

    Thanks for your really great videos.

  • @MrSupermonkeyman34
    @MrSupermonkeyman34 Рік тому +1

    don't know if anyone else is having this problem but I was getting an error saying entry point is not defined even though I set it to main. This was solved by making the main "int main" rather than "void main"

    • @wearesciber
      @wearesciber  Рік тому

      it was just a warning for me, so i neglected it. thanks for mentioning it. I will change the code.

  • @hassanwaqar8365
    @hassanwaqar8365 3 роки тому

    Best background soundtrack ever

  • @TemporallyHandle
    @TemporallyHandle 3 роки тому +1

    very helpful.thanks

  • @oscarfabianchavezgomez4400
    @oscarfabianchavezgomez4400 2 роки тому +1

    Thanks a lot! 👏👏

  • @charlyfu76
    @charlyfu76 2 роки тому +1

    Thank you so much!!!

  • @danylopetrusenko9270
    @danylopetrusenko9270 3 роки тому +2

    Thanks a lot!

  • @IamAFK14
    @IamAFK14 5 місяців тому

    Then why am i gettinh errors LNK2001 and LNK2019 with the entry point

  • @md.rubaiyatbinfoyez6155
    @md.rubaiyatbinfoyez6155 3 роки тому

    Mannnnnyyy mannyy Thanks Bro..
    Love You

  • @syedahmedali8588
    @syedahmedali8588 3 роки тому +1

    all setting goes well. but when I again open to load designer form windows. the windows open but when I build it shows the error "MSCV.lib" not found

    • @wearesciber
      @wearesciber  3 роки тому

      Could you dm me on instagram.com/thisismalindu

  • @janindunimsara178
    @janindunimsara178 2 роки тому +2

    Bro why did you select visual c++ in this installer what if i choose general for c++ (which to select)

    • @wearesciber
      @wearesciber  2 роки тому +2

      To which section are you referring to please provide timestamp 😊👀

    • @janindunimsara178
      @janindunimsara178 2 роки тому +2

      @@wearesciber 2:28

    • @janindunimsara178
      @janindunimsara178 2 роки тому +2

      Development settings

    • @wearesciber
      @wearesciber  2 роки тому +2

      Oh that's just nothing. It doesn't matter anymore since the new project dialog has changed. You can select whatever you want.

    • @janindunimsara178
      @janindunimsara178 2 роки тому +2

      @@wearesciber which is better for c++ select general or visual c++

  • @YOTAS3
    @YOTAS3 3 роки тому

    Good Video, Good Music Men, Thanks

  • @Jerrinth3glitch
    @Jerrinth3glitch 2 роки тому +1

    It worked!

  • @alexsklemin3708
    @alexsklemin3708 11 місяців тому

    Thank you for your tutorial. I would like to ask one quastion: Tell me please, how I can use Excel in CLR project?

  • @timesnow6205
    @timesnow6205 2 роки тому +1

    thanks for tutorial

  • @santiagoiglesiasramal4462
    @santiagoiglesiasramal4462 3 роки тому +1

    Thank you bro

  • @coldblackice
    @coldblackice Рік тому

    Awesome video! Can you do a video on using *threading* with a CLR GUI project?
    Apparently CLR doesn't have access to the main library's threading functions/abilities. But I've read that there are other ways to do it?

  • @shroukragap8113
    @shroukragap8113 3 роки тому

    I have error the entry point must be defined and the system cannot find the file specified how can i solve it

  • @rakeshkryadav5888
    @rakeshkryadav5888 2 роки тому +1

    thank you so much

  • @mostafashaheen2949
    @mostafashaheen2949 2 роки тому

    i have an error called " show call stack" like the video but when i close it and reopen it show the same error again any ideas

  • @joelbloxx3647
    @joelbloxx3647 3 роки тому

    Any idea how to fix this?
    I have 2 problems :
    1.
    Warning MSB8003 The VCToolsInstallDir property is not defined. Some build tools may not be found. Test C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppBuild.targets 494
    2. Error TRK0005 Failed to locate: "CL.exe". The system cannot find the file specified. Test E:\Other\CODING\Test\Test\TRACKER 1

  • @QfNotQw
    @QfNotQw 14 днів тому

    How to fix this??? Can anyone help me pls
    ---------------------------
    Microsoft Visual Studio
    ---------------------------
    Unable to start program 'E:\LUUHAIHOA\c++\MyProj\graphics\MyProject\x64\Debug\MyProject.dll'.
    The system cannot find the file specified.
    ---------------------------
    OK
    ---------------------------

  • @highfacility9200
    @highfacility9200 6 місяців тому

    Good job, thanks...

  • @husseinkawtharani6726
    @husseinkawtharani6726 3 роки тому +2

    it doesnt work it says error lnk2001 and lnk1120

    • @wearesciber
      @wearesciber  3 роки тому

      Are you sure you did everything correctly. Might wanna check twice

  • @alessandrokrauter7877
    @alessandrokrauter7877 3 роки тому

    the link to the code for the .cpp file isn't working anymore... Can somebody tell it me please?

    • @wearesciber
      @wearesciber  3 роки тому

      Check the pinned comment please.

  • @joshuaaubreytshepomartin9455
    @joshuaaubreytshepomartin9455 3 роки тому +2

    do you mind please telling me why that code is necessary and what it does?

    • @wearesciber
      @wearesciber  3 роки тому

      That code is responsible for making an object of the MyForm class. Then it uses some other methods to render the form into the screen. If you could take some time and slowly read the code even you can understand it yourself. 😉😊

    • @joshuaaubreytshepomartin9455
      @joshuaaubreytshepomartin9455 3 роки тому +1

      @@wearesciber appreciate it

  • @arkan7rb
    @arkan7rb 6 місяців тому

    i really hope it well work with my latest version of studio

  • @rueee141
    @rueee141 Рік тому

    im using windows 11 and it keep saying it has build errors, it only loads the empty format and no buttons
    how do i fix this pls?

    • @wearesciber
      @wearesciber  Рік тому

      Can you send the project you created to our telegram group
      t.me/wearesciber/1

  • @user-ir5wj6tq5w
    @user-ir5wj6tq5w 6 місяців тому

    cool video)

  • @drvtech7092
    @drvtech7092 Рік тому

    When showing what to do, you go to fast I cannot keep up with your mouse movement and what you are saying :[

  • @hoanhphung7072
    @hoanhphung7072 3 роки тому

    thank you very much!

  • @crazycoder9356
    @crazycoder9356 Рік тому +2

    Why didn't you explained wtf was going on ? :(

  • @Matheus-qv7yw
    @Matheus-qv7yw 2 роки тому

    thank you so much!

  • @catorlife
    @catorlife 4 місяці тому

    there's nothing in my toolbox, im currently using visual studio 2022, please help

  • @bharathbaskar5868
    @bharathbaskar5868 Рік тому

    Hi Sir, please put a video on, How to change language in Visual C++ Winforms. it always gives resource manifesto error.
    Need a video on Topic "Localization from English to Japanese on a button click"

  • @SadriddinDusanov
    @SadriddinDusanov 7 місяців тому

    i dont have toolboxs' thing. what do i do?

  • @tapion1337
    @tapion1337 2 роки тому

    Why do we have to do all this ? Microsoft cannot add an option to create it by default ?

    • @wearesciber
      @wearesciber  2 роки тому

      i think it is because the recommended option is to use C# and invoke C++ code through it when needed.
      C# Winforms is well documented as well.
      now if you want something like a template i've uploaded one to the vsmarketplace and also made a video about it.
      marketplace.visualstudio.com/items?itemName=Sciber.cppwinformsproject
      ua-cam.com/video/ymTCXDGakj4/v-deo.html

  • @huy9251
    @huy9251 3 роки тому

    great tutorial

  • @ideaexplorer2653
    @ideaexplorer2653 6 місяців тому

    bro I have a question. I know c++ can I do that on 4 gb ram computer ?

  • @yourfreewindows10upgradeis8
    @yourfreewindows10upgradeis8 2 роки тому +1

    nice music

    • @wearesciber
      @wearesciber  2 роки тому +1

      Wait, is that your name 😂

  • @gamer-lo7vl
    @gamer-lo7vl 4 роки тому +1

    Thank you

  • @cardsigner
    @cardsigner Рік тому

    Does this C++ support and ?

  • @usermk6sn2cf3c
    @usermk6sn2cf3c 2 місяці тому

    thankyou:)

  • @bipuldahal1819
    @bipuldahal1819 Рік тому

    System Could not find projectname.exe in my project. So would you please help me with these?

    • @wearesciber
      @wearesciber  Рік тому

      could you give me 2 weeks and i will help you with the problem, I am stuck with my exams right now. In about 2 weeks they will end. :)

  • @aladdin5558
    @aladdin5558 2 роки тому

    can we make games without using graphics.h library in cpp

  • @soporteproducciones4013
    @soporteproducciones4013 3 роки тому +1

    Instalé lo que el dice pero sigue sin aparecerme, que puedo hacer?

    • @Kuchuflaz
      @Kuchuflaz 3 роки тому

      (Windows) Panel de control -> Add o Quitar programas, Selecciona Visual Studio Installer -> Modificar; en esa ventana en 'Componentes Individuales' elige/busca CLR 14.26, aprieta modificar (tarda unos minutos en descargar), y mas o menos 1 Gb de espacio en disco. Recuerda tener instalada el workload Desktop C++. A mi me aparece la nueva opción, pero al crear el main form me sale un error y no puede compilar, es necesario copiar/pegar el código de 3:41 al archivo MyForm.cpp para compilar sin errores.

    • @wearesciber
      @wearesciber  3 роки тому

      Además, puede encontrar el contenido dentro del archivo main.cpp como un comentario anclado en la sección de comentarios.

  • @aloeshari5695
    @aloeshari5695 3 роки тому +1

    great! deleted my VS2019 and then reinstalled with the following instructions, because you didn't explain what to do if it's already installed, good job

    • @wearesciber
      @wearesciber  3 роки тому +1

      Oh I'm sorry about that, I actually forgot. But I'm glad you got it in the end anyways ♥ 🔥

  • @hibaadil4379
    @hibaadil4379 3 роки тому +1

    thank you very much i have searched for this a lot and didn't fined any thing

  • @cjeeckazad2995
    @cjeeckazad2995 4 роки тому +1

    thanks 😊

  • @educationaltechnology8363
    @educationaltechnology8363 Рік тому

    do I still need to do this in 2022? I mean writing this code and the configuration

    • @wearesciber
      @wearesciber  Рік тому

      Yes even Visual Studio 2022 doesn't have the templates because Microsoft abandoned it. But I made the process much easier by making a template, so you don't have to go through the process shown in this video. Here watch this one to learn more: ua-cam.com/video/ymTCXDGakj4/v-deo.html
      Or you can install the template and start right away: marketplace.visualstudio.com/items?itemName=Sciber.cppwinformsproject

  • @wiiznokes2237
    @wiiznokes2237 Рік тому

    Merci mon gaté

  • @alidanish065
    @alidanish065 Рік тому

    Instructions on how to set up Visual Studio 2019 for C++ development, including downloading necessary components and creating a project.
    [00:07](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Setting up Visual Studio 2019 for Windows Forms development is challenging
    [00:44](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Install necessary components for desktop development
    [01:19](ua-cam.com/video/HcxlYkU8aY0/v-deo.html9) Download and install C++ with C++ CLI support
    [01:53](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Install and launch Visual Studio
    [02:23](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Setting up a C++ environment for creating projects
    [02:58](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Creating GUI applications using Dutton framework
    [03:31](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Fix form error in CPP file and pom.h
    [04:05](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Learn to develop Visual C++ Windows Forms applications
    ---------------------------------
    Detailed Summary for [C++ GUI: Install C++ CLR Workloads in Visual Studio | WinForms](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) by [Merlin](merlin.foyer.work/)
    [00:07](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Setting up Visual Studio 2019 for Windows Forms development is challenging
    - Download the web installer from the official website
    - Launch the installer and wait for the installation to complete
    [00:44](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Install necessary components for desktop development
    - Click on 'Use Your Studio' and install Community 2019
    - Select desktop development and install C++ CLS support for version 140
    [01:19](ua-cam.com/video/HcxlYkU8aY0/v-deo.html9) Download and install C++ with C++ CLI support
    - Select 'Desktop development with C++ CLI support for version 142 build tools'
    - Click 'Download all' and then 'Install' to download and install all required files
    [01:53](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Install and launch Visual Studio
    - Download and install Visual Studio, then restart computer
    - Launch Visual Studio from Start menu or installer, create Microsoft account if desired
    [02:23](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Setting up a C++ environment for creating projects
    - Skip the existing setup and set up the family environment as C++
    - Create a project by searching for CLR and choosing between dotnet core and dotnet framework
    [02:58](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Creating GUI applications using Dutton framework
    - Choose location and name to create project
    - Change subsystem to Windows and entry point to main, then add UI windows form
    [03:31](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Fix form error in CPP file and pom.h
    - Add code to CPP file after adding form
    - If form not visible in pom.h, close and reopen Visual Studio
    [04:05](ua-cam.com/video/HcxlYkU8aY0/v-deo.html) Learn to develop Visual C++ Windows Forms applications
    - Load the application and add components from the toolbox
    - Check out more videos on the channel for further learning

  • @a_n_1265
    @a_n_1265 Рік тому

    Ok I installed by watching another tutorial and they just said to install desktop development with c++ without any change...So I didn't check c++ CLI support. It took such a long time to get installed so I can't simply uninstall and install again. Is there any way of installing the support after the app is installed?

    • @wearesciber
      @wearesciber  Рік тому

      You can install the cli think individually, just go to individual components and search or find it yourself. Just check the box on that and dont touch anything else (really dont 😂 the installer is cursed) and install. It should work.

  • @cjfabro8
    @cjfabro8 3 роки тому +1

    THANKS BROOO

  • @olatunjifelix2102
    @olatunjifelix2102 3 роки тому

    Please what if I already have the VS 2019 installed ? .... Do i need to un-install everything and start all over again ?

    • @wearesciber
      @wearesciber  3 роки тому

      No, just launch the VS installer (search for it in the start menu) and then do the rest (install the workloads).

  • @nagesha5539
    @nagesha5539 3 роки тому

    Sir its getting erorrs like form is not defined and expecting" ; " but i entered correctly that source code

    • @wearesciber
      @wearesciber  3 роки тому

      Its because you renamed the form or project when creating them. You need to replace the code with appropriate project and form names

  • @demiray8286
    @demiray8286 3 роки тому +1

    Thanks

  • @ducduong6328
    @ducduong6328 7 днів тому

    Yes

  • @gliding_soaring
    @gliding_soaring Місяць тому

    I have no UI

  • @borislavtodorov4683
    @borislavtodorov4683 3 роки тому

    thank you :)

  • @pirchhd7702
    @pirchhd7702 4 роки тому +1

    thank you :D i think visual studio 2013 has not this problem

    • @wearesciber
      @wearesciber  4 роки тому +2

      Yeah man. You know this is microsoft and over the years their products get confusing! Lol 😂🔫

  • @chinju1297
    @chinju1297 3 роки тому

    I have a question .. why do we need to paste a program code to the forms ?

    • @wearesciber
      @wearesciber  3 роки тому

      It's some code included in the origin template (available in vs2010). It basically renders the windows form to the screen.

  • @deequi77
    @deequi77 2 роки тому

    Hi If I am using windows 11, should I install Windows 11 SDK component or window 10 SDK‽ They say windows 11 SDK not stable yet.
    Please advice me if I only install one SDK or both windows 10 and 11 sdk

    • @wearesciber
      @wearesciber  2 роки тому

      I'm not sure about this, I think it shouldnt matter.

  • @EslamDawood1
    @EslamDawood1 3 роки тому

    thanks bro

  • @corneliobernardinojr3145
    @corneliobernardinojr3145 Рік тому

    I followed your steps but i got 2 errors. How to fix
    Error LNK2001 unresolved external symbol _main
    Error LNK1120 1 unresolved externals

    • @wearesciber
      @wearesciber  Рік тому +1

      Can you send the whole project folder (with the solution file) to our telegram group
      t.me/wearesciber/1

    • @corneliobernardinojr3145
      @corneliobernardinojr3145 Рік тому +1

      @@wearesciber thanks for your prompt response , I already fix the problem.

    • @wearesciber
      @wearesciber  Рік тому +1

      Thats great. Can you tell us the problem

    • @corneliobernardinojr3145
      @corneliobernardinojr3145 Рік тому +1

      @@wearesciber i forgot to input this "}"

    • @corneliobernardinojr3145
      @corneliobernardinojr3145 Рік тому

      @@wearesciber can you make a video how to calculate the area of a circle? I search here in YT but they are not use the same as mine. VS2019

  • @creatingcreations8647
    @creatingcreations8647 3 роки тому

    Thankyou👍👍👍👍👍👍👍🙏🙏

  • @SylviaBellefeuille
    @SylviaBellefeuille Рік тому

    Even with all prerequisites installed, there is no search result for "CLR"

    • @wearesciber
      @wearesciber  Рік тому

      interesting, I just installed it today on another computer.
      Perhaps search for cli v143 in the individual components section in visual studio installer and check if that's installed.

    • @SylviaBellefeuille
      @SylviaBellefeuille Рік тому

      @@wearesciber is there I way I could send you images?

    • @wearesciber
      @wearesciber  Рік тому

      send them via facebook or telegram: sciber.dev/fb or sciber.dev/tg

  • @mohammadkq6789
    @mohammadkq6789 3 роки тому

    Hello bro! when i run my code (form application with C++) The console(black screen) is appear with my form , How can I prevent it from appearing ??

    • @wearesciber
      @wearesciber  3 роки тому

      I think you haven't made changes to the project properties as I showed in the video. You need to change the System->Subsystem to Windows. If this doesn't work, let me know.

    • @mohammadkq6789
      @mohammadkq6789 3 роки тому +1

      @@wearesciber thank you so much, you are the best

    • @wearesciber
      @wearesciber  3 роки тому

      You are welcome 😋

  • @robertglen1593
    @robertglen1593 Рік тому

    It's a great video! 👍 But i have another problem with the .exe file. I get an error that it cannot find 'Project.1.exe'. Anyone had a similar problem??

    • @wearesciber
      @wearesciber  Рік тому

      Hi can you send some screenshots of the Error message to our Telegram Group: t.me/wearesciber_chat

  • @anujshrestha3115
    @anujshrestha3115 Рік тому

    Is the equivalent code generated after adding the button?

    • @wearesciber
      @wearesciber  Рік тому

      I'm sorry, could you clarify a bit

    • @anujshrestha3115
      @anujshrestha3115 Рік тому

      @@wearesciber i mean to ask, for example we added a button from the shown drag and drop method, then is the equivalent c++ code generated or not? The code then coul be used to manipulate the properties of button such as it's size and position,

    • @wearesciber
      @wearesciber  Рік тому +1

      Yes it is generated. If you go to MyForm.h code, it is there.

    • @anujshrestha3115
      @anujshrestha3115 Рік тому

      @@wearesciber Thankyou so much for this solution and for creating Winforms tutorial playlist. 🫡🫡

  • @jakubklacior1189
    @jakubklacior1189 Рік тому

    how to hide console?

    • @wearesciber
      @wearesciber  Рік тому

      Project properties->system->subsystem->windows