CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Aug 2010
    Posts
    3

    Save data to memory card in HTC viva

    Hi,

    I'm trying to do an application for a HTC viva PDA, and i'm a begginer in visual basic programming language so i don't understand much of it...
    The application is intended to receive data from a data aquisition equipment that connects with the PDA trough bluetooth, i managed to receive data in the PDA, but i don't know how to save all the data that comes from the data aquisition device in a Microsoft excel format or in any other format i can work with...
    Can anyone help me with the code that is needed so that the software saves all incoming data to a excel file in the memory card of the PDA?

    Thank you all

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Save data to memory card in HTC viva

    Doesn't sound like a VB6 problem, so this is the wrong forum.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Aug 2010
    Posts
    3

    Re: Save data to memory card in HTC viva

    Isn't it?? humm since i was writting the application in visual studio i thought it was the right forum... can you tell me where shoud i put my problem?
    Thanks

  4. #4
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Save data to memory card in HTC viva

    Well, I don't know what version of VS you are using, or what language you used. Post some code...
    Code:
    ' Use CODE TAGS, also
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  5. #5
    Join Date
    Aug 2010
    Posts
    3

    Re: Save data to memory card in HTC viva

    I use Visual studio 2005...
    here goes some code:

    Public Class Form1
    Private zero As Double = 0
    Private temp As Double = 0
    Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
    If Emant3001.Open(checkBox1.Checked, textBox1.Text) Then
    label1.Text = Emant3001.HwId
    Emant3001.ConfigAnalog(0.01, Emant.Emant300.POLARITY.Bipolar, 10)
    Timer1.Enabled = True
    End If
    End Sub

    Hope this helps

  6. #6
    Join Date
    Dec 2001
    Posts
    6,332

    Re: Save data to memory card in HTC viva

    [ Moved Thread ]
    Please remember to rate the posts and threads that you find useful.
    How can something be both new and improved at the same time?

  7. #7
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Save data to memory card in HTC viva

    What device are you reading FROM? They should have a manual or something, on their web site.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured