Click here to Skip to main content
15,888,351 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Resize VB form Pin
.NetRams19-Nov-04 1:32
.NetRams19-Nov-04 1:32 
GeneralGot the solution Pin
.NetRams19-Nov-04 1:50
.NetRams19-Nov-04 1:50 
GeneralRe: Resize VB form Pin
Gavin Jeffrey19-Nov-04 1:54
Gavin Jeffrey19-Nov-04 1:54 
GeneralExport SQL Data Pin
nitin_ion18-Nov-04 22:23
nitin_ion18-Nov-04 22:23 
GeneralRe: Export SQL Data Pin
Dave Kreskowiak19-Nov-04 6:08
mveDave Kreskowiak19-Nov-04 6:08 
GeneralMSDE Help Pin
nitin_ion18-Nov-04 19:33
nitin_ion18-Nov-04 19:33 
Generalplaying shoutcast streams with vb.net Pin
Anonymous18-Nov-04 16:40
Anonymous18-Nov-04 16:40 
GeneralNeed assistance with ComboBox code! Pin
Lee Hatcher18-Nov-04 16:00
Lee Hatcher18-Nov-04 16:00 
Hi to all! I am a novice trying to learn VB.net 2003. I am currently taking a course in the subject at a local university. What I am trying to do is create a combobox similar to the ones in online forms where the states are listed and say you want Kentucky, all you do is hit the K key twice and Kentucky apears. This has stumped our professor. He is use to VB 6.0 and VB.net is different in this area I am told. I am sure that everyone here has alot mof experience with VB code and I appologise for this thread but I want to learn this. Can some one please help. here is my code

Private Sub cboColors_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cboColors.TextChanged
'This will allow you to chose the color for the background or the text color.
Dim IntIndex As Integer = 0
Dim blnFound As Boolean = False
Dim strListCompare As String
Dim strTextCompare As String

Do While Not blnFound And IntIndex < cboColors.Items.Count
strListCompare = cboColors.Items(IntIndex)
strListCompare = strListCompare.ToUpper
strTextCompare = cboColors.Text.ToUpper
If strListCompare.StartsWith(strTextCompare) Then
cboColors.SelectedIndex = IntIndex
blnFound = True
End If
IntIndex += 1
Loop
End Sub

THank you all for any help with this.
Big Grin | :-D



Lee A. Hatcher
GeneralRe: Need assistance with ComboBox code! Pin
Anonymous18-Nov-04 16:55
Anonymous18-Nov-04 16:55 
GeneralRe: Need assistance with ComboBox code! Pin
Lee Hatcher18-Nov-04 17:22
Lee Hatcher18-Nov-04 17:22 
GeneralSplitting Audio Channels in VB .NET Pin
Diamondcut18-Nov-04 12:38
Diamondcut18-Nov-04 12:38 
GeneralVB.NET and WORD Pin
Chaos Machine18-Nov-04 12:15
Chaos Machine18-Nov-04 12:15 
GeneralRe: VB.NET and WORD Pin
Mekong River18-Nov-04 20:28
Mekong River18-Nov-04 20:28 
GeneralControl form from C# class Pin
Anonymous18-Nov-04 10:46
Anonymous18-Nov-04 10:46 
GeneralDate in US vs. NL-format Pin
Fabberianus18-Nov-04 10:16
Fabberianus18-Nov-04 10:16 
GeneralRe: Date in US vs. NL-format Pin
Mekong River18-Nov-04 20:33
Mekong River18-Nov-04 20:33 
GeneralRe: Date in US vs. NL-format Pin
Fabberianus18-Nov-04 20:46
Fabberianus18-Nov-04 20:46 
GeneralError message... 2K/XP Pin
LaFéeClochette18-Nov-04 9:59
LaFéeClochette18-Nov-04 9:59 
GeneralRe: Error message... 2K/XP Pin
Mekong River18-Nov-04 20:37
Mekong River18-Nov-04 20:37 
GeneralRe: Error message... 2K/XP Pin
LaFéeClochette19-Nov-04 2:25
LaFéeClochette19-Nov-04 2:25 
GeneralRe: Error message... 2K/XP Pin
LaFéeClochette23-Nov-04 9:16
LaFéeClochette23-Nov-04 9:16 
GeneralRe: Error message... 2K/XP Pin
LaFéeClochette23-Nov-04 9:17
LaFéeClochette23-Nov-04 9:17 
GeneralActive Directory User Object Problem Pin
x900018-Nov-04 5:36
x900018-Nov-04 5:36 
QuestionHow to Make Setup with Product Key Pin
Murtuza Husain Miyan Patel18-Nov-04 4:31
professionalMurtuza Husain Miyan Patel18-Nov-04 4:31 
AnswerRe: How to Make Setup with Product Key Pin
Mekong River18-Nov-04 20:43
Mekong River18-Nov-04 20:43 

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.