Results 1 to 2 of 2

Thread: automatically reading SMS

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2009
    Posts
    3

    Question automatically reading SMS

    I made interface between pc & mobile NOKIA 6110 and i used it to send and receive SMS and i can make any function of the mobile on my pc all these by activex (MFBUS15.ocx)(attached).
    Now i ask how can i make my program to read the SMS automatically without order of me when it come
    i used this code which found in the referance

    Private Sub Command1_Click()
    sms.sms.Refresh
    Text1.Text = sms.sms.Inbox.Item("1").Text
    End Sub


    this is to read the first sms
    also i attached the referance of the activex
    i need help
    Attached Files Attached Files
    Last edited by aboalghadb; Mar 18th, 2009 at 04:33 PM.

  2. #2
    Frenzied Member Lightning's Avatar
    Join Date
    Oct 2002
    Location
    Eygelshoven
    Posts
    1,611

    Re: automatically reading SMS

    I haven't tested this, but it might (should) work
    Code:
    Text1.Text = "";
    sms.sms.Refresh;
    foreach(var message in sms.sms.Inbox.Items)
    {Text1.Text += message.Text
    }
    VB6 & C# (WCF LINQ) mostly


    If you need help with a WPF/WCF question post in the NEW WPF & WCF forum and we will try help the best we can

    My site

    My blog, couding troubles and solutions

    Free online tools

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