You are just so Awesome Moo ICT. Very few tutorials are there for C# on the internet. You have made many awesome videos that are worth a lot. Great Work!!
@mooict3 жыл бұрын
Hi thanks for the lovely comment. Made my day.
@lordofkeyboards20663 жыл бұрын
your back! and good tutorial :)
@mooict3 жыл бұрын
Thank you. Love the name 😍
@lordofkeyboards20663 жыл бұрын
@@mooict yes i am the "LORD OF KEYBOARDS" thank you that made my day :)
@josjetapia76872 жыл бұрын
perfect for Last minute project
@sckmat3 жыл бұрын
Hey! How do I close the menu form when opening a game?
@ptmandrey3 жыл бұрын
You saved my life!!! Thank you a lot
@senamilendlovu1302 жыл бұрын
Thank you so much this really helped me on my project
@moonchild17833 жыл бұрын
Thank you so so much, it helped me a lot!
@bozhidarzhivkov21043 жыл бұрын
Very useful. Thanks!
@pier81053 жыл бұрын
amazing video !!!👌👌👍😊
@matan61413 жыл бұрын
Hey i really like your videos keep going. i have a question i have a count in the main screen game and the second screen doesn't recognize this counter.what should i do to fix this issue?
@mooict3 жыл бұрын
Hi, take a look at the speed reader tutorial. I've worked with multiple forms on that one and it changes texts from one form to another I think that'll be helpful for your app.
@AnnasAR162 жыл бұрын
Thanks, man!
@rezvlt92853 жыл бұрын
Great video! Please make a video on how to build chess.
@mooict3 жыл бұрын
I will try
@noahyannis24653 жыл бұрын
How do I make it so the start window closes once I press play?
@UmongusSussehFrusseh2 жыл бұрын
Add "this.Hide()" at the end.
@eamonburns9597 Жыл бұрын
@@UmongusSussehFrusseh That works to hide it, but how do you make it show again when you close the game or help window?
@UmongusSussehFrusseh Жыл бұрын
@@eamonburns9597 idk
@eamonburns9597 Жыл бұрын
@@UmongusSussehFrusseh No problem, I found a tutorial that works. kzbin.info/www/bejne/ql6XlJR3j7B_gNk&feature=shares It isn't the main focus of the video, but I was able to figure it out using the technique for referencing different forms.
@lucaslindgren32373 жыл бұрын
Nice video!
@indianprayers60913 жыл бұрын
Nice !!!
@rukhmannhayer56723 жыл бұрын
What if the game was a project.cs and not made in forms
@gbril34032 жыл бұрын
watch at the second part of the toutorial... it shows how to do it
@TL-Edu-r2 жыл бұрын
Hi Moo ICT please How to set form2 to main window ?
@mooict2 жыл бұрын
In the solutions explorer open Program.cs file inside of that replace Form1() to Form2(). That should open form2 when you run the app
@jaeger29183 жыл бұрын
Hi, thanks for this very informative video! I am having an issue where the game runs in the background even before I click my "start game" button. How would I fix this?
@ghostnoodle9721 Жыл бұрын
The fastest way would be to tie your start game method to initiate AFTER the start button is clicked, rather than on initialization of the whole program
@ReynaldsGison6 ай бұрын
Where the source code lods
@bronie183 жыл бұрын
❤❤
@Godemon6662 жыл бұрын
Dude why are you speed running this
@cainsykes70993 жыл бұрын
Has anybody got anytime on learning to code ?
@ReynaldsGison6 ай бұрын
Send to sources code
@HaileyandTristan2 жыл бұрын
si senjor asi me gusta
@vidhirughani4893 жыл бұрын
Hey plzz make starting page of existing games project in c# plzz
@mooict3 жыл бұрын
In this video the second part shows how to do that.
@vidhirughani4893 жыл бұрын
@@mooict ok sir thankyou soo much u r the best ☺i m doing my project in which i have added ur 5 games together just bcoz of u i m able to do this unique project in a very easy way 😘so sir if possible will u make video on how to add this 5 games in one page and if i click on one game then that game will open ??plzz sir do it just one thing is left to do in my project and i have to submit it before 30 june...
@mooict3 жыл бұрын
Hi you can do that 5 game in a similar way long as. They are all done in separate forms inside of the same project you can simply add buttons in the title screen for each form. How have you organised the projects so far?
@vidhirughani4893 жыл бұрын
@@mooict i have make 5 separate projects for each game and for each game i have created starting page ..
@vidhirughani4893 жыл бұрын
@@mooict now can i add this 5 game in one same project directly or i have to do the whole process again ??
@UmongusSussehFrusseh2 жыл бұрын
I'd also like to throw in that you can close the startScreen when opening the helpScreen by doing this: HelpScreen helpWindow = new HelpScreen(); helpWindow.Show(); this.Hide();