Search results for query: *

  1. N

    memory storage

    Hi, I am doing a program that need to store data till i click reset. 1st I have a textbox1 which displays a 1 or 0 (receiving data from my serial port.) Okay. This is what I want to do. When textbox1 is 1, textbox2 will display a 1 when textbox1 changes back to 0 and then to 1 again, textbox2...
  2. N

    Transfer real time data from vb 2005 to excel

    oSheet.Range("A" & Me._rowCounter.ToString()).Value = TextBox1.Text oSheet.Range("B" & Me._rowCounter.ToString()).Value = TextBox2.Text Me._rowCounter += 1 After inserting this code, i receive a blue underline on _rowCounter saying it's not a member in my file. How do I use or declare this...
  3. N

    Transfer real time data from vb 2005 to excel

    hi, I am working on a project that is able to display real time data from sensors from micro-controller. I am able to do so by sending the data through the serial port and then use vb 2005 to show the data. However, I want to save those data from vb 2005 to excel. How am I able to do it ? I am...
  4. N

    Serial port help

    Yes. Thank you very much I am able to get the readings but it changes very fast. Can I add a small delay to it ?
  5. N

    Serial port help

    Because I am receiving data from my microcontroller. What should my "yourText" be in the Me.txt1.Invoke(New Action(Of String)(AddressOf setTxt1Text), New Object() {"yourText"}) ?? reading1 ???
  6. N

    Serial port help

    txt1 is textbox1. I've name it txt1
  7. N

    Serial port help

    Dear all, I have done a program using vb2005 to display reading from my microcontroller bs2 board but have encountered some problems. My code are as follows. Dim Stop_Rx As Boolean Private Sub btnRead_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnRead.Click...
Back
Top