VintaSoft PDF .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft PDF .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft PDF .NET Plug-in Discussions
private void OpenFileAsynchronously()
{
try
{
UseWaitCursor = true;
annotationViewer1.Images.Add(_sourceFilename, _isFileReadOnlyMode);
annotationViewer1.DisplayMode = ImageViewerDisplayMode.SinglePage;
annotationViewer1.SizeMode = ImageSizeMode.Normal;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message.ToString());
}
}