- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这简直要了我的命。
我已经阅读了有关该主题的帖子:here是最相关的,但它没有涵盖将委托(delegate)传递给事件(尽管我预计这会很简单)。
具体来说,VS中的错误是:
This function value is being used to construct a delegate type whose signature includes a byref argument. You must use an explicit lambda expression taking 2 arguments.
我能找到的错误的最佳推理是Eric Lippert's blog中的旁白。 ,但我想我已经在下面处理了它。
// Documentation: http://msdn.microsoft.com/en-us/library/aa752084(v=vs.85).aspx
// Don't forget to unwrap the instance before using it.
let mutable ieInstance : option<InternetExplorer> = None
let onDocumentComplete (pDisp : Object) (url : byref<Object>) =
let doc = ieInstance.Value.Document :?> IHTMLDocument2
let window = doc.parentWindow
window.execScript(@"alert('Message added by addon.');") |> ignore
// All of the following underline "DocumentComplete" as the source of the error.
do ieInstance.Value.DocumentComplete.AddHandler(new Handler<byref<Object>>(fun pDisp url -> onDocumentComplete pDisp &url))
do ieInstance.Value.DocumentComplete.AddHandler(fun pDisp url -> onDocumentComplete pDisp &url)
do ieInstance.Value.DocumentComplete.Add(fun pDisp url -> onDocumentComplete pDisp &url)
do ieInstance.Value.DocumentComplete.Add(fun _ _ -> ())
do ieInstance.Value.DocumentComplete.Add(fun (_, _) -> ())
感谢任何建议!
更新 1我引用的库是“Microsoft Internet Controls”中的 Interop.SHDocVw。我还尝试使用 SHDocVw.DWebBrowserEvents2_DocumentCompleteEventHandler
作为委托(delegate)类型,但仍然失败。
最佳答案
我得到的错误与你略有不同:
error FS1091: The event 'DocumentComplete' has a non-standard type. If this event is declared in another CLI language, you may need to access this event using the explicit add_DocumentComplete and remove_DocumentComplete methods for the event. If this event is declared in F#, make the type of the event an instantiation of either 'IDelegateEvent<_>' or 'IEvent<_,_>'.
如果你遵循这个建议,你就会得到这个,它为我编译:
ieInstance.Value.add_DocumentComplete(fun pDisp url -> onDocumentComplete pDisp &url)
编辑
Keith 和 Tahir 的评论让我意识到 - 这种情况确实很难诊断,事实上在 2 月份 F# 3.1.1 发布后不久就得到了修复。
新行为是更好的错误消息(如上所示)和更好的智能感知条目(现在显示所需的 add_
和 remove_
成员,以及无用的 DocumentComplete
条目实际上现在已隐藏)。因此,如果您使用的是已发布的 F# 位,抱歉。如果您使用的是最新的预发布 F# 位,那就不会那么痛苦。
该更改是在 Codeplex 上所有内容开源之前进行的,但仍然可以在 later merge to Github 中看到它的一些记录。 (请参阅对 infos.fs 的更改以及对 nameres.fs 的最后更改)。
关于.net - 带有 byref 参数的委托(delegate)被 .NET 事件拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25063942/
我正在创建一个用户表单,它将不同的信息集收集到不同的字典中进行处理。 字典在用户窗体模块级别声明,并在激活用户窗体时在另一个过程中初始化。 为了简化我的代码,我有一个将项目插入适当字典的子例程。 我已
输入 =Test2(5)将代码放入模块后放入 Excel。为什么这会给我一个 Byref argument type mismatch错误? 如果在 Test2 的开头我做了一行来创建我的数组: Di
我在这里做错了什么? Sub Main() Dim patients() As String ' Some code to populate the patients array, works fin
最初在我的主代码部分中,我有一个丑陋的 if 语句 - 尽管它会运行丑陋。我决定将其设为我要调用的函数,这导致我收到错误“编译错误:ByRef 参数类型不匹配”。我的假设是该函数需要正确引用,尽管我一
鉴于被调用的过程实际上设置了传递的 Range 对象 ByRef,我希望该对象引用在调用过程中可用。但仍然什么都没有。 解决办法是什么? 调用 Private Sub Specs_TryGetRang
我需要分配一个 byref 参数,但是,在 Windows 8x64 机器上使用 F# 4.0 和 .NET 4.5.2,我不断收到关于 This value is not mutable. 的投诉。
我是 Python 的新手(而且对编程了解不多),但我记得读过 python 通常不复制值,因此任何语句 a = b 都会使 b 指向 a。如果我跑 a = 1 b = a a = 2 print(b
假设我有一个采用整数值 ByRef 的函数,如下所示: Function myFunc(ByRef funcVal As Integer) funcVal = funcVal + 1 End Fu
我想检查是否存在具有特定名称的工作表,所以我在下面生成 shtexist 函数。 但是,对于 shtexist 中的第二个参数。当我首先通过 byref 时, shtexist(name,thiswo
我在 Excel 2016 中编写脚本,遇到了一些奇怪的行为,具体取决于我定义变量的方式。我在下面创建了一些示例代码来重现错误。 我想知道这是一个已知的 VBA 错误还是我做错了什么? Sub IWo
我正在尝试这段代码,但无法摆脱错误“ByRef 参数类型不匹配”。 我已将 i 和 j 声明为整数,并将 ByRef 放入 DisplayTreeHelp 函数中,以保留在完成执行 DisplayTr
这是代码 Dim Comp_Str, Comp_Val As String Call Populate(Comp_Str, Comp_Val) Sub Populate(Str As String,
我正在尝试编写一个程序来捕获何时选择单元格并简单地返回单元格列和行。我收到“ByRef 参数类型不匹配”错误,但这没有意义。见下面的截图: 问题似乎与 iRow 变量有关。据我所知,它是一个整数,并且
我试图检测是否传递了操作参数,但由于某种原因,所有常用函数(IsMissing()/IsEmpty()/IsNull())总是返回 false。 这就是我正在尝试的: Public Sub SetVa
我试图通过使用 for 循环传递 i 值来在 VBA 中有一个子程序来调用另一个子程序。问题是当您运行 forLoop() 子程序时,出现错误 ByRef 类型不匹配。我只是在尝试这个示例方法,看看它
我创建了一个实现 INotifyPropertyChanged 的基类界面。该类还包含一个通用函数 SetProperty设置任何属性的值并提高 PropertyChanged事件,如有必要。 Pub
在我使用 VB6 的 10 多年里,我时不时地收到一个“ByRef 参数类型不匹配”错误,我根本找不到不匹配的地方。在挣扎了一段时间后,我总是以一种或另一种方式强制输入,但这次我想我会问。我包括了所有
我刚刚安装了Visual Studio 2010 Service Pack(在Windows Update上提出),并且可以在“智能”上看到一个新功能,这意味着当我在VB.NET中编写Function
我在 Access 2013 中使用 VBA。 在常规模块中有 2 个过程,RunProc() 和 PopulateCollection() 当执行RunProc时,它会调用PopulateColle
我正在使用一个正在运行的程序。我制作了一个副本来测试使我的代码更加模块化。下面是循环内的一个子运行,通过调用第一个变为两个子运行。 Sub Trendline() Dim eqn, name As S
我是一名优秀的程序员,十分优秀!