winform中使用dsoframer提示"Unable to display the inactive document.Click here to reacitive the document."

在winform中使用dsoframer 1.3载入word文档,但是在axFramerControl1.Open("NPOI.docx");在axFramerControl1控件中却显示Unable to display the inactive document.Click here to reacitive the document.

遇到这种情况的解决办法有两种方式,一是代码实现设置控件属性,二是通过控件属性设置。

`代码设置:axFramerControl1.ActivationPolicy = DSOFramer.dsoActivationPolicy.dsoKeepUIActiveOnAppDeactive;

选择控件属性在ActivationPolicy通过下拉菜单选择属性为dsoKeepUIActiveOnAppDeactive。

即可设置成功,运行即可看到加载后正常显示的word文档。

时间: 2024-10-12 21:24:40

winform中使用dsoframer提示"Unable to display the inactive document.Click here to reacitive the document."的相关文章

解决cefsharp在winform中不显示tooltipText问题(网页元素的title提示)

1.监听网页属性改变事件 webView.PropertyChanged += webView_PropertyChanged; 2.拖一个ToolTip控件到窗体 3.获取TooltipText并显示出来 //隐藏toolTip if (this.IsHandleCreated) { this.BeginInvoke(new MethodInvoker(() => { if (this.IsHandleCreated && !this.IsDisposed) { if (this.

Ubuntu 无法访问 win8 分区问题。 提示 Unable to access " Partion X"

系统背景 电脑型号:Thinkpad X230i 操作系统:win 8.1 中文版  + Ubuntu 13.10  双系统运行 问题描述 在Ubuntu系统下无法打开Win分区,提示以下信息 Unable to Access "WINDOWS" Error mounting /dev/sda3 at /media/dany/Data: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosu

logcat 提示 Unable to open log device '/dev/log/main': No such file or directory

解决办法: Open: /system/etc/init.d/××× (not the same file on different ROMs, find the right file) Find the line that says: rm /dev/log/main Change the line to: # rm /dev/log/main (comments out the line, rm = remove, in case you were wondering) Save and r

单机环境下在WinForm中使用Unity3d

今天工作需要,要把Unity3d嵌入WinForm中,具体怎么做网上都有教程的. 但是,按照教程来,即 在WinForm中添加UnityWebPlayer控件(这个是COM组件),结果无法正确显示. 此时界面为: Error details是: Src路径是.unity3d的全路径,路径正确的,如果路径错误的话,提示是: 注意此时我已经安装了UnityWebPlayer插件.(我搜索单机显示unity3d时,只找到说是要安装这个) 我工作的电脑是无法上网的,实际上以前在家里的时候按照教程,3d场

C#winform中ListView的使用

使用ListView模仿Windows系统的资源管理器界面,实现文件(夹)的浏览.重命名.删除及查询等功能,主要功能界面展示如下: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System

Android开发中java.lang.RuntimeException: Unable to start activity ComponentInfo{xxx}

Android开发中java.lang.RuntimeException: Unable to start activity ComponentInfo{xxx}: java.lang.NullPoi 错误信息字符串:java.lang.RuntimeException: Unable to start activity ComponentInfo{com.first/com.first.Game}: java.lang.NullPointerException 一般都会在Activity  o

实现password框中显示文字提示的方式

其实实际上实现中并不能让password中显示文字提示,但是我们在工作中有这样的需求,当没输入东西的时候,框内有提示输入密码,但是当输入东西的时候又显示的是*号,那么是如何实现的呢?其实原理很简单,就是放两个文本框,样式以及定位都是一样的.先将type为password的隐藏,只显示type为text的伪密码框,value设置提示内容例如请输入密码.然后当input触发的时候,type为text的input隐藏,让type为password的input显示出来.然后当检测password的val

在WinForm中使用委托来在其他线程中改变控件的显示

假设winform中有两个控件: 1.ListView用来显示进度的文本提示,ID:listView_progressInfo 2.ProgressBar用来显示进度,ID:progressBar1 在此winform的后台.cs文件中声明两个公用委托类型:ControlChanger, ProgressChanger public delegate void ControlChanger(string progressText); public delegate void ProgressCh

【.Net】在WinForm中选择本地文件

相信很多朋友在日常的编程中总会遇到各钟各样的问题,关于在WinForm中选择本地文件就是很多朋友们都认为很难的一个学习.net的难点, 在WebForm中提供了FileUpload控件来供我们选择本地文件,只要我们将该控件拖到页面上了,就已经有了选择本地文件的功能了.而在 WinForm中,并没有为我们提供集成该功能的控件,但为我们提供了OpenFileDialog类,我们可以利用该类来打开与选择本地文件. OpenFileDialog类,提供了提示用户打开文件的功能,它有如下属性和方法: 属性