dude you are a life saver, your video have helped me a lot with my project for university, dint have any previous programming knowledge before getting into university. i was just good at repairing PC but after watching yours tutorial i have come to understand most of it. i still have issue with the code but the logic is there, heck even my teacher asked wtf i was watching that i learning so fast xD. thx once again for this tutorials.
I would like to know if you can help me. I have loaded values to a autocomplete textboxfrom my datatable column , when i type a letter it is showing only from starting letter values. I want to load values only typed letter . for eg: I have three words like eat,meat,cook. if i type letter "e" in my textbox then i want show only eat,meat. Let me know if you have any solutions to fix this.
good job sir, thanks for your sharing. But am wondering to know if we can make DataGridView text cell filled automatically also??? i know i can use ComboBox. but i really need to do that with text cell in my project.
I know How to fill datagridview by just typing a similar letter in text box and get data from database to datagridview If Interested Then Contact me on MY email rupees will be charged for source code explanantion
I applied it on combobox and it given the following error System.NotSupportedException: 'Only the value AutoCompleteMode.None can be used when DropDownStyle is ComboBoxStyle.DropDownList and AutoCompleteSource is not AutoCompleteSource.ListItems.'
This video is very helpful, thanks so much. But... one question! If I want to autocomplete also by inputing characters contained in the middle of the strings inside the coll? For example, inputing "ohn" it should autocomplete showing "john", inputing "ill" it should autocomplete showing "jill" and "bill". I tried many way but I'm a newbie and I didn't succeed. :(
Can you upload a video with the same Textbox search property,but with EF / LINQ? I understand the mechanism of it,but I don't know which command I should use instead of DataView for example....
I have a problem. Autocomplete only finds the last entry from database. For example if i had records in my database with names: John, Richard, Jack. Autocomplete would only find Jack, even though there are 2 words that start with J. Any help appreciated.
Hey, thanks for the great video. How would I go about going through autocomplete when there are multiple people with the same name? if there are two "John Doe" only one of them shows up with this method.
Just some thoughts here. You make good videos, but you take too long to pass the point over. For the 20 minutes that this video's length is, you could have made is as short as under 5 minutes. As developers we all go back to videos we saw something work whenever we need clarification and we know upfront that we should pause whenever its too fast. This video helped me a lot to be honest, but I had to forward more than half of it because you stuck someplace for too long. Am not against you, I just think there is a lot of room for improvements in your video presentation. Thanks all the same.
The longer the video's length and the more the viewer can be engaged,the more this video will appear in UA-cam's search result. Making videos long is a trick to easily get listed at the beginning of youtube search! :D
Textbox autocomplete for search data type datetimer and int private void textsearchtime_TextChanged(object sender, EventArgs e) { DataView dv = new DataView(dataset); dv.RowFilter = string.Format(" CONVERT(date, System.String) LIKE '%{0}%'", textsearch.Text); dataGridView2.DataSource = dv; }
Your code writing is so strange. It looks like you take very long ways to make it work. I am not that master of c# but even i can do it in shorter(i mean very short) and still safe ways.Another suggestion, the title says "Textbox autocomplete with Database Values". So show how its done in a new form of application. I don't really liked that idea that i should watch your earlier videos to understand new ones.Also, all that off-topic codes would make it harder to understand. Thanks
+Siddharth Shinde and he still have done it, maybe he is just a student, maybe he is doing it for cash, he is still doing it and he is on some level better than you and me.
dude you are a life saver, your video have helped me a lot with my project for university, dint have any previous programming knowledge before getting into university. i was just good at repairing PC but after watching yours tutorial i have come to understand most of it. i still have issue with the code but the logic is there, heck even my teacher asked wtf i was watching that i learning so fast xD.
thx once again for this tutorials.
I was having a little bit of a problem with the conversion, you can try this: string variable = Convert.ToString(myReader["Name"]);
thanks budd
ooh , you are such a life saver, I have been strugling with this for a period of time , now i managed through this video..thank you man
Thank you, I watch a similar video but did not work until you explained those three steps. Thanks
Thank you so much 😃😃😃
I would like to know if you can help me. I have loaded values to a autocomplete textboxfrom my datatable column , when i type a letter it is showing only from starting letter values. I want to load values only typed letter . for eg: I have three words like eat,meat,cook. if i type letter "e" in my textbox then i want show only eat,meat. Let me know if you have any solutions to fix this.
good job sir, thanks for your sharing. But am wondering to know if we can make DataGridView text cell filled automatically also??? i know i can use ComboBox. but i really need to do that with text cell in my project.
I know How to fill datagridview by just typing a similar letter in text box and get data from database to datagridview If Interested Then Contact me on MY email rupees will be charged for source code explanantion
I applied it on combobox and it given the following error
System.NotSupportedException: 'Only the value AutoCompleteMode.None can be used when DropDownStyle is ComboBoxStyle.DropDownList and AutoCompleteSource is not AutoCompleteSource.ListItems.'
This video is very helpful, thanks so much.
But... one question! If I want to autocomplete also by inputing characters contained in the middle of the strings inside the coll? For example, inputing "ohn" it should autocomplete showing "john", inputing "ill" it should autocomplete showing "jill" and "bill". I tried many way but I'm a newbie and I didn't succeed. :(
Hi
How could i do to restrict datagridview to get only from autofill and not to get any thing else from the users
your videos saved my life!! :)
Can you upload a video with the same Textbox search property,but with EF / LINQ? I understand the mechanism of it,but I don't know which command I should use instead of DataView for example....
can anyone tell me how to change the color when it gives you the references
how di you concat the first name and last name and display it on the textbox
muito bom os seus videos. obrigado.
I have a problem. Autocomplete only finds the last entry from database. For example if i had records in my database with names: John, Richard, Jack. Autocomplete would only find Jack, even though there are 2 words that start with J. Any help appreciated.
Hey, thanks for the great video.
How would I go about going through autocomplete when there are multiple people with the same name? if there are two "John Doe" only one of them shows up with this method.
Hello i want, How the assessment of student result if fill in the datagrid view and save to the data base. in Visual Studio 2015
Would be so nice if it was possible to get back to an ID value of the selected item.
I walked away for two minutes with this video playing. By the time I'd got back he'd barely progressed.
how to auto load gridview data in grid view table. i don't want any button for load fridview data in gridview table???
Thanx.. Can u please show how to set Auto Complete in Java..
Just some thoughts here. You make good videos, but you take too long to pass the point over. For the 20 minutes that this video's length is, you could have made is as short as under 5 minutes. As developers we all go back to videos we saw something work whenever we need clarification and we know upfront that we should pause whenever its too fast.
This video helped me a lot to be honest, but I had to forward more than half of it because you stuck someplace for too long.
Am not against you, I just think there is a lot of room for improvements in your video presentation.
Thanks all the same.
The longer the video's length and the more the viewer can be engaged,the more this video will appear in UA-cam's search result. Making videos long is a trick to easily get listed at the beginning of youtube search! :D
play it in 2x speed
muy buen aporte, gracias.
Thanks for the tutorial
Great Work
sorry where i can find c# code from this tutorial ???
Very Great Video!
sir, Please make a video to do the same thing using swing.
made my burden easy :)
Thankyou so muchh
Hey how to do that if the database i used is ms access tnx
thank !!! very helpful for me
How to do with web application, AutoCompleteMode is not available in webapplication, could you guide me how to do this is webapplication
Thank You
Just go to the point¡,
It's good with the common TextBox, i tried with TextBoxX in DotNetBar it didn't work. Any body know why ???
How many times can you repeat "follow the video"?
Thank u ....
I'm wait for how to do this in jtextfield java..
:)
you should also provide sourcecode..
Textbox autocomplete for search data type datetimer and int
private void textsearchtime_TextChanged(object sender, EventArgs e)
{
DataView dv = new DataView(dataset);
dv.RowFilter = string.Format(" CONVERT(date, System.String) LIKE '%{0}%'", textsearch.Text);
dataGridView2.DataSource = dv; }
i need auto complete in urdu search
Your code writing is so strange. It looks like you take very long ways to make it work. I am not that master of c# but even i can do it in shorter(i mean very short) and still safe ways.Another suggestion, the title says "Textbox autocomplete with Database Values". So show how its done in a new form of application. I don't really liked that idea that i should watch your earlier videos to understand new ones.Also, all that off-topic codes would make it harder to understand.
Thanks
Pasa el proyecto porque no se te entiende un carajo, no llevas una estructura como tal para enseñar a realizar el autocompletado
This guy doesn't sound very confident about what he is doing.
+Siddharth Shinde and he still have done it, maybe he is just a student, maybe he is doing it for cash, he is still doing it and he is on some level better than you and me.
+ameer adel for sure.. I appreciate it..👍 it was just an honest comment so that he can improve on his weakness..😌