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

    i made a program that sending SMS and....

    Hi, i made a program that sending SMS and i want to do such thing:
    i have the file that contain this text:

    055555555
    055565464
    055513278
    054564654
    054546578

    so i want my program to send SMS to these numbers....so how can i read line by line from TEXT or FILE????


  2. #2
    Join Date
    Aug 2000
    Location
    England
    Posts
    185

    Re: i made a program that sending SMS and....

    hello,



    dim myVar as string

    open "myFile.txt" for input as #1
    do while not eof(1)
    lineInput #1, myVar
    loop





    Hope this helps

    Andrew



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