fixed format selection

This commit is contained in:
2009-09-22 13:59:16 +00:00
parent 8103cc041f
commit 38d744fbe7
9 changed files with 293 additions and 283 deletions

View File

@@ -159,9 +159,14 @@ namespace VEPROMS
{
docVersionConfigBindingSource.DataSource = _DocVersionConfig;
formatInfoListBindingSource.DataSource = FormatInfoList.Get();
//formatInfoListBindingSource.DataSource = FormatInfoList.Get();
imageCodecInfoBindingSource.DataSource = ImageCodecInfo.GetImageDecoders();
ppCmbxFormat.DataSource = null;
ppCmbxFormat.DisplayMember = "FullName";
ppCmbxFormat.ValueMember = "FullName";
ppCmbxFormat.DataSource = FormatInfoList.SortedFormatInfoList;
// Get the saved settings for this user
//
// Get setting telling us whether to display the default values on this property page
@@ -738,6 +743,14 @@ namespace VEPROMS
}
}
private void ppBtnPDFLoc_Click(object sender, EventArgs e)
{
PDFLocationBrowserDialog.SelectedPath = ppTxtBxPDFLoc.Text;
DialogResult dr = PDFLocationBrowserDialog.ShowDialog();
if (dr == DialogResult.OK)
ppTxtBxPDFLoc.Text = PDFLocationBrowserDialog.SelectedPath;
}
}
}