I can't find your previous post (haven't looked very hard), but I presume this is what you wanted :
Dim intHandle As Long
Dim strLine As String
intHandle = FreeFile
Open "textfilename and path" For Input As intHandle
Do
Line Input #intHandle, strLine
Picture1.Print strLine
Loop Until EOF(intHandle)
Close intHandle
This will open a text file (Notepad file if you will) and add it's contents to a picture box.
Good luck with it,
Heico