Hi,
You are welcome, I"m glad I was able to help :-)
The Eval function is used to pull out the data from the database table, it is used mainly for text inputs.
You mean that you want to resize the image from the Media selection form control? This could be possible with:
<%# GetImageByUrl(Eval("Pictures"),100) %> // 100 means the max side size
or:
<%# GetImageByUrl(Eval("Pictures"),100, 100) %> // width x height
However this will only work if you get the image using the GetMedia file -> In other words, this will work if when you are creating a document and selecting the image out of media library you have to save it resized because if you dont the static path to file will be used. But if you do change the size and select the resized image the system will use get media and resize it.
Kind regards,
Richard Sustek