Click here to Skip to main content
15,884,099 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: exe problem Pin
jzonthemtn21-Jun-08 2:02
jzonthemtn21-Jun-08 2:02 
GeneralRe: exe problem Pin
kadkir23-Jun-08 19:27
kadkir23-Jun-08 19:27 
QuestionHow can I display these: ♥ ♦ ♣ ♠ , in a richtextbox? Pin
alexvw20-Jun-08 13:30
alexvw20-Jun-08 13:30 
AnswerRe: How can I display these: ♥ ♦ ♣ ♠ , in a richtextbox? Pin
Paul Conrad21-Jun-08 3:56
professionalPaul Conrad21-Jun-08 3:56 
AnswerRe: How can I display these: ♥ ♦ ♣ ♠ , in a richtextbox? Pin
alexvw21-Jun-08 13:24
alexvw21-Jun-08 13:24 
AnswerRe: How can I display these: ♥ ♦ ♣ ♠ , in a richtextbox? Pin
Thomas Stockwell23-Jun-08 15:18
professionalThomas Stockwell23-Jun-08 15:18 
QuestionVB.NET SerialPort.... Pin
Mr. J20-Jun-08 10:54
Mr. J20-Jun-08 10:54 
AnswerRe: VB.NET SerialPort.... Pin
rudemusik20-Jun-08 11:32
rudemusik20-Jun-08 11:32 
This is what I did to recieve data to my app.

Private Sub SerialPort1_DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles SerialPort1.DataReceived
        '' Threading.Thread.Sleep(500)
        Try

            txtResults.Invoke(New myDelegate(AddressOf updateTextBox), New Object() {})

        Catch ex As Exception
            MsgBox(ex.ToString)
        End Try

    End Sub

 Public Delegate Sub myDelegate()

Public Sub updateTextBox()
        With txtResults
            .Font = New Font("Arial", 10.0, FontStyle.Bold)


           SerialPort1.ReadExisting())
            .AppendText(SerialPort1.ReadExisting())

            .ScrollToCaret()


        End With
        'THIS WILL ONLY WORK WHEN CONNECTED  SerialPort1.Close()
    End Sub


Hope this helps!

rudy Smile | :)
GeneralRe: VB.NET SerialPort.... Pin
Mr. J20-Jun-08 11:58
Mr. J20-Jun-08 11:58 
GeneralRe: VB.NET SerialPort.... Pin
rudemusik20-Jun-08 12:51
rudemusik20-Jun-08 12:51 
GeneralRe: VB.NET SerialPort.... Pin
Mr. J21-Jun-08 1:31
Mr. J21-Jun-08 1:31 
GeneralRe: VB.NET SerialPort.... Pin
Mr. J21-Jun-08 2:13
Mr. J21-Jun-08 2:13 
QuestionStrange Error While calling SP for storing Datetime. Pin
hariram2820-Jun-08 8:44
hariram2820-Jun-08 8:44 
AnswerRe: Strange Error While calling SP for storing Datetime. DUPLICATE POST - IGNORE Pin
Ashfield20-Jun-08 9:00
Ashfield20-Jun-08 9:00 
QuestionCalling an IP address? Pin
rudemusik20-Jun-08 8:01
rudemusik20-Jun-08 8:01 
AnswerRe: Calling an IP address? Pin
Eduard Keilholz21-Jun-08 7:44
Eduard Keilholz21-Jun-08 7:44 
GeneralRe: Calling an IP address? Pin
rudemusik22-Jun-08 11:25
rudemusik22-Jun-08 11:25 
QuestionDynamic Controls in asp.net Pin
Balram Watwani20-Jun-08 7:42
Balram Watwani20-Jun-08 7:42 
AnswerRe: Dynamic Controls in asp.net Pin
Christian Graus20-Jun-08 21:20
protectorChristian Graus20-Jun-08 21:20 
Questionhow can i use my datagridview's combobox Pin
Nika Asgari20-Jun-08 5:56
Nika Asgari20-Jun-08 5:56 
AnswerRe: how can i use my datagridview's combobox Pin
Jay Royall20-Jun-08 6:05
Jay Royall20-Jun-08 6:05 
QuestionDisable the controls in a form... Pin
Sebastian T Xavier20-Jun-08 4:22
Sebastian T Xavier20-Jun-08 4:22 
AnswerRe: Disable the controls in a form... Pin
Eduard Keilholz20-Jun-08 4:54
Eduard Keilholz20-Jun-08 4:54 
GeneralRe: Disable the controls in a form... Pin
Sebastian T Xavier20-Jun-08 5:32
Sebastian T Xavier20-Jun-08 5:32 
GeneralRe: Disable the controls in a form... Pin
MarkB77720-Jun-08 19:42
MarkB77720-Jun-08 19:42 

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.