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)