Now this is a very wierd problem...
Code:
Private Block As String
Private File_Block As Long
Private Sub MoveData ()
Dim arr_dat() As Byte
Get_Data () ' Function that returns 1024 bytes in Arr_dat..
	File_block = 1024
	Block = Space(1024)
	CopyMemory Block, arr_dat(0), File_Block ' this now shuts down the IDE...
End Sub
the CopyMemory API causes the ide to exit ...

I'm trying to move and array of binary data into a string without resorting to a loop... And this one has me going mad...

Any Advice ???

Gremmy....