fixed format selection
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user