 |
|
|
 |
|
|
 |
|
 |
I appreciate the work you did and the comments you provided in the code. I don't understand why people thought this wasn't a good article. It was just what I needed and I could just throw it in my code and go - doesn't get much better than that. Too many people try to show how smart they are with their articles and it leaves me lost in the verbage. Yours was too the point and very helpful. Keep up the good work!
|
|
|
|
 |
|
 |
I agree with chazdog.
I'm really greatfull that i could find this article. I deeply aprreciate your step-by-step approach to explained who to put the codes to work. I'm very much help with it. Thank you so much. God bless you ^^
|
|
|
|
 |
|
|
 |
|
 |
This works, but it does not work so well when typing very fast. I have a combo of say 1000 city / states. When I start typing slow, it works perfectly. When I type fast, it works the first letter or two, but after that it immediately selects something that was not what I was typing because it seems to skip keypresses or something. Any ideas on how to make it work when typing really fast?
|
|
|
|
 |
|
 |
Saludos beckerben, encontre una solucion para poder escribir rapidamente, la propone Joseph Hicks en otro articulo sobre este tema.
La idea se basa en comparar las teclas pulsadas con las enviadas a la funcion autocomplete, el codigo para llamar la funcion queda asi.
'DECLARACION
Private _LastKeyDown As System.Windows.Forms.KeyEventArgs
'CODIGO DEL COMBO EVENTO KEYUP
MyBase.OnKeyUp(e)
If (_LastKeyDown Is Nothing) = True OrElse (e.KeyCode = _LastKeyDown.KeyCode) = False Then Exit Sub
AutoComplete(Cbo_Vendedor, e)
End Sub
'CODIGO DEL COMBO EVENTO KEYDOWN
MyBase.OnKeyDown(e)
_LastKeyDown = e
SALUDOS, VILLAHERMOSA, TAB. MEXICO::->
|
|
|
|
 |
|
 |
I think it makes sense, thanks Yondertab. I will have to give this a shot.
|
|
|
|
 |
|
 |
With YonderTab's fix it works when typing fast.
|
|
|
|
 |
|
 |
Please explain what drawbacks did you find in my article. Also send comments as per your opinion, so that i can make changes and make it the very best and also get a high ratings from you specially. waiting for your reply.
kunal
|
|
|
|
 |
|
 |
Well, I will chime in because I thought your article would be in interesting read.
First, its not really an article. It's 3 sentences and then a source code listing. A little more background and description would be good. Also maybe saying how your implementation is different than the normal autocomplete for a dropdownlist combobox.
Second, you don't include a demo or source download at all. People want to see the code in a working program and not just leaving them to figure out how to put it into their software. Plus with a working demo that they can download, if they have aproblem compiling it, at least they can see if what you had working and submitted works for them too.
You might also want to make a small access database file to use in the demo instead of assuming that everyone has SQL Server installed. This way insteadof having it as just comments in the code, you can demo each part separately too.
Overall, I think that the topic could have alot of potential, but what Uwe was trying to say is that the editors should have been telling you these things before approving the article and moving it from the unedited section to the main sections. Keep it up tho and your articles will just get better.
Steve Maier, MCSD MCAD
|
|
|
|
 |
|
 |
Respected Steve
Thanks a lot for your kind attention to my mail and have my regards for the guidelines that you have send me to improve my article. Now a days I am going through a project. After finishing it I will immediately upgrade this topic (of course not article any more). Actually before publishing the code into the site all the times I faced a lot of questiones about proffessional coding or programming. But after your reply I have got some idea. Please keep an eye on the topic, and when the next version comes please comment on it. Also if you can please keep telling me what features should i include on the autocomplete sub.
You were taliking about the normal autocomplete for a dropdownlist combobox, i don't understand you. Kindly explain it.
Last of all thank you very much for your reply. I would love to have mails from you. Please keep mailing me.
kunal
|
|
|
|
 |
|
|
 |
|
 |
I enjoy this article a lot and the discussion followed as well.
|
|
|
|
 |