Click here to Skip to main content
15,891,316 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionConnection String Pin
Tauseef A8-Dec-06 22:53
Tauseef A8-Dec-06 22:53 
AnswerRe: Connection String Pin
Guffa9-Dec-06 8:02
Guffa9-Dec-06 8:02 
AnswerRe: Connection String Pin
Paul Conrad9-Dec-06 9:53
professionalPaul Conrad9-Dec-06 9:53 
GeneralRe: Connection String Pin
Guffa9-Dec-06 19:05
Guffa9-Dec-06 19:05 
GeneralRe: Connection String Pin
S Douglas9-Dec-06 19:58
professionalS Douglas9-Dec-06 19:58 
Questionimage file Pin
Tauseef A8-Dec-06 18:42
Tauseef A8-Dec-06 18:42 
AnswerRe: image file Pin
Guffa9-Dec-06 8:04
Guffa9-Dec-06 8:04 
QuestionAutocomplete VB.NET Pin
Xequence8-Dec-06 10:23
Xequence8-Dec-06 10:23 
I am running a process card that has multi-users. Functionality would be to have an autocomplete box in the "dropdownlist" utility. Despite my attempts I am unable to have a keychange event used in the box.

This is the code I use for a combo box to autocomplete, but as my problem is in a dropdownlist, it does not allow me to use a keypress event.

Private Sub ComboBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles ComboBox1.KeyPress


If Char.IsControl(e.KeyChar) Then Return

With Me.ComboBox1

Dim ToFind As String = .Text.Substring(0, .SelectionStart) & e.KeyChar
Dim Index As Integer = .FindStringExact(ToFind)

If Index = -1 Then Index = .FindString(ToFind)
If Index = -1 Then Return

.SelectedIndex = Index
.SelectionStart = ToFind.Length
.SelectionLength = .Text.Length - .SelectionStart

e.Handled = True

End With
End Sub

Please help with any method used to create a keypress event creator.

Regards,
Nicholas
AnswerRe: Autocomplete VB.NET Pin
Paul Conrad25-Dec-06 18:44
professionalPaul Conrad25-Dec-06 18:44 
GeneralInstalling services programmically Pin
Alsvha7-Dec-06 20:27
Alsvha7-Dec-06 20:27 
Questionxml and database Pin
samita_friendly7-Dec-06 13:07
samita_friendly7-Dec-06 13:07 
QuestionProblem referencing embedded resource Pin
dBrong7-Dec-06 8:06
dBrong7-Dec-06 8:06 
AnswerRe: Problem referencing embedded resource [modified] Pin
Luc Pattyn7-Dec-06 10:56
sitebuilderLuc Pattyn7-Dec-06 10:56 
QuestionSystem.Xml.Serialization.XmlSerializer [modified] Pin
Hendrik Debedts6-Dec-06 23:46
Hendrik Debedts6-Dec-06 23:46 
QuestionSaving configuration problem Pin
Julia16-Dec-06 21:23
Julia16-Dec-06 21:23 
QuestionWebservice (encrypting soap username and password) Pin
poongu6-Dec-06 18:59
poongu6-Dec-06 18:59 
AnswerRe: Webservice (encrypting soap username and password) Pin
Vasudevan Deepak Kumar12-Dec-06 3:24
Vasudevan Deepak Kumar12-Dec-06 3:24 
Questionwant to retrieve 2 messages using 2 receive shapes in a orchrestra-BizTalk Pin
mahavir patil6-Dec-06 15:55
mahavir patil6-Dec-06 15:55 
Question.NET app and the App Paths registry key Pin
Scott Dorman6-Dec-06 4:14
professionalScott Dorman6-Dec-06 4:14 
AnswerRe: .NET app and the App Paths registry key Pin
ednrgc11-Dec-06 3:09
ednrgc11-Dec-06 3:09 
GeneralRe: .NET app and the App Paths registry key Pin
Scott Dorman13-Dec-06 3:56
professionalScott Dorman13-Dec-06 3:56 
QuestionVector graphic Pin
asestar6-Dec-06 3:41
asestar6-Dec-06 3:41 
AnswerRe: Vector graphic Pin
Paul Conrad26-Dec-06 17:07
professionalPaul Conrad26-Dec-06 17:07 
GeneralRe: Vector graphic Pin
asestar5-Jan-07 5:44
asestar5-Jan-07 5:44 
Questioncrystalr reports Pin
shaz jazz6-Dec-06 1:17
shaz jazz6-Dec-06 1:17 

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.