Hello. I am a new comer and this is my first post.

I have been scripting with AutoIt for a while and I decided to give VB2005 Express a try. AutoIt is said to be a "BASIC-like" scripting language, but they appear to have a lot of differences in my opinion. I feel that VB is more complicated!

I want to include files inside my VB executable, which will be extracted when it runs. In AutoIt, this task can be done by doing this:

Code:
FileInstall('C:\MyFile.xyz', 'D:\MyFile.xyz')
This will include the file MyFile.xyz from the C directory in the compiled executable, and it will extract it to the D directory when the executable runs.

How can I do the same task in VB2005 Express?

Thanks!