
Binding to a recordset rather than an datactl
I have a recordset built from an Access table. One of the fields is a
longbinary (ole object) field and it contains a picture. Without using a
datactl, how do I use an image control to set and display the fields
value. I've tried things like
Set Image1.Picture = TempRs("Picture") ' doesn't work
Image1.Picture = TempRS("Picture").Value ' doesn't work
I've tried a few other methods as well. I thought that this would be
done the same way you fill a text box with a recordset field value but I
guess not.
Does anyone have any suggestions.
Dave