Click here to Skip to main content
15,914,392 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Storing drawn graphics for repaint Pin
jensenx4-Sep-07 7:16
jensenx4-Sep-07 7:16 
QuestionRegenerating Datasets and table adapters Pin
Mr Oizo3-Sep-07 10:55
Mr Oizo3-Sep-07 10:55 
AnswerRe: Regenerating Datasets and table adapters Pin
Christian Graus3-Sep-07 12:37
protectorChristian Graus3-Sep-07 12:37 
GeneralRe: Regenerating Datasets and table adapters Pin
Mr Oizo3-Sep-07 23:16
Mr Oizo3-Sep-07 23:16 
GeneralRe: Regenerating Datasets and table adapters Pin
Dave Kreskowiak4-Sep-07 4:20
mveDave Kreskowiak4-Sep-07 4:20 
QuestionAccessing Exchange server public folders Pin
manisghouri3-Sep-07 5:49
manisghouri3-Sep-07 5:49 
Questioncombobox: append Pin
Tom Deketelaere3-Sep-07 4:21
professionalTom Deketelaere3-Sep-07 4:21 
AnswerRe: combobox: append Pin
Johan Hakkesteegt4-Sep-07 2:11
Johan Hakkesteegt4-Sep-07 2:11 
You could consider mimicking the combobox's behavior, in the leave event. If you do it with a little function, you would even be able to reuse it with other comboboxes.

Combob1.Text = YourLittleFunction(Combob1, Combob1.Text)
or
Combob1.SelectedItem = YourLittleFunction(Combob1, Combob1.Text)
and
Public Function YourLittleFunction(Byval combob as ComboBox, Byval TypedSoFar as String) as String<br />
'loop through the items in combob, and compare them with TypedSoFar.<br />
'Which ever comes closest is the winner.<br />
Return the winner<br />
End Function


Or something along those lines...

Good luck,

Johan

My advice is free, and you may get what you paid for.

GeneralRe: combobox: append Pin
Tom Deketelaere4-Sep-07 3:31
professionalTom Deketelaere4-Sep-07 3:31 
Questionlines in multiline rich text box Pin
BooleanTrue3-Sep-07 3:58
professionalBooleanTrue3-Sep-07 3:58 
AnswerRe: lines in multiline rich text box Pin
Luc Pattyn3-Sep-07 5:47
sitebuilderLuc Pattyn3-Sep-07 5:47 
GeneralRe: lines in multiline rich text box Pin
Paul Conrad3-Sep-07 7:12
professionalPaul Conrad3-Sep-07 7:12 
GeneralRe: lines in multiline rich text box Pin
Luc Pattyn3-Sep-07 7:30
sitebuilderLuc Pattyn3-Sep-07 7:30 
GeneralRe: lines in multiline rich text box Pin
Paul Conrad3-Sep-07 7:35
professionalPaul Conrad3-Sep-07 7:35 
QuestionMP3 Playlist Pin
Indra PR3-Sep-07 3:37
Indra PR3-Sep-07 3:37 
AnswerRe: MP3 Playlist Pin
plural3-Sep-07 4:41
plural3-Sep-07 4:41 
GeneralRe: MP3 Playlist Pin
plural3-Sep-07 4:43
plural3-Sep-07 4:43 
QuestionAccessing the windows forms generated code Pin
Mr Oizo3-Sep-07 3:27
Mr Oizo3-Sep-07 3:27 
AnswerRe: Accessing the windows forms generated code Pin
originSH3-Sep-07 3:39
originSH3-Sep-07 3:39 
GeneralRe: Accessing the windows forms generated code Pin
Mr Oizo3-Sep-07 7:38
Mr Oizo3-Sep-07 7:38 
GeneralRe: Accessing the windows forms generated code Pin
Paul Conrad3-Sep-07 7:57
professionalPaul Conrad3-Sep-07 7:57 
GeneralRe: Accessing the windows forms generated code Pin
Mr Oizo3-Sep-07 7:55
Mr Oizo3-Sep-07 7:55 
GeneralRe: Accessing the windows forms generated code Pin
originSH3-Sep-07 22:35
originSH3-Sep-07 22:35 
QuestionPlay AVI file Pin
Rupesh Kumar Swami3-Sep-07 2:12
Rupesh Kumar Swami3-Sep-07 2:12 
AnswerRe: Play AVI file Pin
Christian Graus3-Sep-07 2:49
protectorChristian Graus3-Sep-07 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.