Appreciate the teaching skills and dedication...thanks a lot..
@Csharp-video-tutorialsBlogspot7 жыл бұрын
Thank you very much for taking time to give feedback. This means a lot. I am very glad you found the videos useful. I have organised all the Dot Net & SQL Server videos in to playlists, which could be useful to you kzbin.infoplaylists?view=1&sort=dd If you need DVDs or to download all the videos for offline viewing please visit www.pragimtech.com/kudvenkat_dvd.aspx Slides and Text Version of the videos can be found on my blog csharp-video-tutorials.blogspot.com Tips to effectively use my youtube channel. kzbin.info/www/bejne/r2ibYYCtnb5qZtU If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel. kzbin.info If you like these videos, please click on the THUMBS UP button below the video. May I ask you for a favor. I want these tutorials to be helpful for as many people as possible. Please share the link with your friends and family who you think would also benefit from them. Good Luck Venkat
@qualityrenov8 жыл бұрын
the best teacher on youtube, hands down.thank you very very very much!!
@Csharp-video-tutorialsBlogspot12 жыл бұрын
Hi Ankit, sure I will try to record and upload videos on web services, as soon as I can. If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel. May I ask you for a favour. I want these tutorials to be helpful for as many people as possible. Please free to share the link with your friends and family who you think would also benefit from them. Good Luck.
@NSNegi-mt7rx6 жыл бұрын
venkat sir marvelous the way you teach and explain things is the unique style like a real guru. i have become your fan i have never seen such talent before
@krismaly630010 жыл бұрын
Check Box List Control explained with a good example and and also NULL reference. Recommend others to watch this video. Thanks a bunch
@pragyagera22623 жыл бұрын
Helped a lot 🙌🙌
@m3cv1no8 жыл бұрын
i will always watch your videos ........ peace ^_^
@juliobarriga11 жыл бұрын
Awesome as always.
@georgigeorgiev48718 жыл бұрын
Dear Mr. Venkat, I personally consider typing == true a better option for readability purposes. Sometimes you don't need to do the most effective thing.
@Trzbne6 жыл бұрын
Booleans usually begin with Is... I find it easier and more readable to read: if(MyObject.IsHidden), I just read: if my object is hidden, than: if(MyObject.IsHidden == true), what I would read as: if my object is hidden is true :-)
@tony.g90227 жыл бұрын
@Kudvenkat I need to display the listitem dynamically from json. How we can do that ?
@secretlives27348 жыл бұрын
thanks
@biNuTheFirst11 жыл бұрын
awesome tutorial
@raymulligan559 жыл бұрын
Can you select all from a parent node with checkbox list? If so, How is that done
@969460196511 жыл бұрын
Nice Video Thanks Sir
@InkSpacely11 жыл бұрын
How do I output these results on a label, instead of beside the checkboxlist? Thanks, good video.
@musengamvula72004 жыл бұрын
i love visual C# and I really want to learn how to code using visual C#
@m3cv1no8 жыл бұрын
thx ^_^
@alvinchuah71410 жыл бұрын
How about Check Box List that selected show at Other Form?
@ankit288312 жыл бұрын
can you upload some videos on webservices
@AbdulHannan-bv8of10 жыл бұрын
awesome sir
@InkSpacely11 жыл бұрын
It's ok i got it fixed, sorry
@89Ssik9 жыл бұрын
I'm pretty sure users who want to learn programming they not only need to listen to your videos but actually type in every single line of code and understand why is it written like that. Just want to save time for users who only watch videos and think that they will learn it faster in reality they will just be in bigger issue when they find themselves to actually write code on their own.
@Trzbne6 жыл бұрын
I agree, you are right 100%!!!
@jayshah84207 жыл бұрын
what if i want to restrict the user to select only 2 selections out of four. how can that be achieved.?
@Trzbne6 жыл бұрын
Use CheckBoxList control, because it handles all checkboxes inside it together. Subscribe for SelectedIndexChanged event, and there: int counter = 0; foreach(ListItem item in CheckBoxList1.Items) { if(item.Selected) counter++; } if(counter > 1) { foreach(ListItem item in CheckBoxList1.Itemse){ if(!item.Selected) item.Enabled = false; } else { // foreach items there, item.enabled = true
@sca11ywagg5 жыл бұрын
The reason you compare against "true" is to make your code more explicit. I agree that it makes no difference functionally, and I wouldn't fail this code in a review, but by being more explicit you make slightly more readable when the next person has to work on it. Readability should be the #1 goal of anybody writing code. Even if your code has bugs, than as long as it is readable then it can be fixed. If it's not readable, it has to be discarded and rewritten by someone else.
@InkSpacely11 жыл бұрын
I'm also getting the error "GetEnumerator" Any help, thanks