问题标签 [code-view]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1163 浏览

visual-studio - 在 XOML 文件上使用查看代码时,将显示设计器视图

在 Visual Studio 中:当您在解决方案资源管理器中右键单击 xml 文件并选择“查看代码”时,它会将您带到设计器(设计视图)。

重现步骤

  • 创建一个xml
  • 在代码隐藏中添加一些东西[我使用 C#]
  • 关闭代码隐藏和设计器
  • 右键单击解决方案资源管理器中的 xml
  • 选择“查看代码”

实际结果

  • 打开设计器视图。

预期成绩

  • 代码视图应该打开。
0 投票
1 回答
146 浏览

visual-studio - 在解决方案资源管理器中双击表单并在 Visual Studio 的代码视图中打开的属性是什么?

我曾经知道一个类属性,您可以将您的类设置为“表单”或“代码”,如果您将表单设置为“代码”,在解决方案资源管理器中双击它的文件,将在代码视图中打开表单而不是默认的表单视图。

我不记得那个属性叫什么,有人知道吗?

0 投票
3 回答
4966 浏览

debugging - Microsoft 的 CodeView 格式规范

我一直在寻找 1990 年代称为CodeView Symbolic Debug Information Specification的 Microsoft 文档。Microsoft 在其PE/COFF 规范中引用了它。关于此文档的信息很少,我遇到的每条线索都以 404 结尾。不幸的是,我没有任何旧的 MSDN CD,这似乎结束了对少数人的搜索。

有没有人有副本,或者知道我在哪里可以找到任何相关规格?

0 投票
2 回答
310 浏览

assembly - 行为异常的变量(英特尔 8086)

编辑:回答了我自己的问题。见下文。-_-

我在 .data 段中定义了一个变量,如下所示:

这是我为获得返回值而添加或减去的值。

它第一次出现在代码段中是在以下点:

我用过调试器,可以确认在这个操作的时候,ax寄存器是:0000h。

但是,如果我在它之前添加以下代码行:

我得到一个完全不同的值(也是错误的)。我很困惑。我在这里从根本上滥用变量吗?我不明白为什么加载变量最初初始化的相同值(并且尚未修改)会改变结果。

有任何想法吗?如果做不到这一点,有人可以提醒我如何通过 CodeView 跟踪变量的值吗?(我正在使用的 DOSBox 调试器)

0 投票
1 回答
163 浏览

eclipse - 使用 Eclipse PDT(或 Mylyn)向下钻取,避免混乱

我正在成为 eclipse 的频繁用户,我喜欢它。但是我发现自己想知道:

有没有办法可以使用 eclipse 向下钻取,然后将所有内容隐藏在封闭文件夹中,除了我正在钻取的文件夹?(Mylyn 过滤东西的方式,但无需我构建上下文)

我想这样做,因为我正在使用 CodeIgniter 和 WAMP,它们有许多系统文件位于更高级别的文件夹中,其中大部分我不关心,但它们占用了我的项目视图顶部附近的空间。有可能避免这种情况吗?

谢谢,

勒米安特

编辑:虽然上述方法是理想的,但如果不可能,那么有没有办法手动选择在项目视图中隐藏文件和文件夹。

0 投票
3 回答
628 浏览

programming-languages - which software can view any developed software code?

I would to know the software which can view code of Microsoft word software and any other software code. So that I can learn from that software code and how they used in there. (sound's like illegal but really it is helpful for the programmer)

any Ideas

0 投票
2 回答
704 浏览

joomla - 将 github 代码显示到文章中的 Joomla 插件

是否有任何可用于 joomla 2.5 的插件来嵌入来自 github 存储库的代码。对于 word press,有一个插件可以实现相同的功能(http://wordpress.org/extend/plugins/github-code-viewer-2/)。我想使用类似的东西将我的 github 存储库中的代码包含到我的 joomla/k2 文章中

通过查看 wp 插件,我想编写自己的 joomla 插件,但 WP 插件使用*wp_remote_fopen*函数,我在 joomla 中没有找到相同类型的函数,并阅读了一些关于使用此类 remote_open 函数的漏洞的文章。这是 WP 插件在做什么

0 投票
1 回答
1151 浏览

fonts - Dreamweaver CC - 代码视图字体类型

我有 Dreamweaver CC,测试版,现在我有 CS6。我真的很喜欢 CC 中代码视图的默认设置(字体类型、背景颜色等)。现在我卸载了 CC 并且我被马虎的 CS6 代码视图困住了。那么,您能否打开您的 Dreamweaver CC 并检查默认设置:

代码视图的字体?背景颜色?

谢谢!

0 投票
2 回答
616 浏览

assembly - 通过 MOV [BP] ,AL 在 Extern 8086 过程中写入堆栈处于非活动状态

问题 :

在外部过程中对堆栈进行非活动写入

代码 :

在一个外部过程中,它要求用户输入一个字符串,然后通过堆栈将其返回给主程序。

字符串在数据段中定义,其名称与主过程文件中的数据段不同。

和堆栈段声明:

最初在程序开始时,我将其声明为 public 并将 BP 设置为 Stack top :

函数正在读取字符串 AH=0x0A 中断 0x21

尝试使用以下循环将字符串保存到堆栈中:

使用代码视图 4.01 和 MASM 6.11调试程序会产生以下结果:

1-String 被正确读取并存储在 DS 和偏移量 Str [Actual string 在最大长度后开始两个字节,实际计数]

2-将字符串写入堆栈的奇怪行为:

让 SP 在循环之后最初 = 0xBA BP=0xA4(即 0xBA-0x16(字符串长度)) 在 SS:0xA4 处转储堆栈段 在 SS:SP 之前的 8 个字节处显示垃圾数据,并且在此之后写入正确的数据。

如果 str='ABCDEFGHIJ' 只有 'GHIJ' 保存在堆栈中

注意:060C:000A 在执行对 extern 过程的远调用之前是 CS:IP,并且被成功推送@SP=0xC0(即在 SS:0xBC,SS:0xBD,SS:0xBE,SS:0xBF)

3-将 MOV [BP],AL 替换为 MOV [BP],33h 会导致相同的行为;33h 未写入旧 TOS 周围的前 8 个字节

4-强制执行 SS(即 MOV SS:[BP],AL )也无能为力,因为发生了相同的行为

我知道我可以以其他方式返回参数,但为什么会发生这种行为?

0 投票
1 回答
533 浏览

assembly - FAR Call is set to jump to segment zero and offset zero in 8086 Assembly with no listings

Problem :

What makes the FAR CALL to external procedure is set always to jump to CS:IP=0000:0000 ? which when traced by the debugger "CodeView" doesn't contain the actual procedure.

I make four public procedures in four different files , the first three calls work properly but the fourth call is assembled to be : CALL 0000:0000 .

Commenting the first three calls result in the same effect.

Code :

Inside Pro.asm [Which contains the main procedure ]

The first few lines contains the extrn declarations

Then inside the main I perform the following calls :

Inside Mouseact.asm first I declared the procedure name to be PUBLIC then two macros are declared after that the external procedure declaration is done

The procedure itself :

Another procedure needed by the MouseAct procedure :

Attached also the MouseAct.lst [The listing file] which is different from other external procedures listings and also doesn't contain the DispFile1 procedure name.