Hi eveyone.
I would like to read a binary file: Windows Address Book.
However, since I JUST want to import email addresses from WAB to my application I think I can open and read it myself.
If you see my snapshot, email addresses are human readable and just with spaces, not encoded!
So I think this command will open file file well:
The only problem is that I never tried to read binary files.
And dont know how to process this Byte variable: ReadText!
Do you have any idea how can I just extract email addresses?
I even have regex code to do it, but dont know how to process ReadText?
Please help me
I would like to read a binary file: Windows Address Book.
However, since I JUST want to import email addresses from WAB to my application I think I can open and read it myself.
If you see my snapshot, email addresses are human readable and just with spaces, not encoded!
So I think this command will open file file well:
Code:
Dim ReadText As Byte() = System.IO.File.ReadAllBytes("C:\Documents and Settings\Username\Application Data\Microsoft\Address Book\Username.wab")
And dont know how to process this Byte variable: ReadText!
Do you have any idea how can I just extract email addresses?
I even have regex code to do it, but dont know how to process ReadText?
Please help me
Last edited by a moderator: