Тёмный
Ka-Dev Tips
Ka-Dev Tips
Ka-Dev Tips
Подписаться
Unlock your potential in the world of computer programming with our comprehensive and easy-to-follow tutorials. Whether you're a beginner looking to start your coding journey or an experienced developer aiming to sharpen your skills, we've got you covered.

Here, you'll find:

In-depth tutorials on various programming languages (C#, Python, Java, and more)
Step-by-step guides on real-world projects
Tips and tricks for efficient coding
Best practices in software development
Problem-solving techniques and algorithm strategies
Subscribe now and join our community of passionate learners and developers. Let's code, create, and innovate together!

🔔 Hit the notification bell to stay updated on our latest videos!

#Programming #Coding #SoftwareDevelopment #LearnToCode #CodeMastery #TechTutorials
Комментарии
@enmanuelguzman6861
@enmanuelguzman6861 5 дней назад
good explanation, thanks
@kadevtips
@kadevtips 5 дней назад
@@enmanuelguzman6861 You're welcome 😊
@yeyintchanthar6115
@yeyintchanthar6115 11 дней назад
Thanks❤❤
@kadevtips
@kadevtips 11 дней назад
@@yeyintchanthar6115 You're welcome 😊
@GopalCode
@GopalCode 17 дней назад
Good Work
@kadevtips
@kadevtips 17 дней назад
Thank you 😊
@monthonphongphao4011
@monthonphongphao4011 18 дней назад
I think the background music is too loud.
@Thechadshirts
@Thechadshirts Месяц назад
this is called the they/them, why? because you should shut up to not make they/them get hacked by a sql injection
@kadevtips
@kadevtips Месяц назад
Hello, sorry, but I don’t know what you’re talking about. 😅
@Thechadshirts
@Thechadshirts Месяц назад
@@kadevtips The Union All if wrongly sanitized can lead to a sql injection
@ngocanhit
@ngocanhit Месяц назад
Thank for share❤❤🎉🎉😊😊😊😊
@ngocanhit
@ngocanhit Месяц назад
Chia sẻ kiến thức thú vị lắm bạn. 👍👍👍👍👍
@kadevtips
@kadevtips Месяц назад
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!
@vorapobautomation9760
@vorapobautomation9760 Месяц назад
How to set textbox can both read and write value use C#?
@kadevtips
@kadevtips Месяц назад
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!
@ngocanhit
@ngocanhit Месяц назад
Thank for share
@kadevtips
@kadevtips Месяц назад
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!
@ngocanhit
@ngocanhit Месяц назад
Thank for share. like
@kadevtips
@kadevtips Месяц назад
You're welcome! Glad you found it helpful. Don't forget to Subscribe for more content like this! Thank you..
@ngocanhit
@ngocanhit Месяц назад
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!
@kadevtips
@kadevtips Месяц назад
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!
@vorapobautomation9760
@vorapobautomation9760 2 месяца назад
How to Insert Update Delete data in Database from DataGridView ?
@vorapobautomation9760
@vorapobautomation9760 2 месяца назад
How to load Data From Notepad (.CSV) to DataGridView in C# Windows Form Application ?
@kadevtips
@kadevtips 2 месяца назад
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.
@vorapobautomation9760
@vorapobautomation9760 2 месяца назад
How to load Data From Notepad (.CSV) to DataGridView in C# Windows Form Application ?
@kadevtips
@kadevtips 2 месяца назад
Hi, Please read my comment in the other comment thread. Thank you.
@manickamr5888
@manickamr5888 2 месяца назад
How to oracle dump file move to mysql
@haxelcokie2430
@haxelcokie2430 2 месяца назад
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🥰🥰
@kadevtips
@kadevtips 2 месяца назад
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.
@spin4team4096
@spin4team4096 3 месяца назад
AI generated
@kadevtips
@kadevtips 3 месяца назад
If you want to learn how to save an image in a database, check out this video: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-VvYO05vgtTU.html
@kadevtips
@kadevtips 3 месяца назад
If you want to load a PDF file into a PictureBox, check out this video: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-nllpwLXlevQ.html
@Akira-e2w
@Akira-e2w 3 месяца назад
Is the same to pdf?
@kadevtips
@kadevtips 3 месяца назад
Hi, No, It's not the same. I will create a separate video for PDF file. Thank you.
@kadevtips
@kadevtips 3 месяца назад
Done! I've created a video on how to load a PDF in a PictureBox. Kindly check the link in the pinned comment.
@kadevtips
@kadevtips 3 месяца назад
Part 2 : Search Data in Datagridview - Checkout this video -> ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-dcsVzOMEPWI.html
@vorapobautomation9760
@vorapobautomation9760 2 месяца назад
Dear Sir How to search Data in Datagridview if i use CSV file ?
@kadevtips
@kadevtips 3 месяца назад
Part 2: Enhanced Version - Check out this video -> ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-C83NxWJCttg.html
@Private_Engineering
@Private_Engineering 3 месяца назад
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?
@kadevtips
@kadevtips 3 месяца назад
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.
@rajanisalvi4774
@rajanisalvi4774 4 месяца назад
Yes great
@kadevtips
@kadevtips 4 месяца назад
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! 😊
@ezikkk2840
@ezikkk2840 5 месяцев назад
can you send completed project? Or left pieces of code in description
@kadevtips
@kadevtips 5 месяцев назад
Hi, you can get it on my previous video.. Link on the description. Thank you 😊
@jbone135
@jbone135 5 месяцев назад
Very helpful video! Thank you
@kadevtips
@kadevtips 5 месяцев назад
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. 😊🎥✨
@franciscxjavier
@franciscxjavier 7 месяцев назад
Great video!
@kadevtips
@kadevtips 7 месяцев назад
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!
@andreisvetov5726
@andreisvetov5726 9 месяцев назад
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)?
@sulyapkwento
@sulyapkwento 10 месяцев назад
Very informative video 😊
@kadevtips
@kadevtips 10 месяцев назад
Thank you! 😊
@rogeliogutierrezjr
@rogeliogutierrezjr 10 месяцев назад
nice content..thanks for sharing
@kadevtips
@kadevtips 10 месяцев назад
Thank you Sir 😊
@BolaATBP_428
@BolaATBP_428 10 месяцев назад
Nice one idol... Very informative!
@kadevtips
@kadevtips 10 месяцев назад
Thank youu! 😊
@genaroumali3179
@genaroumali3179 10 месяцев назад
Amazing content new friend here
@kadevtips
@kadevtips 10 месяцев назад
Thank you!
@llerson84
@llerson84 10 месяцев назад
good job. salamat
@kadevtips
@kadevtips 10 месяцев назад
Welcome 😊
@ByaheniEdlas
@ByaheniEdlas 10 месяцев назад
Amazing content
@kadevtips
@kadevtips 10 месяцев назад
Thank you!
@JaniceVlog2427
@JaniceVlog2427 10 месяцев назад
Wow amazing
@kadevtips
@kadevtips 10 месяцев назад
Thank you! 😊
@crypto_ph2727
@crypto_ph2727 10 месяцев назад
❤❤❤
@rjanerosales8159
@rjanerosales8159 10 месяцев назад
Thanks for sharing this ❤
@kadevtips
@kadevtips 10 месяцев назад
Welcome! 😊
@oluwatobiadeniji477
@oluwatobiadeniji477 11 месяцев назад
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.
@kadevtips
@kadevtips 6 месяцев назад
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: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-C83NxWJCttg.html Once again, thank you!
@bryanc5913
@bryanc5913 11 месяцев назад
P r o m o S M
@Vegas-z5n
@Vegas-z5n 11 месяцев назад
if (operationPending) { double secondNumber = double.Parse(currentInput); switch (operation) { // same code } textBox1.Text = result.ToString(); currentInput = textBox1.Text; // <-- that's better operationPending = false; }
@kadevtips
@kadevtips 11 месяцев назад
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
@darkangel6583 11 месяцев назад
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
@kadevtips 11 месяцев назад
Hello, Good day! Sure, I will help you, send an email to us then let's check your application. kadevtips@gmail.com
@darkangel6583
@darkangel6583 11 месяцев назад
@@kadevtips I already sent you the files sir
@urvikshroff
@urvikshroff 11 месяцев назад
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?
@kadevtips
@kadevtips 4 месяца назад
Hello! I've prepared another video tutorial focusing on C# DataGridView Pagination. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-NNFcBBu9szo.html
@tarekmohamed4120
@tarekmohamed4120 Год назад
thats great , can you show the way to do it in C# ?
@kadevtips
@kadevtips Год назад
Yes Sir, here's the link ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-DsD8e-DTxnw.html Thank you :)
@makeu6693
@makeu6693 Год назад
Chrrt, thank u lodi 🔥
@kadevtips
@kadevtips Год назад
Welcome Sir, Thanks! :)
@mckleindagondong
@mckleindagondong Год назад
not working sir
@kadevtips
@kadevtips Год назад
Hello Sir, you encountered an error?
@juliusrobles13
@juliusrobles13 Год назад
Nice tutorial madali lang sundan
@kadevtips
@kadevtips Год назад
Thank you :)