Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~10K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

7 Posted Topics

Member Avatar for robert.knighton.79

I'm simply trying to keep a log list for my application events. I'm trying to send text to the log from a seperate thread with the following code: Imports System.Threading Public Class Main Private worker1 As Thread Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load worker1 = New …

Member Avatar for AleMonteiro
0
503
Member Avatar for pdmaduranga

open source C#/VB.net Visual Studio alternative http://www.icsharpcode.net/OpenSource/SD/ **if your reason for asking this is the cost** of Visual Studio, and you have a .edu email address then check out https://www.dreamspark.com/ Visual Studio development package (among other things) can be obtained for free if you have .edu email

Member Avatar for G_Waddell
0
248
Member Avatar for robert.knighton.79

I'm trying to take input keypress event and move the text it would have typed into a textbox to a different textbox instead. textBox1 has a length limit of 1 so I dont actually have to prevent text going into the box because the textbox is already full I just …

Member Avatar for robert.knighton.79
0
3K
Member Avatar for razree

do users **ever** need to change items in the listview? If they never need to change anything in the listview then you could use something like this Private Sub ListView1_GotFocus(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListView1.GotFocus some_other_object.focus() End Sub this would prevent users from ever changing anything …

Member Avatar for razree
0
1K
Member Avatar for robert.knighton.79

I have a form with 30 textboxes which I want to function as if they are only 1 textbox. # **Why Do this instead of substring the string from a single textbox?** # I have them separated for user friendly appearance purposes. Each box is paired with a checkbox so …

Member Avatar for robert.knighton.79
0
221
Member Avatar for robert.knighton.79

I tried using a solution to a very similar question here but it doesnt work for large files like the one I'm using. http://www.daniweb.com/software-development/vbnet/threads/320160/visual-basic-reading-text-file-into-array The code from that question: Dim OpenAnswerFile As New OpenFileDialog Dim strFileName() As String '// String Array. Dim tempStr As String = "" '// temp String …

Member Avatar for Reverend Jim
0
4K
Member Avatar for vijaycare

do you have any code? if accessing objects on formA from formB: formA.objectName.property example: formA.comboBox1.text = "test"

Member Avatar for robert.knighton.79
0
204

The End.