Dear,
I'm using RadGrid to display a filename and a filepath.
Everything work fine (capture.PNG) when i click on the filename. The document open, but when i change the file name or i delete the file on my desktop, my program crash...
How can i handle this error?
Regards,
                    GridViewDataColumn cFullCompanyName = new GridViewDataColumn();
                    GridViewDataColumn cFileName = new GridViewDataColumn();
                    GridViewDynamicHyperlinkColumn cFilePath = new GridViewDynamicHyperlinkColumn();
                    cFullCompanyName.DataMemberBinding = new Binding("FullCompanyName");
                    cFileName.DataMemberBinding = new Binding("FileName");
                    cFilePath.DataMemberBinding = new Binding("FilePath");
                    cFilePath.NavigateUrlMemberPaths = "FilePath";
                    documentPage.gvDocument.Columns.Add(cFullCompanyName);
                    documentPage.gvDocument.Columns.Add(cFileName);
                    documentPage.gvDocument.Columns.Add(cFilePath);