Hi,
OK.. ur pict is not stored in the db, To show the Picture in another Form, it is simple..
First Add a Public Variable to the Form and in either Click Event of the Grid or Command button, populate the public variable with the Path and Show the Second Picture Form. Some thing like this:
Add a Form (frmPict). Place a pictureBox on this form, write this code in Main/Calling form..
Declare this Variable FormLevel:
Public MyPath As String
MyPath = DataGrid1.Columns(5).Text
frmPict.Show
Write this code in frmPict FormLoad Event:
Me.Picture1.Picture = LoadPicture(Form1.MyPath)
Where as Form1 is the Main Form where datagrid is Loaded.. Change it to ur Form name..
Regards
Veena