C++ GUI: Simple Hello World App with Labels in Visual Studio | WinForms

Поділитися
Вставка
  • Опубліковано 19 сер 2024
  • I made a template for this project recently, with it you can avoid the hassle of creating the project. Just choose the template, create the project, you are good to go!
    Watch this video to learn more about using it: • C++ GUI: Create Simple...
    Download it here: marketplace.vi...
    In this video, I will teach you how to make Windows Forms Application in C++ using the .NET Framework. We will use the CLR component to make this project. However, the template isn't available from Visual Studio 2012, so we will have to build it manually. So here is the link to the Main.cpp file I used :
    www.sciber.ml/m...
    The process is simple, first we will create the Windows Forms Application from Scratch, however it will be super easy. Next we will add a label from the toolbox and voila, you will run a nice Windows Forms Application made using C++.
    Make sure to Subscribe us for more future videos. Stay in touch with more amazing Videos here on UA-cam.
    Join Us on Telegram: sciber.web.app/tg for updates!

КОМЕНТАРІ • 266

  • @saeculorum8184
    @saeculorum8184 4 роки тому +66

    using namespace System;
    using namespace System::Windows::Forms;
    [STAThread]
    void main(array^ args) {
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    YourAppNameHere::MyForm form;
    Application::Run(%form);
    }

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

      HaHa sorry😂

    • @adityarajsrivastava6580
      @adityarajsrivastava6580 3 роки тому +3

      Oof,this is much more complex than java GUI

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

      Yeah right

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

      Well, can we style the gui using c++,C# is better on styling.

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

      How about if u want to link the button in the toolbox to another form? Is this the same code to use?

  • @LawnMeower
    @LawnMeower 4 роки тому +35

    Please use Dark Theme in VS. Light attracts bugs

  • @presL05
    @presL05 3 роки тому +13

    yeah.. im searching for design! thank you! now i can make something better than just black window xd

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

    Wow that's the Best thumbnail

  • @SIPHOSITHOLE-of2rg
    @SIPHOSITHOLE-of2rg 3 місяці тому

    The pair of glasses killed me
    🤣

  • @Gamexoozi
    @Gamexoozi 3 роки тому +38

    I definitely need a pair of glasses

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

      😂😂😂 dude I made a video about that, you can watch it

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

    If your form designer is not working and not showing while right clicking the project or by pressing Shift + f7. Close the project and open it again. This will fix it.

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

      Yeah. No need to close though, unload it and the reload it. It is much faster. Not much of a difference though ✌️👊

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

    Scriber - "sit down and do what i do " , Me - Yes Sir!.

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

    I have a C4829 compiler warning. How do I resolve that?

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

    When I click add new item I can't find anything that says UI

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

      That means you havent installed the c++/cli build tools. Watch this video and install properly. Then you should be good to go. ✌😊 ua-cam.com/video/HcxlYkU8aY0/v-deo.html

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

    There are no tools in the toolbox for me (Visual Studio 2019)

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

      And in the MyFrom.h i don't see a window i just see the code

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

      Try this please, I think your installation is not right ua-cam.com/video/HcxlYkU8aY0/v-deo.html

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

    repost:
    using namespace System;
    using namespace System::Windows::Forms;
    [STAThread]
    void main(array^ args) {
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    YourAppNameHere::MyForm form;
    Application::Run(%form);
    }

  • @fountainboom3925
    @fountainboom3925 3 роки тому +3

    when I double click MyForm.h it doesn't give me the design. it gives me the code of it

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

      I don't know what is causing this problem, but it happens to all of us, I just close the solution and reopen it and then it works. You can restart visual studio if that also doesnt work out. Anyhow, after that mine works always

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

      oh God, thanks for telling me to restart it. it finally works. that took so long tho lol

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

    Can you guide about what you have done in main program?

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

      Im sorry your comment got lost somewhere, so I'm making a large tutorial (lile a masterclass) where i go through all of those details about Winforms. So please stay tuned. It will take a lot of time for sure. But I will publish it eventually.

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

    this is great for me .thank you so much :)

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

    i am starting with u 13 / 8 / 2020 , i am waiting to the results,
    thanks man 😊

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

    Awesome bro

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

    My toolbox is empty, help!

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

    hey, i installed everything needed, but my toolbox is still empty.. u know any solution for that? (visual studio 2019)

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

      Sorry dude, doesn't ring a bell. Stackoverflow? 😐

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

      i have the problem

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

      I solved it by right clicking under "search toolbox" and check "show all" button

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

      @@dARNEZcr000life saver, i spend more then one hour trying to do that, thanks!

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

      Maybe re-enter I faced same problem and I just re-entered

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

    Hello, I found your video and it is very good for a new user. My only issue is you talk really fast so I am not taking in all the info and have to watch several times.
    Thanks for making the video.

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

      Can't Find the form option in vs2019 following your example.

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

      Oh actually I am flattered 😂 English is not my native tongue so it is a bit strange to hear I am too fast. But if you want you can play the video with a slower speed like 0.75.

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

      Please follow this video ua-cam.com/video/HcxlYkU8aY0/v-deo.html to solve your issue

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

      @@wearesciber Thanks for the replies and the great videos. Liked and Subscribed.

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

    i was going to download the software VS2019, but after watching this video... I cancel it (to download). I think I just stick to VS2008 instead of complicated steps shown in the video.

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

      But the upgrade might worth it. But yeah, it is quite the hassle.

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

    system is not a class or namespace error in .pp file and Application too ....
    Waiting for your guidance bro ....

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

      Bro I think you didn't choose CLR project when creating

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

    Great stuff. Thanks very much.

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

    We need more tutorial video like this! You & your work is fabulous!

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

      Sure, will continue these videos.
      Thanks btw

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

      Btw, the 2nd video is out. Watch it here : ua-cam.com/video/DyC78GYgiRU/v-deo.html

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

    When I double click on MyForm.h it just opens the code, not the Design :(
    But when I debug it, it shows me a window. Any Help?

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

      Yeah i suppose you are using visual studio 2019. If so, just close the entire solution and then reopen it. Then once you open the MyForm.h it would show again the code. Just right click there and click on view designer. This should do it.

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

      @@wearesciber It worked thx

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

      @@dennis2599 so glad it worked. 😃

    • @dennis2599
      @dennis2599 4 роки тому

      Ok, now I have another error 🙂

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

      @@dennis2599 yeah yeah tell me😁

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

    I didn't find "Windows Form". Didn' t i download that?

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

      Looks like you havent installed CLR

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

      @@wearesciber I dodnt see CLR anywhere with 2019. Maybe make a video with newer versions. More people will be able to follow.

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

      Gary Carlyle you need to install a clr application which I don’t know what name it is in English

    • @Garycarlyle
      @Garycarlyle 4 роки тому

      @@nichtpedro2978 Yes I found a CLR download from Microsoft for VS2019

    • @nichtpedro2978
      @nichtpedro2978 4 роки тому

      Gary Carlyle you need to install it in the vs installer I think you need to go to single downloads

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

    alot of the steps you did are either not there anymore moved or not appering on my screen is there anyway i can just download the finished product

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

      Yeah, I made a video on that ua-cam.com/video/HcxlYkU8aY0/v-deo.html
      Watch this

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

    i can't find the CLR format.. and also can't find the UI item..

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

      Watch this ua-cam.com/video/HcxlYkU8aY0/v-deo.html

  • @Mohammed-rx6ok
    @Mohammed-rx6ok 4 роки тому +4

    Can you make a tutorial of using c++ with sqlite
    i cant find any clear tutorial on youtube

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

      I'll try to

    • @Mohammed-rx6ok
      @Mohammed-rx6ok 4 роки тому +2

      @@wearesciber
      Many thanks 👀👍🏻

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

      @@wearesciber Did you ever do one. I want to use sqlite with a form

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

      not yet bro 😢

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

    hello I have a problem with adding a background image. After the run, it shows the error "'Could not find any resources appropriate for the specified culture or the neutral culture. Make sure CppCLRWinformsProjekt.Form1.resources" was correctly embedded or linked into assembly " how to fix this
    thnkyou

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

      You sure you used the correct project template, because the project name as I see it, it isn't the one we need.

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

    Have you cover all topics?

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

    Can you give the link of offline visual studio please. I need this.😔😔

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

      I can't post the link directly here on UA-cam. But I am pretty sure this site isn't malware. So go-to getintopc.com and there search for Visual Studio 2019 and then download. It is quite a huge file about 20gb size so....

    • @qazisyedmuhammadali3497
      @qazisyedmuhammadali3497 4 роки тому

      @@wearesciber i know getintopc thanks

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

      @@qazisyedmuhammadali3497 ✌️👊

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

    how come when i click the myform it only shows the code but not the design someone help pls

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

      Right click on project - > unload project
      Then
      Right click on project - > reload project

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

    Sorry, this not c++ form, this is .NET and C# form

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

      .NET and C++ bro. The language we are using is C++. Of course it is the .net framework.

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

      ​@@wearesciber Actually I want to learn Win32 API (Rare to see on YT). I want Visual C++ PE header and not a .NET

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

      Yeah yeah that would be so hard. The api is very low level and therefore hard to code. But it is pretty damn fast. Anyways compiling a tutorial might need lot of time and effort. However I will try to give the best to my audience. So I will try "in the near future" to give you guys that tutorial. 😉

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

    I followed all your steps but when i copied the code and debugged the form it gave me alot of errors such that form(on the last line) was undeclared identifier.Also in (Project1::MyForm form;) line it showed that their was a syntax error becuase a semicolon was missing before the identitifer 'form' .CAN YOU PLEASE HELP ME.

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

      What is the name of your ssolution/project?
      You should replace Project1 with the actual project name

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

      use this insted of the one provided : [STAThreadAttribute]

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

    i have problem with toolbox there is no tools in it i dont know the problem?

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

      Maybe your installation is not right, please check this ua-cam.com/video/HcxlYkU8aY0/v-deo.html

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

    i downloaded visual studio 19 from microsoft site and i can not find any thing like clr and ui ..
    please help me ..
    the link for offline installer does not work with me.

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

      Under your Visual Studio Installer click modify. Then Individual components tab, find C++/CLI support for v142 build tools (14.25) (VS2019), C++/CLI support (VS2017)

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

      @@Gillis785 thank u ♥️♥️♥️ it's working

    • @Gillis785
      @Gillis785 4 роки тому

      @@pain4743 No problem, glad I could help.

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

      @@Gillis785 thanks you :))

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

    I always get unresolved external symbol _main ...Such a bullshit error!!!!!
    Please HELP ME SIR!

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

      I think the problem is with linking... Probably should check the linker settings, please change entry point to main

    • @abdulmateen1663
      @abdulmateen1663 4 роки тому

      @@wearesciber BRO that doesn't work too....

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

      U sure u followed the exact same steps. Maybe u could send me ss of linker settings, error message and just visual studio
      instagram.com/cybercafesl

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

      Try double checking the configuration. Like may be it is set to x86 and you r editing the 64bit configuration. This usually happens all the time. The reason that I could not give a proper answer is that I don't have enough data please. If you can please send me a screenshot... 👊

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

    Nice video, please do more about it

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

      Thanks bro!
      Really appreciate your comments

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

      Hi, the second video is out. Watch it here ua-cam.com/video/DyC78GYgiRU/v-deo.html

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

    Please tell where can I study about that code
    Like any book..

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

      I mean u could use Microsoft documentation

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

    i am using Visual Studio 2019, Everytime i run Local Debug Manager, it will show " unable to start program. "c:\\demo\demo.dll" . the system cannot find the file specified."
    Any idea to solve this ?

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

      I haven't encountered that error brother. I will have to find out more. Also make sure you followed the steps correctly. Anyways you can download a demo project and follow along. I will send you the link.

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

      Hey here is the link:
      downloads.cyberweb.ga/lesson1.zip
      Download this and follow along. Tell me whether the error is still occurring.

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

      you know what ? your's file is ok !!! i need to start again to check what's wrong. . . will update you tomorrow. thank you.

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

      @@fy9090 good to here that. 😀

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

      After i ran your file, now the new project works ! thanks for your help ! I have subscribed and please give more lessons. xD

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

    What do I do if my project name is Project-Example 2.0

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

      Try typing it, soon you'll see something similar to it in the intellisense code suggestion drop down.

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

      @@wearesciber I did ProjectExample20 thanks

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

    Hi sir, when I runned it, It worked but there seems to be no title and It can't seem to display any elements.

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

      You sure you have installed it correctly ua-cam.com/video/HcxlYkU8aY0/v-deo.html

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

    thank you very very much 🌸🌸🌸🌸🌸

  • @andrewparsons3277
    @andrewparsons3277 4 роки тому +7

    Top Sites: thepiratebay
    omg, I'm dying

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

      Oh no no no no 😂🔫...
      "I have the right to remain silent"

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

    I receive the following error when I try to run the program:
    Code: C1001
    Description: Internal compiler error.
    Line: 16
    What could've caused this?
    Thanks. :)

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

      Unfortunately I cannot predict what's happened because first time I have seen such error. If you could please google it maybe on stackoverflow. But anyways I will also try to solve. 😪

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

      Same thing, even though i got the latest version

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

      Btw commentor, what code is line 16

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

      Also please do me a favor and try using my project file and see whether the error is still there...
      downloads.cyberweb.ga/lesson1.zip

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

      ​@@wearesciber
      The code at line 16 is just a bracket:
      {
      so I will show you lines 15-17:
      public ref class MyForm : public System::Windows::Forms::Form
      {
      public:

  • @marjotoska
    @marjotoska 3 роки тому +5

    Not trying to be negative but the end result is pretty underwhelming, should've at least continued filling that window. Great video nonetheless!

    • @monkeyrobotsinc.9875
      @monkeyrobotsinc.9875 3 роки тому

      go ahead. be negative.

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

      this is not a vidro about UI design this vidro contains how to create a c++ form application

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

      @@ramsey2155 your "end result" isn't even remotely close to what you showed at 0:35. Don't waste my time

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

      @@marjotoska what you are doing is opening a math lesson and suggesting to learn english
      you can find very interresting UI design tutorials in youtube
      if you wanna make something interresting dont waste your time by writing negative comments go ahead and watch your important vids

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

      Hi Marjo Toska, I just wanted to say that I have a complete series dedicated to this subject (you could even say my whole channel is dedicated to this) so what you saw is just the tip of the iceberg, so please I encourage you to research just a little bit before complaining. No worries.

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

    I can't turn on the design view please help

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

      Close and reopen the solution.

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

    Can you make a program to compute grades in c++ UI Application form using Boolean logic?

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

      Would take some time because the channel is paused for like 2 years... Sorry dude

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

    5:27 where's that link dude?? Also not in ur description

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

      www.sciber.ml/main.cpp
      This is the new link and it was in the description. Sorry for the hassle.

  • @14yogeshkumar99
    @14yogeshkumar99 3 роки тому

    whatever you have shown here is not exactly similar to 2019 ui is not available clr this is also not available

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

      Watch this and fix VS 2019 ua-cam.com/video/HcxlYkU8aY0/v-deo.html

    • @14yogeshkumar99
      @14yogeshkumar99 3 роки тому

      @@wearesciber ok thanks

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

    I hope you continue about visual C++ to advanced and real project. Please

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

      Yes sure... The series will continue and then once everybody has the basics, we are good to go with some advanced stuff. 💪

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

    At 3:46 i dont have a ui option

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

      You have to modify the installation and add "c++/cli support for v142 build tools"

    • @santesw
      @santesw 4 роки тому

      Later, you'll have to add the following code to "MyForm.cpp"
      #include "MyForm.h"
      using namespace System;
      using namespace System::Windows::Forms;
      [STAThreadAttribute]
      void Main(array^ args) {
      Application::EnableVisualStyles();
      Application::SetCompatibleTextRenderingDefault(false);
      Project1::MyForm form; //Name of project, name of form, delete hyphen //Modify Example71
      Application::Run(% form);
      }

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

      Yeah the problen is that microsoft has removed the C++ WinForms template from the library. That's why we create it manually. FYI if u have used VS 2010, the template is there of course.
      If u can't follow the steps unfortunately, the problem is with the installation of Visual Studio. Try installing a complete C++ version and also install tye .NET tools. Also take a look at Santi Guzman's ideas, that's right I believe. Good luck.
      😌

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

      Thanks Guzman

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

      Ye i figured how to make guis without the ui option

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

    Thanks

  • @steveandamyalso
    @steveandamyalso 4 роки тому

    @1:49 You are very wrong. 2015 != 2019 AT ALL! CLR does not exist in 2019. Perhaps 2019 Enterprise has CLR, bur 2019 Pro does NOT have CLR.

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

      It exists, I used and even most people here used and made projects too. Do a little research please

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

    Really great explanation.

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

    Can we make simple GUI in VS Code ?

  • @shiva-js5sf
    @shiva-js5sf 2 роки тому

    Sir, I have an error called C1001 (Internal compiler error) when I start debugging what to do sir, please help me.

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

      Hi, let's try this. Download the following project template and install it. Then use it to make a new project instead of using CLR Empty Project. (also no need to set linker settings or add new form, just create the project) Run the program. Tell me if there's any errors. :)

    • @shiva-js5sf
      @shiva-js5sf 2 роки тому

      @@wearesciber Sir , it did not work . So I reinstalled visual studio. Now it is working perfectly.
      Thank you for helping me out .

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

      Perfect, let's start creating some stuff 😍

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

    Quick question: I really hate vs2015, so I am using 2019. Which individual components do I have to import? If I import everything that has to do with c++ (Not components, the entire packages) clr doesn’t show up. Tho not all individual components are selected. So do you know which to select?

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

      Watch this please ua-cam.com/video/HcxlYkU8aY0/v-deo.html

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

      Hi, I am extremely sorry, your comment got lost somehow, so... I made a video on this already, here it is: ua-cam.com/video/HcxlYkU8aY0/v-deo.html

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

    is the windows form application c++ or c# ?

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

      Well actually we did coding in C++. But the code is depending on the .Net framework. So we are using .Net and not C#. C# is using .net too.
      So the answer is the app is C++.

  • @k.ommander
    @k.ommander 3 роки тому +1

    cyberweb.ga/main.cpp doesn't work

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

      I am sorry but * cyberweb/cybercafe is not associated with our company anymore* . Check sciber.ml/main.cpp
      Thank you for the feedback!

    • @k.ommander
      @k.ommander 3 роки тому

      @@wearesciber ah, thanks!

    • @k.ommander
      @k.ommander 3 роки тому +1

      @@wearesciber Although, I already re-typed the code.

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

      Haha legend #respect 😂

    • @k.ommander
      @k.ommander 3 роки тому +1

      @@wearesciber Thanks! 😂
      Also looked more professional on my discord live stream, lol.

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

    One and only? Im quite sure there are dozens on here. Maybe not as good but you put me off a bit with that.

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

      I have to say its a very good tutorial. Sorry If I were a bit moody.

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

      Some fault in me too 😂👍

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

    Downloads link doesn't work :'(

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

      Which one?

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

      see the code from video and type

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

      @@NSTuts 😂😂😂. Thats epic! But links work 😕

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

    will this work on mac as well ?

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

      This tutorial is for Windows so No. But, you can through Mono, but it will be different than this. Look into that.

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

    Is vs 2010 good in 2020

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

      I haven't used it on Windows 10, but I used it on Win7. But I am pretty sure that it should work pretty fine in Win10.
      Btw, I think it is better to use the latest version because you'll loose more features for something that is absolutely not a matter. So I would recommend the latest one. But for just learning purposes it is fine to use VS2010 because it works fine with even older PCs. 😊

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

      @@wearesciber currently I am using vs 2010 on window 10 machine it is working properly so can use it for more time.

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

      @@amansaxena9794 Yeah, it is totally fine!

    • @amansaxena9794
      @amansaxena9794 4 роки тому

      Thank you so much sir.

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

      Sir how can we use file handling in windows form application in c/c++.also can we use file handling of c language.

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

    pls make client side online app GUI in C++

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

      Bro. What? You serious

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

    How often will you upload?

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

      Hi, the 2nd video is out. Watch it here ua-cam.com/video/DyC78GYgiRU/v-deo.html

  • @mr.RAND5584
    @mr.RAND5584 4 роки тому +1

    Is it all .net?

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

    Did india shift to usa??
    using fake location./

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

      No I can fly ☺

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

      Plus if you have seen my other videos you would have noticed, i obviously use a lot of weird locations and that's just for fun. And tge location thing is not that of a big deal too.

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

    Sir your videos were really really helpful i just wanted to know is there a way i can contact you i have a doubt related to my software project

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

      You can contact via facebook.com/scibersl or instagram.com/thisismalindu ☺

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

    Excellent!

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

    Please Please SLOW DOWN :)

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

    This is not C++, this is C++/CLI.

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

    Your voice is not clear

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

    you didn't explain how to fix the error and you talk too fast.

  • @AnilKumar-wz4zr
    @AnilKumar-wz4zr 3 роки тому

    Love you brother 😭 😭😭😭😭❤️❤️❤️❤️❤️❤️❤️❤️ it's working ❤️❤️

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

    bruh this is not a tutorial; we dont learn how to code it
    instead its learning how to use visual studio 20MB preset rubbish

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

    Getting arror

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

    9/3/2021

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

    Futness!!! :)

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

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

    💪💪💪❤️

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

      Eat code and exercise
      LOL 😉😂

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

    Thanks