No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
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 …
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
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 …
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 …
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 …
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 …
do you have any code? if accessing objects on formA from formB: formA.objectName.property example: formA.comboBox1.text = "test"
The End.