Content @5:16-@6:16 is the most important but it is out of the screen. :(
@kadevtips21 күн бұрын
Hi, thanks for your feedback. Please watch the entire video. I wrote the code line by line, and it's complete. Just pause the video to copy it. Thank you!
@muhammadabdulraheem227228 күн бұрын
thanks
@kadevtips21 күн бұрын
Glad you found it helpful! Thank you :)
@afpfvdАй бұрын
thank so much, it's very helpfull
@kadevtipsАй бұрын
@@afpfvd You're very welcome! I'm glad you found the video helpful. If you have any more questions or need further clarification, feel free to ask! Keep learning and exploring! 😊
@user-sprikitikАй бұрын
hello po, may 2nd part po ba to?
@enmanuelguzman6861Ай бұрын
good explanation, thanks
@kadevtipsАй бұрын
@@enmanuelguzman6861 You're welcome 😊
@yeyintchanthar6115Ай бұрын
Thanks❤❤
@kadevtipsАй бұрын
@@yeyintchanthar6115 You're welcome 😊
@GopalCodeАй бұрын
Good Work
@kadevtipsАй бұрын
Thank you 😊
@monthonphongphao4011Ай бұрын
I think the background music is too loud.
@kadevtipsАй бұрын
Thanks for your feedback! I really appreciate it. I'll definitely take a look at the audio levels for future videos to ensure the music complements the content better. Your input helps me improve! 😊
@Thechadshirts2 ай бұрын
this is called the they/them, why? because you should shut up to not make they/them get hacked by a sql injection
@kadevtips2 ай бұрын
Hello, sorry, but I don’t know what you’re talking about. 😅
@Thechadshirts2 ай бұрын
@@kadevtips The Union All if wrongly sanitized can lead to a sql injection
@ngocanhit2 ай бұрын
Thank for share❤❤🎉🎉😊😊😊😊
@ngocanhit2 ай бұрын
Chia sẻ kiến thức thú vị lắm bạn. 👍👍👍👍👍
@kadevtips2 ай бұрын
Thank you! I'm glad you find it interesting. There's so much more to explore-stay tuned for more tips and tricks! Don't forget to subscribe for more awesome content!
@vorapobautomation97602 ай бұрын
How to set textbox can both read and write value use C#?
@kadevtips2 ай бұрын
Thanks for your question! Are you asking how to make a TextBox in C# that allows users to both view and edit the text? If so, you can set the ReadOnly property of the TextBox to false to allow both reading and writing. Let me know if you need more details!
@ngocanhit2 ай бұрын
Thank for share
@kadevtips2 ай бұрын
You're welcome! Glad you found it helpful. If you enjoyed this, make sure to Subscribe for more tutorials and tips. Don't hesitate to ask if you have any questions or need further guidance!
@ngocanhit3 ай бұрын
Thank for share. like
@kadevtips3 ай бұрын
You're welcome! Glad you found it helpful. Don't forget to Subscribe for more content like this! Thank you..
@ngocanhit3 ай бұрын
Chia sẻ kiến thức hay lắm bạn Mến chúc bạn nhiều sức khỏe, an lành hạnh phúc Mong bạn phản hồi, thanks!
@kadevtips3 ай бұрын
Thank you so much for your kind words and well wishes! I'm glad you found the knowledge shared in the video valuable. Wishing you the best in your journey as well. Feel free to reach out anytime, and thank you for your support!
@vorapobautomation97603 ай бұрын
How to Insert Update Delete data in Database from DataGridView ?
@vorapobautomation97603 ай бұрын
How to load Data From Notepad (.CSV) to DataGridView in C# Windows Form Application ?
@kadevtips3 ай бұрын
Hi there! You can try using the following code to load data from a CSV file into a DataGridView: private void btnLoadCSV_Click(object sender, EventArgs e) { string filePath = "path_to_your_csv_file.csv"; // Specify the path to your CSV file DataTable dataTable = LoadCSV(filePath); dataGridView1.DataSource = dataTable; } private DataTable LoadCSV(string filePath) { DataTable dt = new DataTable(); try { using (StreamReader sr = new StreamReader(filePath)) { string[] headers = sr.ReadLine().Split(','); // Reading headers foreach (string header in headers) { dt.Columns.Add(header); } while (!sr.EndOfStream) { string[] rows = sr.ReadLine().Split(','); DataRow dr = dt.NewRow(); for (int i = 0; i < headers.Length; i++) { dr[i] = rows[i]; } dt.Rows.Add(dr); } } } catch (Exception ex) { MessageBox.Show("Error: " + ex.Message); } return dt; } Make sure to replace "path_to_your_csv_file.csv" with the actual path to your CSV file. This code will read the CSV file and display the data in a DataGridView. If you encounter any issues, feel free to ask for further help.
@vorapobautomation97603 ай бұрын
How to load Data From Notepad (.CSV) to DataGridView in C# Windows Form Application ?
@kadevtips3 ай бұрын
Hi, Please read my comment in the other comment thread. Thank you.
@manickamr58883 ай бұрын
How to oracle dump file move to mysql
@haxelcokie24303 ай бұрын
Hello!! I Just want to know how to fix This 'The specified executable is not a valid application for this OS platform'. Btw what im doing is like a Document System where you save file in the data base 'Sql', Then when the file is already saved, The list of column and rows will appear, Then when you click the Saved file inside the column you must click the View button for the file to Show, The Problem is whenever i click the View button this 'The specified executable is not a valid application for this OS platform' just keep showing up idk what to do😭 Even the Ai didnt gave me the exact solution It would be a great help if you can help me with this. Thankyou🥰🥰
@kadevtips3 ай бұрын
Hi, Maye there's an issue with the OS/.Net Framework you are using in your project. Try changing your approach in viewing the file; the method you're using may not be supported by OS/.Net framework you're using.
@spin4team40964 ай бұрын
AI generated
@kadevtips4 ай бұрын
If you want to learn how to save an image in a database, check out this video: kzbin.info/www/bejne/jKe8gGNrq8ynirc
@kadevtips4 ай бұрын
If you want to load a PDF file into a PictureBox, check out this video: kzbin.info/www/bejne/pJ3PoaqCjdGYrLM
@Akira-e2w4 ай бұрын
Is the same to pdf?
@kadevtips4 ай бұрын
Hi, No, It's not the same. I will create a separate video for PDF file. Thank you.
@kadevtips4 ай бұрын
Done! I've created a video on how to load a PDF in a PictureBox. Kindly check the link in the pinned comment.
@kadevtips4 ай бұрын
Part 2 : Search Data in Datagridview - Checkout this video -> kzbin.info/www/bejne/mpTWh62FgqqDjas
@vorapobautomation97603 ай бұрын
Dear Sir How to search Data in Datagridview if i use CSV file ?
@kadevtips4 ай бұрын
Part 2: Enhanced Version - Check out this video -> kzbin.info/www/bejne/eWmWf6uNf6inqsk
@Private_Engineering4 ай бұрын
Hello, could you please tell in which directory is the app? Can we copy the app to another computer? What should be done to copy the app? In another comp, what is required to run the app?
@kadevtips4 ай бұрын
Hi, yes, you can copy or transfer your codes/projects to another computer. You can find your projects at this path, which is the default location where all projects are saved: Documents > Visual Studio 2015 (or your Visual Studio version) > C#_Calculator (Your Project) Just copy the entire folder of your project to another computer, and that's it. To run it, look for the .sln file in your project folder. Thank you.
@rajanisalvi47745 ай бұрын
Yes great
@kadevtips5 ай бұрын
Thank you so much! I'm glad you enjoyed the video. If you found it helpful, consider subscribing to the channel for more programming tutorials and tips. Your support means a lot and helps me create more content for you! 😊
@ezikkk28406 ай бұрын
can you send completed project? Or left pieces of code in description
@kadevtips6 ай бұрын
Hi, you can get it on my previous video.. Link on the description. Thank you 😊
@jbone1356 ай бұрын
Very helpful video! Thank you
@kadevtips6 ай бұрын
Thank you so much for your kind words! I'm thrilled to hear that you found the video helpful. If you have any suggestions for future content or topics you'd like to see covered, feel free to let me know. And if you enjoyed this video, don't forget to hit the subscribe button to stay updated on all the latest uploads! Your support means the world to me. 😊🎥✨
@franciscxjavier8 ай бұрын
Great video!
@kadevtips8 ай бұрын
Thank you so much for watching! I'm glad you found the video helpful. It means a lot to me that you took the time to watch and learn something new. If you have any questions or need further assistance, feel free to reach out. Happy learning!
@andreisvetov572610 ай бұрын
Thanks, interesting! One quiestion: how can i immediately switch to another video from youtube after finishing the first one? (without playlist creation, just pass another URL)?
@sulyapkwento11 ай бұрын
Very informative video 😊
@kadevtips11 ай бұрын
Thank you! 😊
@rogeliogutierrezjr11 ай бұрын
nice content..thanks for sharing
@kadevtips11 ай бұрын
Thank you Sir 😊
@BolaATBP_42811 ай бұрын
Nice one idol... Very informative!
@kadevtips11 ай бұрын
Thank youu! 😊
@genaroumali317911 ай бұрын
Amazing content new friend here
@kadevtips11 ай бұрын
Thank you!
@llerson8411 ай бұрын
good job. salamat
@kadevtips11 ай бұрын
Welcome 😊
@ByaheniEdlas11 ай бұрын
Amazing content
@kadevtips11 ай бұрын
Thank you!
@JaniceVlog242711 ай бұрын
Wow amazing
@kadevtips11 ай бұрын
Thank you! 😊
@crypto_ph272711 ай бұрын
❤❤❤
@rjanerosales815911 ай бұрын
Thanks for sharing this ❤
@kadevtips11 ай бұрын
Welcome! 😊
@oluwatobiadeniji477 Жыл бұрын
what if i put more than two numbers in the textBox like 3+4+3. i think your code only works for two numbers only.
@kadevtips7 ай бұрын
Hi, Thank you so much for your feedback! I truly value your input. For an improved version of the C# calculator code that now accepts multiple numbers, feel free to check out the link below: kzbin.info/www/bejne/eWmWf6uNf6inqsk Once again, thank you!
Hello, thanks for this. What I showed here in the video is just an example, you can customize it with another approach that is better for you. 😊
@darkangel6583 Жыл бұрын
Is there a way to do this in c# using mysql database my application load almost 20 seconds just by displaying 6000 rows in datagridview, I'm willing to donate any amount if you can help me.
@kadevtips Жыл бұрын
Hello, Good day! Sure, I will help you, send an email to us then let's check your application. [email protected]
@darkangel6583 Жыл бұрын
@@kadevtips I already sent you the files sir
@urvikshroff Жыл бұрын
This loading data took you 20 seconds approx. can you show some another method like paging data and scrolling it to end load more data?
@kadevtips5 ай бұрын
Hello! I've prepared another video tutorial focusing on C# DataGridView Pagination. kzbin.info/www/bejne/hH-plHV4qp6msNE
@tarekmohamed4120 Жыл бұрын
thats great , can you show the way to do it in C# ?
@kadevtips Жыл бұрын
Yes Sir, here's the link kzbin.info/www/bejne/eqSnaZhjebmrpNk Thank you :)