> I have an ADP/SQL Server table that has a column called "Document" with
> data type = image.
[quoted text clipped - 3 lines]
> and open it up for viewing with the proper Windows application? (my
> application primarily stores text files that can be opened in Notepad).
Have look at this KB-Article:
http://support.microsoft.com/?kbid=194975
It demonstrates how to read/write files from an Image-Field in the
database.
For opening that file with the proper application, you may use the
"ShellExecute" API-Function. I don't have any sample available for
this, but you should easily find one when searching for that keyword
in Google.
In most cases it may be sufficient to simply use:
Application.FollowHyperlink yourFileName
to open the file.
Cheers
Phil