Assuming that the blob contains the raw binary data (and not an 'OLE Embedded' image) here are two possibilities.
on each record, extract the blob chunk by chunk (using a getchunk loop), write it to a temporary file,
then load the file into an image control. You'll need to ensure that the relevant Office Graphics Filters
are installed on each machine to display the image format. There are a couple of workarounds that may
be required for the image control ('scroll-too-quick' crash, and supress 'loading' dialog) - see 'The Access
Web' for more info:
http://www.mvps.org/access/
Alternatively you could consider a third party component, such as our DBPix image control, which you can
just bind to the Image field in the form's recordset, or load in code, for example:
DBPixCtrl.Image = rs("ImageField")