C# full project(Inventory Management System)with source code

Поделиться
HTML-код
  • Опубликовано: 16 ноя 2024

Комментарии • 1,9 тыс.

  • @DJone4one
    @DJone4one 3 года назад +10

    if you change the font family and size on the form before you create a new item, then use this item the same properties from the form. it work faster.

  • @gaurav-dutt
    @gaurav-dutt 3 года назад +11

    Thank you so much for such a wonderful project especially for beginners.

    • @gaurav-dutt
      @gaurav-dutt 3 года назад +3

      I have created the same application as explained and developed by you with minor changes...in Visual Studio 2019

    • @venkat1610
      @venkat1610 3 года назад

      ruclips.net/video/DrjnNxYXN78/видео.html

    • @andylacron6470
      @andylacron6470 Год назад +1

      Am a beginner too, I love the video but I find it hard to create given their is no verbal explanation as to what is happening and why it happens they way it is!!! Especially the code part of it!! How did you go about this! Or you didn't face that challenge at all!

    • @faizitricks4353
      @faizitricks4353 Год назад

      @@gaurav-dutt can u give the source code

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад +2

      Click on the join button and become a member of our community to receive the source code

  • @rasheer4923
    @rasheer4923 Год назад +1

    Thank you so much! It helps me with my university assignment.👍

  • @sergejbogovic6881
    @sergejbogovic6881 Год назад +1

    for everyone struggling with table in manage orders, this is how I did it:
    private void button5_Click(object sender, EventArgs e)
    {
    if (table.Columns.Count == 0)
    {
    table.Columns.Add("num");
    table.Columns.Add("product");
    table.Columns.Add("qty");
    table.Columns.Add("uprice");
    table.Columns.Add("totprice");
    }



    if (QtyTb.Text == "")
    MessageBox.Show("Enter The Quantity of Products");
    else if (flag == 0)
    MessageBox.Show("Select The Product");
    else
    {
    num = num + 1;
    qty = Convert.ToInt32(QtyTb.Text);
    totprice = qty * uprice;
    table.Rows.Add(num, product, qty, uprice, totprice);
    OrderGv.DataSource = table;
    flag = 0;
    }



    }
    And this is where I declared table:
    int num = 0;
    int uprice, totprice, qty;
    string product;
    DataTable table = new DataTable();
    If anyone have some questions about this, I have to tell you that someone helped me, I am not responsible by for code.

    • @DevMuttitious
      @DevMuttitious Год назад +1

      You Great ❤

    • @eddywilliams153
      @eddywilliams153 9 месяцев назад

      please how did you solve the problem on the cmd on the button insert Order

  • @L0PREZ
    @L0PREZ 4 года назад +8

    Thank you so much for your contribution to youtube this has explained exactly what I needed to know about wpf.

  • @shinra6183
    @shinra6183 3 года назад +1

    populate();
    populateproducts();
    fillcategory();
    table.Colums.Add("Num", typeof(int));// data type int;
    table.Colums.Add("Product", typeof(string));// datatype string;
    table.Colums.Add("Quantity", typeof(int));// datatype string;
    table.Colums.Add("UPrice", typeof(int));// data type string;
    table.Colums.Add("TotPrice", typeof(int));// data type int;
    "the name 'table' does nor exist in the current context
    thank for helping me.

    • @Perfformer
      @Perfformer 2 года назад

      Thank you very much!!!!!

  • @اسامةالملكي-د3د
    @اسامةالملكي-د3د 3 года назад +5

    Thank you so much for such a wonderful project especially for beginners.
    i want the source code

    • @sneigee
      @sneigee 2 года назад

      nice video
      Guys this .net 5 and Angular e-commvers site
      ruclips.net/video/-IzpsC-0eBk/видео.html

  • @irshyamane5876
    @irshyamane5876 3 года назад +2

    one of the best and easiest project for me thanks....

  • @andreasantel7784
    @andreasantel7784 3 года назад +3

    ¡Que belleza!
    Gracias por esta grandiosa aportación.

  • @shahabasif7744
    @shahabasif7744 3 года назад

    Really aa great project very informative video

    • @shahabasif7744
      @shahabasif7744 3 года назад

      @@MyCodeSpace1 thank you so much dear i have already subscribed and also shared to my friends

  • @_JFL
    @_JFL 3 года назад +1

    This wonderful project will help me to develop my C # skills a lot. Can I get the source code?

  • @leb19leb
    @leb19leb 3 года назад +7

    I spent the whole last week searching for something like this so i can start getting some idea for my project that i want to do for my work.
    Hope i can find all solutions in ur videos because and i hope after i finish learning all steps in ur video i can do my own project without copying others code.
    Ty and keep the good work.
    If u want i can give u the idea of my project so u can make a future video 😛😛(joking)

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад +4

      Thanks and all the best for your project.

  • @moezkhan3735
    @moezkhan3735 3 года назад

    Your video is helping me a lot in my final year project. It's biginner level but it's awesome

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад +1

      Thanks

    • @solitomxl
      @solitomxl 3 года назад +1

      @@MyCodeSpace1 i tried to donate but the link doesnt work thanks, i will be watching the video and trying to do it

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад +1

      www.paypal.me/mrdipkchouhan
      Try once more it should work.
      Thanks

  • @archismistry3624
    @archismistry3624 4 года назад +2

    At 3:38:40 you have use table.rows.add() can you explain what is that table is ? Is that datatable or what becase i am getting error at that point plzzz reply

  • @javertsolisvalerio3648
    @javertsolisvalerio3648 2 года назад +2

    A question. Where is the variable table defined?
    And thanks for the video...

  • @safnimj
    @safnimj Год назад +2

    Really useful
    Can i get the source code
    I stuck in the orders grid 😭

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад +2

      click on the join button and become a member of our community to receive the source code

  • @tato4196
    @tato4196 4 года назад +3

    Hello there ,
    Great video it actually helped me a lot.
    I have a question at 3:39:34 you are using a table variable is it a DataTable?
    And if yes have you used it before?
    Because I have create 2 datatables and I use them to fill my product gridview and my customer gridview.
    I created a third to store my order data but it didn't work.
    Thanks!

    • @thisisMihji
      @thisisMihji 4 года назад

      am having a similar problem, did you manage to fix this?

    • @tato4196
      @tato4196 4 года назад

      @@thisisMihji Yes I actually found a solution but I do not know if it's the right one! But I faced a problem it doesn't add new column but instead it overrides the old one. I don't know why Code Space isn't responding and from what I see he is active.

    • @tato4196
      @tato4196 4 года назад

      @@MyCodeSpace1 Thank you lad! It works fine right now! :) No worries keep up the good work!!

    • @berlin62
      @berlin62 3 года назад +1

      @@MyCodeSpace1
      You better send a video and show it I got an error at 3.39 and I can't

    • @tomasgudelis312
      @tomasgudelis312 3 года назад +1

      same problem to me. How to resolve it?

  • @Realv311
    @Realv311 Год назад

    Wow you help me so much with my Assigment

  • @areebmemon505
    @areebmemon505 3 года назад

    Make a tutorial video for supermarket with barcode scanner
    😊

  • @muhammadnouman136
    @muhammadnouman136 Год назад

    great video .....full of knowledge....
    Could you share the source code???

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      Click on the join button and become a member of our community to receive the source code

  • @akshitpamecha5667
    @akshitpamecha5667 3 года назад +1

    Thank you for the video. It was very informative and i have susbscribed to your channel for further videos. Please provide the source code

  • @beadeveloper119
    @beadeveloper119 3 года назад

    From Bangladesh as well
    Helpful and appreciated

  • @KarylleMarieTubio
    @KarylleMarieTubio 27 дней назад

    Can you do a tutorial how to build a To do list Management system using C# language ☹️☹️☹️

  • @syedrizvi9339
    @syedrizvi9339 3 года назад

    Its great... need source code with database Thanks..

  • @ibrahimmushrah5199
    @ibrahimmushrah5199 2 года назад

    3.38.59
    DataTable table=new Datatable();
    أيضًا الدقيقة 3:52

  • @SMALLTECH
    @SMALLTECH 3 года назад

    Thank you so much for your Video 😍

  • @oyleolduboyleoldu3677
    @oyleolduboyleoldu3677 6 месяцев назад

    Thanks for share

  • @adminbreakeryt4335
    @adminbreakeryt4335 3 года назад

    VERY NICE

  • @tamukadube9926
    @tamukadube9926 4 года назад

    a great job indeed im glad to have the source code

    • @tamukadube9926
      @tamukadube9926 4 года назад

      @@MyCodeSpace1 (tamukadube1990@gmail.com)

    • @rebinshekha1448
      @rebinshekha1448 3 года назад

      @@tamukadube9926 can I have source code and database ? razwanshexa@yahoo.com

  • @oswalsipadilla2969
    @oswalsipadilla2969 3 года назад

    Ready good..

  • @CricketworldU
    @CricketworldU 2 года назад

    All the work is owesome.
    but
    please tell where we use new varaiable
    datable table =new datable;

  • @johnlloydfrancisco3401
    @johnlloydfrancisco3401 Год назад +2

    Hello sir, on the time 3:39:53 and it said from your code table.Rows.Add(num, product, qty, price, totprice);
    where does named table came from?

  • @scctesting
    @scctesting Год назад

    I have subscribed. This has been so informative! May I have the source code?

  • @danishmirza5857
    @danishmirza5857 3 года назад +1

    Thanks and very good tutorial

  • @AngelBaldagoNgl
    @AngelBaldagoNgl 11 месяцев назад

    Hello, I'm new to this area, and I hope you don't mind if I ask which version you are using? Thank you!

  • @arshiyakhan5523
    @arshiyakhan5523 8 месяцев назад

    I have just started learning C#. should i start with this project. could you please guide me through this Thnaks

  • @ShopNamMuTrang1
    @ShopNamMuTrang1 5 месяцев назад

    thanks you sir! Very good.

  • @pearlnaidoo3633
    @pearlnaidoo3633 Год назад

    In the order management form in the line of code tables .rows.add where did u get tables from

  • @هدىورحمةللعالمين-د9خ

    Great project .... please I need the source code of it ...

  • @ikramanjum3722
    @ikramanjum3722 3 года назад

    Excellent 👌

  • @eddai84
    @eddai84 3 года назад

    God bless you, thanks for sharing.

  • @paulobendijo
    @paulobendijo Год назад

    i recently joined in your community membersip, and I love your work. can you give me a source code for this?

  • @Repair_machine
    @Repair_machine 3 года назад

    Watch has done :)

  • @sanabano6054
    @sanabano6054 Год назад

    Thank you for sharing this video.
    Can u give me the full source code??

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      Click on the join button and become a member of our community to receive the source code

  • @mikailali1431
    @mikailali1431 Год назад

    Great work sir,
    Please can i get full source code.

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      click on the join button and become a member of our community to receive the source code

  • @eddywilliams153
    @eddywilliams153 9 месяцев назад

    Nice work there sir I just subscribed and liked your video please can I get the source code?

  • @ohenejones8704
    @ohenejones8704 3 года назад +1

    Pls I enjoyed ur lesson, can u pls send the source code to

  • @celestinkpako6292
    @celestinkpako6292 2 месяца назад

    Good evening sir, thank you for everything you do for us beginners, I have been following you for almost a year, you have helped me achieve many things but I have a concern, I do not know if you can help me, I am making an application, I want to save the images in the database, Access, that is to say the image must be converted, how to convert a text into the database, I do not know if you understand me, text format and not photo format, in byte for example

  • @HindiBalak
    @HindiBalak Год назад

    thank you so much sir you are great ❤❤❤❤❤❤❤❤❤❤

  • @osamabinaqueel4570
    @osamabinaqueel4570 2 года назад

    I have subscribed the channel. you are just awesome. Where shall I contact you for the source code brother?

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the join button and become a member of our community to receive the source code

  • @kripashankar2474
    @kripashankar2474 4 года назад +1

    This project is actually a real time application and very informative. Can I get the source code?

    • @kripashankar2474
      @kripashankar2474 3 года назад

      @@MyCodeSpace1 Thanks a lot

    • @rfiqagayeva3476
      @rfiqagayeva3476 3 года назад

      @@kripashankar2474 pls, can u send me source code?

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад

      Subscribe.
      Give your mail id

    • @venkat1610
      @venkat1610 3 года назад

      ruclips.net/video/DrjnNxYXN78/видео.html

    • @alvertcruz
      @alvertcruz 2 года назад

      @@MyCodeSpace1 can i have it too

  • @RobertoLion
    @RobertoLion Год назад

    Next time plz use a mic.

  • @rchardubaldox1866
    @rchardubaldox1866 3 года назад

    I really enjoyed my stay her :) can i ask the source code?

  • @valziabazi4445
    @valziabazi4445 3 года назад

    Subscribed, can I get the source code please I need this badly you're my hero

  • @ishkhanahamed1301
    @ishkhanahamed1301 3 года назад +1

    Thanks for the awesome support I am doing BIT degree I got some errors can you send me your source code please it will help me

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад +1

      Subscribe.
      Give your mail id

    • @ishkhanahamed1301
      @ishkhanahamed1301 3 года назад

      @@MyCodeSpace1 I didn't get the source code could you please send me asap because I ran out of time please

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад

      Do you want us to guess your mail id?

    • @ishkhanahamed1301
      @ishkhanahamed1301 3 года назад

      @@MyCodeSpace1 hello are you there 👀👀

  • @НурайымНурбекова-в2к

    Thank you very much.Your tutorials are the best.May l get source code with database?

  • @ericcacciatoribellini7772
    @ericcacciatoribellini7772 3 года назад +1

    Not to shabby, good job!

  • @johnjohngenerosa1943
    @johnjohngenerosa1943 Год назад

    Thanks for the helpful videos . Can you Share me the source code

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      Click on the join button and become a member of our community to receive the source code

  • @tookaalghabri5009
    @tookaalghabri5009 Год назад

    I need the source code. I'm already subscribed

  • @christine164
    @christine164 Год назад

    Thanks for awesome.. I'm doing BSIS , I need this for my output..Can I get this source code sir?

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      Click on the join button and become a member of our community to receive the source code

  • @aspery7168
    @aspery7168 3 года назад

    very useful tutorial thank you

    • @venkat1610
      @venkat1610 3 года назад

      ruclips.net/video/DrjnNxYXN78/видео.html

  • @nyashachipapika3588
    @nyashachipapika3588 2 года назад

    Thank you for this helpful videos. Please kindly send me the source code of this project

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Kindly click on the join button and become a member of our community to receive the source code

    • @nyashachipapika3588
      @nyashachipapika3588 2 года назад

      @@MyCodeSpace1 I have already joined

  • @bluequay445
    @bluequay445 3 года назад +1

    amazing project tutorial help a lot but that table.rows.add i do not quite understand. Is it possible to have the source code? already subscribed

  • @nkanyisom3414
    @nkanyisom3414 3 года назад

    Great tutorial I did subscribe I can you please send the source code

  • @tafadzwatapera1820
    @tafadzwatapera1820 Год назад

    Really nice work! That is what I was looking for, This project is really helping me in making some elements of my project, May you please send me source code to assist

    • @armedcoffee6535
      @armedcoffee6535 Год назад

      How did you get passed on the problem with table.rows.add(num, product, qty, uprice, totprice);
      Mines got and error
      It says ArgumentException was unhandled

    • @tafadzwatapera1820
      @tafadzwatapera1820 Год назад +1

      ​@Armed Coffee please check if you converted the qtytb.text to int32, also check if u declared the variable converted the uprice.

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      Click on the join button and become a member of our community to receive the source code

    • @armedcoffee6535
      @armedcoffee6535 Год назад

      @@tafadzwatapera1820 thank you I'll give it a try

    • @armedcoffee6535
      @armedcoffee6535 Год назад

      @@MyCodeSpace1 I would if wasn't broke

  • @bharatibhoir1976
    @bharatibhoir1976 4 года назад

    great project please send source code

  • @parthmakkar3116
    @parthmakkar3116 3 года назад +2

    Thank you so much for the video sir . This project is really helping me in making my project . I would be so happy if you can help me in providing the source code of this project . Subscribed 🙌 Eagerly waiting for your reply 😊

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад +3

      Contact us on codeiscodespace@gmail.com
      For the modalities

    • @gunaseelan1847
      @gunaseelan1847 3 года назад

      have you got the code? please contact

    • @naqibafghan4156
      @naqibafghan4156 Год назад

      @@MyCodeSpace1 hi sir

  • @milanamarasooriya8333
    @milanamarasooriya8333 2 года назад

    Wow Grate Job , is it possible to have a copy of the source codes?

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the Join button and become a member of our community to receive the source code

  • @hanieesmaeili8331
    @hanieesmaeili8331 3 года назад

    Sooo fabulous
    Could you give source code?please

  • @rabiazulfiqar5022
    @rabiazulfiqar5022 2 года назад

    It helps alot😍Sir!can you share this code?

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the Join button and become a member of our community to receive the source code

  • @nhanhuynh6712
    @nhanhuynh6712 2 года назад

    thank you so much

  • @sobitkhonsharipbaev306
    @sobitkhonsharipbaev306 3 года назад

    Great! Best application. Can we have your bunifu elements please.

  • @mohamedabbad4230
    @mohamedabbad4230 2 года назад

    Thanks so much for your projects they helped me so much ,
    I'm subscribed already can you send me source code plz

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the join button and become a member of our community to receive the source code

  • @ishikasinghania517
    @ishikasinghania517 3 года назад +1

    Can I have the source code please?.. already subscribed

  • @harveypadilla3952
    @harveypadilla3952 2 года назад

    Very helpfull tutorial, where can i download the source code sir?

    • @harveypadilla3952
      @harveypadilla3952 2 года назад

      MyCodeSpace

    • @harveypadilla3952
      @harveypadilla3952 2 года назад

      where to download the source code sir? @
      MyCodeSpace

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the join button and become a member of our community to receive the source code

  • @arthurmupfumira3538
    @arthurmupfumira3538 4 года назад

    Thank you for the wonderful tutorial. May I have the source code with the database.

  • @irshyamane5876
    @irshyamane5876 3 года назад

    invoice print or billing prints based on particular customer as well as based on particular products list

    • @s.marman2301
      @s.marman2301 3 года назад

      hi are you able to run the code? i got stuck at manage order. if you do please let me know. thanks. armansm4@gmail.com

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад

      Check your mail.
      Subscribe

  • @davidhorvath9257
    @davidhorvath9257 2 года назад

    This video is very helpful. Can you send me code of the project?

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the join button and become a member of our community to receive the source code

  • @rchardubaldox1866
    @rchardubaldox1866 3 года назад

    Thanks for the tutorial I hope i can ask the source code? :)

  • @delsher4907
    @delsher4907 6 месяцев назад

    if i just studied c# and oop what else should i study to be able to wathc the video and make the project

  • @trendingissuetv4897
    @trendingissuetv4897 3 года назад

    Your video have a lot of knowledge, can you send me the Source code please :(

  • @ahmedelhady1679
    @ahmedelhady1679 3 года назад

    WOOOOOOOWWWW, Can I have the source code please.....

  • @mdproduction62
    @mdproduction62 4 года назад

    Great video and I love all yours videos. can i get this sours code plz

  • @tinnn0245
    @tinnn0245 3 года назад +1

    where i can find the source code? thank you for the answers ♡

  • @meritjallow7837
    @meritjallow7837 2 года назад

    Wow just came across to these projects and all of them were superb and great. Anyway How can get the Source_Code of the inventory management and the bakery management project?

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Kindly Click on the join button and become a member of our community to receive the source code

  • @redaouiaoussama7430
    @redaouiaoussama7430 3 года назад

    Thankyou very much

  • @kirtanpatel6524
    @kirtanpatel6524 10 месяцев назад

    You used windows form can i Swich windows form to web form? Is the code remain same or changes can be applied? Please reply 🙏

  • @poletihfm
    @poletihfm 2 года назад

    Thats a nice project, im interested in the source code

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Kindly send us a mail on codeiscodespace@gmail.com

    • @poletihfm
      @poletihfm 2 года назад

      @@MyCodeSpace1 i sent an email but no answer :(

  • @malekdrebi1771
    @malekdrebi1771 3 года назад

    Well done.
    Can I have source code.

  • @hassanhatim6301
    @hassanhatim6301 Год назад

    your videos was very helpful . Can i get the source code?

    • @MyCodeSpace1
      @MyCodeSpace1  Год назад

      Click on the join button and become a member of our community to receive the source code

    • @hassanhatim6301
      @hassanhatim6301 Год назад

      i cant see the join button@@MyCodeSpace1

    • @tookaalghabri5009
      @tookaalghabri5009 Год назад

      ​​@@MyCodeSpace1In Form Order at 3:40, I show a exception (say that the input array is longer than the number of columns in this table.) What is the solution please

  • @dhanashribhamare322
    @dhanashribhamare322 3 года назад

    Awesome project!
    Can you send me the source code?
    Subscribed and liked the video.

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад

      Subscribe.
      Give your mail id

    • @dhanashribhamare322
      @dhanashribhamare322 3 года назад

      @@MyCodeSpace1 Hi sir ,I've sent my email id but still I didn't the source code. Please send me the source code as soon as possible

  • @RosalynBell-j5d
    @RosalynBell-j5d 10 месяцев назад

    cool video)

  • @jasper5712
    @jasper5712 4 года назад

    THANKYOU VERY MUCH PLEASE SHARE THE CODE

  • @oscaronwuchekwa295
    @oscaronwuchekwa295 4 года назад

    such an insightful video.. please can i get the source code?

  • @vitorfodastic
    @vitorfodastic 4 года назад +1

    3:40:51 exception when adding items to the grid view

    • @005mairasultana6
      @005mairasultana6 4 года назад

      @@MyCodeSpace1 just tell me where this line of code DataTable table=new DataTable () ; will be written

    • @hosalnajam5283
      @hosalnajam5283 3 года назад +4

      @@005mairasultana6 public Form6()
      {
      InitializeComponent();
      }
      DataTable table = new DataTable();
      SqlConnection Con = new SqlConnection(@"Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\hosal\OneDrive\Documents\inventorysystem.mdf;Integrated Security=True;Connect Timeout=30");

    • @Deity-no3pe
      @Deity-no3pe 3 года назад +1

      @@005mairasultana6 thank you so much 😅🤣😂I was stuck and getting anxiety..only cos you of saying this im back on track

    • @supipianjala7284
      @supipianjala7284 2 года назад

      @@hosalnajam5283 thank you😊

    • @armedcoffee6535
      @armedcoffee6535 2 года назад

      @@hosalnajam5283 i tried this
      it worked but it had different problems like being able to use the table

  • @shamch7664
    @shamch7664 3 года назад

    Great work... I'm stuck at table. Rows. Add..can you guide me please

    • @MyCodeSpace1
      @MyCodeSpace1  3 года назад

      Send a screen shot of the error on codeiscodespace@gmail.com

    • @mohammedmajd6120
      @mohammedmajd6120 3 года назад

      @sham ch did you solve it ? i have the same problem as you

  • @roxywilliams6494
    @roxywilliams6494 2 года назад

    Thanks!

    • @roxywilliams6494
      @roxywilliams6494 2 года назад

      I’d very much appreciate if you could share the source code of this project. I really need, I had built one system and I haven’t been able to fix a bug and your project will help me a lot for my final project. Thanks!

  • @christianpalomeno1160
    @christianpalomeno1160 Год назад

    Hello Sir, thankyou for this, Exactly this is my Project to submit, can I get the full source Code? Please😢

  • @wewe-pm6mj
    @wewe-pm6mj 2 года назад

    Great job.Could you please send me the source code?Thanks

    • @MyCodeSpace1
      @MyCodeSpace1  2 года назад

      Click on the Join button and become a member of our community to receive the source code

  • @sairajpatil9262
    @sairajpatil9262 4 месяца назад

    Can I run this project in vs code instead of Microsoft visual studio will it work..