Consulting

Results 1 to 3 of 3

Thread: How to Send At Commands via Open Access binary Read Write

  1. #1
    VBAX Newbie
    Joined
    Dec 2021
    Posts
    2
    Location

    How to Send At Commands via Open Access binary Read Write

    Hi

    is it possible to open port com1 and then send At Commands like AT+CPBR=1,99 ?

    Could Someone Share His/Her Code If Worked Fine to input Data?

    Thanks

  2. #2
    VBAX Newbie
    Joined
    Dec 2021
    Posts
    2
    Location

    Thumbs up Seen To Be Worked

    AT+CPBR=1,99...jpg
    Quote Originally Posted by Gerailly View Post
    Hi

    is it possible to open port com1 and then send At Commands like AT+CPBR=1,99 ?

    Could Someone Share His/Her Code If Worked Fine to input Data?

    Thanks

    Open Binary Access Read Write

    Attached The Photo , Succeed

    st = "AT+CPBR=1,99" + Chr(13)
    Put #Comm, , st
    Sleep 100 'Kernel32.dll Use Sleep Function


    'Read Data From Phone Book 'All
    c$ = String(2000, " ")
    Get #Comm, , c$
    Me.Text1 = Left(c$, Len(c$))
    DoEvents


    Hope To Be Effective For All Need Reading Data From Port
    Best Regards
    Grailly,Tehran 2022/01/17

  3. #3
    We can use as above to run the Apps

Tags for this Thread

Posting Permissions

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