Jump to content

VB to AutoIT again...


 Share

Recommended Posts

ConsoleWrite()

StringMid()

Asc()

Thanks alot. I had to use this until you made your post:

#include <File.au3>
#include <Array.au3>

Dim $L[5000]
Dim $MM[5000]

$file=FileOpen ("c:\erez.txt",1)
$m=FileReadLine ("c:\erez.txt",1)
$J=$m
MsgBox (0,"",StringLen ($m))
for $i=1 to StringLen ($m)
    $L[$i]=StringLeft ($m,1)
    $m=StringTrimLeft ($m,1)
;   MsgBox (0,"",$m)
Next
_ArrayDisplay ($L)
for $i=1 to StringLen ($J)
    $MM[$i]=Asc ($L[$i])
Next
_ArrayDisplay ($MM)
Edited by erezlevi
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...