There is an application that works as a client for the database (Access). The database has a number of images that are stored as hyperlinks (for example, D: \ Database \ Image1.png). Images are stored on a network drive. When requested, the data is displayed in the dataGridView using oledb:
private void button1_Click(object sender, EventArgs e) { OleDbDataAdapter dataada2 = new OleDbDataAdapter("SELECT * FROM Таблица1", oleDbWay); DataSet dataset1= new DataSet(); dataada2 .Fill(dataset1, "Adapt"); dataGridView1.DataSource = dataset1.Tables[0]; } Accordingly, when you run the program in the data view links appear. Tell me how to make sure that when you start the program, the images themselves will appear instead of the links (if that is possible). [SPOILER] Maybe you should use the ole data type in the database for image strings? The field itself in this case should go as a link to the image? [/ SPOILER]