I have an image database which stores the images outside in a folder (and the record id = the image name i.e. 23.jpg). Using ASP I can link to these images on web pages but I cannot do the same in my VB project. The code that I've been trying is:
file = txtImgID.Text
imgImageThumb.Picture = "\\idcnt2\netvisual$\thumbnails\thmb_" & file & "." & "jpg"
Also, where do I put the command so that the image box updates itself (displays the new thumbnail image for the new latest) when the record changes through the ADO control?
Thanks...
file = txtImgID.Text
imgImageThumb.Picture = "\\idcnt2\netvisual$\thumbnails\thmb_" & file & "." & "jpg"
Also, where do I put the command so that the image box updates itself (displays the new thumbnail image for the new latest) when the record changes through the ADO control?
Thanks...