Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #2K
~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

10 Posted Topics

Member Avatar for vb_newbie

Use this tutorial for adding listbox items. http://www.fryan0911.com/2009/06/vbnet-listview-tutorial-add-edit-and.html

Member Avatar for vb_newbie
0
953
Member Avatar for Djmann1013

Well your code is a bit off, `Line = Line & objReader.ReadLine() & vbNewLine` Remove the line after = and the vbNewLine. The combobox will then have an entry for every line in the .txt file. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim FILE_NAME As String …

Member Avatar for Djmann1013
0
172
Member Avatar for mariozeph

Try This: Dim open = OpenFileDialog1.FileName '// or you can specify the file path If IO.File.Exists(open) Then '// check if file exists Dim openFileLines() As String = IO.File.ReadAllLines(open) For Each line As String In openFileLines '// loop thru array list. Dim lineArray() As String = line.Split(":") '// separate by ":" …

Member Avatar for mariozeph
1
464
Member Avatar for Taras20

The problem is you are searching the array for the number you just generated: If arrNumber(i) = intNumber Then You made arrNumber(x) = intNumber so of course it will be there. Try This: Dim intNumber As Integer Dim randGenerator As New Random Dim arrNumber(100) As String Dim x As Integer …

Member Avatar for Reverend Jim
0
281
Member Avatar for Taras20
Member Avatar for Taras20
0
2K
Member Avatar for deepak arya

Do you want to search a file or database for the word in the combobox and then display the results or lines with that word in a multiline textbox? You should be more clear with your question.

Member Avatar for HctiMitcH
0
93
Member Avatar for Member #956757

Using a lower framework version will get you more compatability. If you listin to deceptikon and send the installer it will automatically update the framework to the program specifications. On my projects I dislike the installer and just use the debug.exe, so I can use them on public school computers. …

Member Avatar for HctiMitcH
0
293
Member Avatar for HctiMitcH

I am trying to create a program that searches a screenshot 1600x900 px for a smaller image 200x50. For example on this website I would like to have the program take a screenshot and then search the screenshot for the DaniWeb logo. I would like the coordinates of the center …

Member Avatar for HctiMitcH
0
234
Member Avatar for HctiMitcH

I am working an a simple project that required a vb.net login form. I added a login form that was preinstalled in visual studio, ex. Menu>Add existing item>login form. I am using visual studio desktop 2012 and I made the project for .NET 4.5. I then realized that my target …

Member Avatar for HctiMitcH
0
450
Member Avatar for sonyj

The End.