Click here to Skip to main content
15,907,001 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hello I am working on Point of Sales Project. I want to display image in Layout view, how to display external images in layout view if the data source only contains links to the images. I tried alot but i couldn't find any good solution? PLEASE guide me so i can move forward. Thanks
Posted
Comments
ZurdoDev 16-Oct-15 8:14am    
This does not make any sense. Is this a web app or a windows app? WPF? What is this? And why can't you show an image? That part is very easy.
Member 12018626 19-Oct-15 3:04am    
this is windows form application and i am using layout view from third party tool devexpress

1 solution

Take ASp:image and assign url at runtime
Image1.ImageUrl ="Your Location";
 
Share this answer
 
Comments
Member 12018626 19-Oct-15 3:04am    
this is windows form application and i am using layout view from third party tool devexpress
Member 12003400 19-Oct-15 9:47am    
Use Picturebox for that.
PictureBox pb1 = new PictureBox();
pb1.ImageLocation = "Your Location";

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900