我没关si的情况下强制关机导致的

Source InSight context 窗口丢失的解决办法

(2010-09-03 13:35:45)

   

今天早晨改改CLI,上了趟WC,回来发现不知道谁给我弄的,把context 窗口搞没了。我在菜单里面找了半天,也没找到类似视图之类的东西,害的我要看函数,必须jump到函数定义那里,看完再退回来。
就像这样

上网搜了一下,结果只发现一个英语的文档。

Q: My Context Window disappeared and I can’t get it back.

A: This may be caused by a corrupted configuration
file.

You will have to restart Source Insight
without your configuration file.

Run Source Insight, and select Options > Save
Configuration. Check to box at the top that says “All settings”.
Click the Save button.
Note the directory where the Save dialog box
opens.  This is the directory where your
configuration file is normally stored. It will probably be in a
folder such as “My Documents\Source Insight\Settings”. Just cancel
the dialog without saving.
Exit Source Insight.
Go to the folder found in step#2 above, and find the file called
GLOBAL.CF3.
Rename GLOBAL.CF3 to something like OLD.CF3
Run Source Insight again.  All options should be
back to the defaults.
Select Options > Load
Configuration.  Clear the top check box and turn
on all the lower checkboxes except for “Display and
Windows”.   Press the Load button
and select OLD.CF3 to load. This will load all your other settings,
except for the positions of the windows.
After loading OLD.CF3 (minus the “windows” settings), your Context
Window should be back.  We’re sorry for the
inconvenience.

Q:我的context 窗口不见了,而且我找不回来。……翻译的好烂

A:发生这种情况,是应为Source
InSight的配置文件损坏了。如果需要解决这个问题,请在没有配置文件的情况下,重新启动Source InSight。

1.Run Source Insight, and select Options > Save
Configuration. Check to box at the top that says “All settings”.
Click the Save button.
运行Source Insight,在options中选择configuration。选中新窗口顶部的“All
settings”,然后点击save按钮。

2.Note the directory where the Save dialog box
opens.  This is the directory where your
configuration file is normally stored. It will probably be in a
folder such as “My Documents\Source Insight\Settings”. Just cancel
the dialog without saving.
Exit Source Insight.
记住打开的保存对话框的位置,这个位置就是你通常存放配置文件的地方。比如,My Documents\Source
Insight\Settings。然后退出Source Insight。

3.Go to the folder found in step#2 above, and find the file called
GLOBAL.CF3.
Rename GLOBAL.CF3 to something like OLD.CF3
进入step#2中的文件夹,里面有一个名为GLOBAL.CF3的文件,把他改名成为OLD.CF3

4.Run Source Insight again.  All options should be
back to the defaults.
Select Options > Load
Configuration.  Clear the top check box and turn
on all the lower checkboxes except for “Display and
Windows”.   Press the Load button
and select OLD.CF3 to load. This will load all your other settings,
except for the positions of the windows.
重启Source Insight。这时候,所有的设置应当便会默认的,选择options中的load
configuration.点击load,然后选择OLD.CF3,点击载入。这一步将会载入出去窗口设置以外的所有设置。

5.After loading OLD.CF3 (minus the “windows” settings), your
Context Window should be back.  We’re sorry for
the inconvenience.
在导入OLD.FC3后,Context Window就会出现。对此我们深表歉意。

