I want to display a picture that is of jpeg type onto my interface. I want that picture to be displayed when my program is being executed. I'm doing this:
private void frmMain_Load(object sender, EventArgs e)
{
     LoadRecords();
     Image.FromFile("@ C:\Users\cAndyb0eMeh\Documents\Downloads\images.jpeg");        
} 
But this doesn't work. I get errors.