From dc1af0b0f31955c1d2c0ab8519d3518005e6d492 Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 9 Apr 2012 13:34:32 +0000 Subject: [PATCH] --- PROMS/VEPROMS User Interface/frmVersionsProperties.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs index 78b1af3e..c1e552cc 100644 --- a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs +++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs @@ -701,6 +701,7 @@ namespace VEPROMS private void btnRoDbProperties_Click(object sender, EventArgs e) { frmRODbProperties dlgROProperties = new frmRODbProperties(_DocVersionConfig.MyDocVersion, SelectedROFst == null ? null : SelectedROFst.MyRODb); + dlgROProperties.ParentLocation = Location; if (dlgROProperties.ShowDialog() == DialogResult.OK) { tbRoDb.Text = string.Format("{0} ({1})", SelectedROFst.MyRODb.ROName, SelectedROFst.MyRODb.FolderPath); @@ -822,6 +823,7 @@ namespace VEPROMS private void ppBtnRoDbBrowse_Click(object sender, EventArgs e) { frmRODbProperties dlgROProperties = new frmRODbProperties(_DocVersionConfig.MyDocVersion, SelectedROFst == null ? null : SelectedROFst.MyRODb); + dlgROProperties.ParentLocation = Location; // if a user has entered a valid rodb, then this docversion will be conntected to it - change // to a non-editable text box and the button becomes a properties button rather than browse. if (dlgROProperties.ShowDialog() == DialogResult.OK)