Parameters
- fileName
- File path where the document will be saved.
private void btnSave_Click(object sender, System.EventArgs e) { arv.Document.Save(Application.StartupPath + "\\Document.rdf"); }
Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click arv.Document.Save(Application.StartupPath & "\Document.rdf") End Sub