Click here to Skip to main content
16,007,126 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to make a vb.net application multi- lingual? Pin
lmoelleb13-Sep-06 3:13
lmoelleb13-Sep-06 3:13 
QuestionI need to make automatic language translations Pin
Magno R. Vasquez12-Sep-06 5:33
Magno R. Vasquez12-Sep-06 5:33 
AnswerRe: I need to make automatic language translations Pin
lmoelleb13-Sep-06 3:10
lmoelleb13-Sep-06 3:10 
QuestionTesting SQL Connection String - Runtime Pin
sa.Eish12-Sep-06 3:49
sa.Eish12-Sep-06 3:49 
AnswerRe: Testing SQL Connection String - Runtime Pin
Kschuler12-Sep-06 9:37
Kschuler12-Sep-06 9:37 
GeneralRe: Testing SQL Connection String - Runtime Pin
sa.Eish12-Sep-06 19:16
sa.Eish12-Sep-06 19:16 
QuestionHelp Search Please Pin
FeRtoll12-Sep-06 3:38
FeRtoll12-Sep-06 3:38 
AnswerRe: Help Search Please Pin
sa.Eish12-Sep-06 5:55
sa.Eish12-Sep-06 5:55 
I hope this is usefull.Big Grin | :-D

Private Function Search(ByVal _Listbox As ListBox, ByVal SearchText As String)
    Dim i As Integer</code>
    ' Loop thru all the items
    <code>For i = 0 To _Listbox.Items.Count - 1</code>
        ' Use the basic string contains function and compare the two strings
        <code>If _Listbox.Items.Item(i).ToString().Contains(SearchText) Then</code>
            'in the if statement u can have multible out puts
            ' _ArrayList.Add(_Listbox.Items.Item(i).ToString())
            'TIP: Remenber to check for duplicates at this stage.
            <code>Return _Listbox.Items.Item(i).ToString()
        End If
    Next</code>
    ' Return _ArrayList
   <code> Return Nothing
End Function


Very simple, but it Works.... sometimes;P

Sleepy | :zzz:
GeneralRe: Help Search Please Pin
FeRtoll14-Sep-06 3:22
FeRtoll14-Sep-06 3:22 
QuestionVB.Net Pin
skandaapriya12-Sep-06 1:34
skandaapriya12-Sep-06 1:34 
AnswerRe: VB.Net Pin
Christian Graus12-Sep-06 1:44
protectorChristian Graus12-Sep-06 1:44 
AnswerRe: VB.Net Pin
Duncan Edwards Jones14-Sep-06 2:56
professionalDuncan Edwards Jones14-Sep-06 2:56 
QuestionMerging Cells in Excel Using VB.NET Pin
anujose12-Sep-06 1:06
anujose12-Sep-06 1:06 
AnswerRe: Merging Cells in Excel Using VB.NET Pin
Stephen McGuire12-Sep-06 1:44
Stephen McGuire12-Sep-06 1:44 
GeneralRe: Merging Cells in Excel Using VB.NET Pin
anujose12-Sep-06 19:11
anujose12-Sep-06 19:11 
Question[Message Deleted] Pin
PREMSONBABY11-Sep-06 22:50
PREMSONBABY11-Sep-06 22:50 
AnswerRe: Hi, All, this is a string related question. Pin
Christian Graus12-Sep-06 0:24
protectorChristian Graus12-Sep-06 0:24 
AnswerRe: Hi, All, this is a string related question. Pin
Tamimi - Code12-Sep-06 0:51
Tamimi - Code12-Sep-06 0:51 
GeneralRe: Hi, All, this is a string related question. Pin
Christian Graus12-Sep-06 1:45
protectorChristian Graus12-Sep-06 1:45 
GeneralRe: Hi, All, this is a string related question. Pin
Tamimi - Code12-Sep-06 2:23
Tamimi - Code12-Sep-06 2:23 
GeneralRe: Hi, All, this is a string related question. Pin
Christian Graus12-Sep-06 10:54
protectorChristian Graus12-Sep-06 10:54 
QuestionVBA Add Shape Event Pin
Diver Dan11-Sep-06 22:47
Diver Dan11-Sep-06 22:47 
QuestionHow to create dll in vb.net Pin
vidyashankar11-Sep-06 20:59
vidyashankar11-Sep-06 20:59 
GeneralRe: How to create dll in vb.net Pin
Christian Graus11-Sep-06 22:01
protectorChristian Graus11-Sep-06 22:01 
AnswerRe: How to create dll in vb.net Pin
Guffa11-Sep-06 22:06
Guffa11-Sep-06 22:06 

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.