Lets Say I Wanted To Open a 1 Meg+ File and store it in the memory of vb for a second and then using the same technique open another file and Splice them together, How could I Do This?

SAMPLE CODE///////
DIM F as double


F = FreeFile
Open "SomeEXE.exe" For Binary Access Write As F
FILE1 = Input(LOF(F), F)
Close F

SAMPLE CODE///////