Source InSight context 窗口丢失的解决办法的更多相关文章

  1. Source Insight 4 中文乱码的解决办法(source insight 3.5 及以下版本就到其他地方看看吧)

    干货:Source Insight 4 中文乱码的解决办法(source insight 3.5 及以下版本就到其他地方看看吧) [解决办法]: 菜单栏中[File]->[Reload As E ...

  2. Source Insight 中文注释为乱码解决办法(完美解决,一键搞定)

    我从网上查了一堆解决办法,但是都是2017年以前的解决方案,并且都是针对于source insight 3.5及以下版本的,目前SI软件版本都到4.0了,应该有新方法出现了. ------------ ...

  3. Asp.Net保存session的三种方法 (Dll文件更新导致session丢失的解决办法)

    1. InProc模式(默认值):asp.net将session保存到当前进程中,这种方式最快,但是不能多台服务器共享session,且会话状态数据容易丢失. <sessionState mod ...

  4. 在IE浏览器中iframe跨域访问cookie/session丢失的解决办法

    单点登录需要在需要进入的子系统B中添加一个类,用于接收A系统传过来的参数: @Action(value = "outerLogin", results = { @Result(na ...

  5. source insight 中文注释为乱码解决

    1. source insight 中文注释为乱码解决 http://blog.csdn.net/bingfeng1210/article/details/7527059 2. Source Insi ...

  6. Session丢失的解决办法小结

    最近在做ASP.NET项目时,测试网站老是取不出Session中的值,在网上搜索了一下,找到一些解决方法,记录在这里.最后使用存储在StateServer中的办法解决了问题. SessionState ...

  7. Source insight 3572版本安装及An invalid source insight serial number was detected解决方法

    Source insight有最新版3572.3.50.0076 下载连接:http://www.sourceinsight.com/down35.html,   http://www.sourcei ...

  8. OA系统出现窗口拦截的解决办法

    我们使用oa时候,有时候会出现“你打开了窗口拦截功能”.如图 出现窗口被拦截主要有三种情况,分别是IE浏览器本身拦截功能.第三方插件(如百度工具栏.搜搜工具栏.谷歌工具栏等).第三方浏览器拦截功能(如 ...

  9. WAMPServer安装关于MSVCR110.dll丢失的解决办法

    安装完成后出现如下提示: 解决办法 请参阅:计算机中丢失 msvcr110.dll 怎么办 为了防止原地址失效,下面简单说下原地址的内容: 到  http://www.microsoft.com/zh ...

随机推荐

  1. php的session存放数组

    本文实例讲述了php使用session二维数组的用法 最普通的用法:一个变量名: $_SESSION['user'] = 0;echo $_SESSION['user']; 使用数组:代码如下: $_ ...

  2. Linux Directory Structure

    Note: Files are grouped according to purpose. Ex: commands, data files, documentation. Parts of a Un ...

  3. jQuery中hover与mouseover和mouseout的区别分析

    本文实例分析了jQuery中hover与mouseover和mouseout的区别.分享给大家供大家参考,具体如下: 以前一直以为在jquery中其实mouseover和mouseout两个事件等于h ...

  4. gradle本地、远程仓库配置--转

    https://blog.csdn.net/x_iya/article/details/75040806 本地仓库配置配置环境变量GRADLE_USER_HOME,并指向你的一个本地目录,用来保存Gr ...

  5. webstorm中sass编译时目录或内容包含中文字符报错

    ruby版本:ruby 2.3.1p112 (2016-04-26 revision 54768) [x64-mingw32] sass版本:Sass 3.4.22 (Selective Steve) ...

  6. [转]如何配置Log4Net使用Oracle数据库记录日志

    本文转自:http://www.cnblogs.com/PatrickLiu/p/6012153.html 最近在做一个项目的时候,需要增加一个日志的功能,需要使用Log4Net记录日志,把数据插入到 ...

  7. 使用原生JavaScript实现对select增加option标签并附加value属性

    好久没有写原生的东西了,今天写了一个小项目里面包含着option选项,所以我决定使用原生JavaScript动态生成, 本着互联网分享精神,我将本篇文章分享给大家. html代码(就是一个select ...

  8. <a>标签中href="javascript:;"的意思

    <a> 标签的 href 属性用于指定超链接目标的 URL,href 属性的值可以是任何有效文档的相对或绝对 URL,包括片段标识符和 JavaScript 代码段. 这里的href=&q ...

  9. Elasticsearch数据类型

    Elasticsearch自带的数据类型是Lucene索引的依据,也是做手动映射调整的依据.映射中主要就是针对字段设置类型以及类型相关参数.1.JSON基础类型如下:字符串:string数字:byte ...

  10. 关于iFrame特性总计和iFrame跨域解决办法

    1.iframe 定义和用法 iframe 元素会创建包含另外一个文档的内联框架(即行内框架). HTML 与 XHTML 之间的差异 在 HTML 4.1 Strict DTD 和 XHTML 1. ...