如何这段C#代码翻译成VB代码?谢谢!

问题描述

如何这段C#代码翻译成VB代码?谢谢!

private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
//自动点击弹出确认或弹出提示
IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;
vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //弹出确认
vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//弹出提示
//下面是你的执行操作代码
}

解决方案

强制类型转换用CType,别的没什么难点。

解决方案二:

 Private Sub webBrowser1_DocumentCompleted(ByVal sender As Object, ByVal e As WebBrowserDocumentCompletedEventArgs)
        '自动点击弹出确认或弹出提示
        Dim vDocument As IHTMLDocument2 = WebBrowser1.Document.DomDocument '添加引用 Microsoft.mshtml,头部加上Imports mshtml
        vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript") '弹出确认
        vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript") '弹出提示
        '下面是你的执行操作代码
    End Sub
时间: 2024-11-01 01:02:22

如何这段C#代码翻译成VB代码?谢谢!的相关文章

C#代码翻译成VB.NET

问题描述 using(FileStreamfs=newFileStream(fileName,FileMode.Create)){while(UploadedLength<ContentLength){intbytes=this.FileUpload1.PostedFile.InputStream.Read(buffer,0,bufferSize);fs.Write(buffer,0,bytes);UploadedLength+=bytes;}}哪位大侠帮忙把这段C#代码翻译成VB.NET 解决

请教将Java加密,解密代码翻译成C#代码

问题描述 加密算法:publicstaticStringencode(Stringkey,byte[]data)throwsException{DESKeySpecdks=newDESKeySpec(key.getBytes());SecretKeyFactorykeyFactory=SecretKeyFactory.getInstance("DES");//key的长度不能够小于8位字节KeysecretKey=keyFactory.generateSecret(dks);Ciphe

fortran-一段matlab的代码翻译成java的

问题描述 一段matlab的代码翻译成java的 def find_all_paths(graph, start, end, path=): path = path + if start == end: return if not graph.has_key(start): return paths = for node in graph: if node not in path: newpaths = find_all_paths(graph, node, end, path) for new

c-求帮忙把这段校验代码翻译成JAVA

问题描述 求帮忙把这段校验代码翻译成JAVA const u8 CRCHi[] = { 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,0x80, 0x41, 0x01, 0xC0, 0x80

vb net-请帮我把下面的C#翻译成vb.net,实在看不懂,谢谢

问题描述 请帮我把下面的C#翻译成vb.net,实在看不懂,谢谢 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Sockets; using System.IO; namespace SyncChatServer { class User { public TcpClient client { get; private set; } pu

请帮忙把字节码翻译成java代码

问题描述 请帮忙把字节码翻译成java代码 有人能帮忙把下面的字节码翻译成对应的java代码吗,谢谢 // Byte code: // 0: ldc 40 // 2: dup // 3: astore_2 // 4: monitorenter // 5: aconst_null // 6: astore_3 // 7: aconst_null // 8: astore 4 // 10: aconst_null // 11: astore 5 // 13: aload_1 // 14: invok

有会Delphi6的吗?能不能帮忙翻译一下成VB.NET,谢谢了

问题描述 有会Delphi6的吗?能不能帮忙翻译一下成VB.NET,谢谢了或在vb.net中怎么获取别的窗体的子窗口(是SysListView32类的)的内容,现在已经知道了子窗口的句柄,就是获取不了内容(*//标题:获取其他进程中ListView的文本说明:Window2000+Delphi6调试通过设计:Zswang//*)usesCommCtrl;functionListViewColumnCount(mHandle:THandle):Integer;beginResult:=Header

谁能把下面三行vb代码转成vb.net

问题描述 谁能把下面三行vb代码转成vb.netMe.Combo1.AddItem("Project0")Me.Combo1.ItemData(0)=0Me.cmbWebService.ListIndex=0我需要index,通过选择的项名得到对应的index,以上三行在vb中可以实现请问在vb.net中如何实现??? 解决方案 解决方案二:LZ你愁死我了.....接...接...........接...接..........接.....接.........接.....接.......

求懂asp和asp.net的大神把这段asp帮忙翻译成asp.net的类

问题描述 求懂asp的大神把这段asp帮忙翻译成asp.net的类,或者怎么在.net项目里使用这个方法?<%PrivateConstASP_BITS_TO_A_BYTE=8PrivateConstASP_BYTES_TO_A_WORD=4PrivateConstASP_BITS_TO_A_WORD=32PrivateASP_m_lOnBits(30)PrivateASP_m_l2Power(30)PrivateFunctionASP_LShift(lValue,iShiftBits)IfiSh