i created a sql database with table land.
columns;
LandID int PK
LandCodeID int
LandName nvarchar(100)
LandFlag image Allow Nulls
ive created a dataset in my solution.
from my Data Sources i can drag & drop the table Land to my Form1 as DataGridView. it puts all the columns above on my form. im able to update/add/delete Lands except the flag. i want to double click on the landFlagPictureBox so i can select the jpg image to save it in my database. can anyone help me out?
thanx in advance