Add specific warning message when creating differencing VHD. Patch from shermanp.
This commit is contained in:
parent
6cbce169f5
commit
e15f66b349
1 changed files with 6 additions and 2 deletions
|
|
@ -1842,9 +1842,13 @@ static int hdnew_dlgproc(void* hdlg, int message, INT_PARAM wParam, LONG_PARAM l
|
|||
return TRUE;
|
||||
}
|
||||
}
|
||||
wx_messagebox(hdlg, "Differencing VHD image created.\n\n"
|
||||
"WARNING: Do not open or modify the parent image(s) while this file exists.", "PCem", WX_MB_OK);
|
||||
}
|
||||
if (hd_format != 3)
|
||||
{
|
||||
wx_messagebox(hdlg, "Drive created, remember to partition and format the new drive.", "PCem", WX_MB_OK);
|
||||
}
|
||||
|
||||
wx_messagebox(hdlg, "Drive created, remember to partition and format the new drive.", "PCem", WX_MB_OK);
|
||||
|
||||
wx_enddialog(hdlg, 1);
|
||||
return TRUE;
|
||||
|
|
|
|||
Loading…
Reference in a new issue