在Visual Basic中,如何访问其他窗口!

时间:2011-06-16 20:24:16

标签: vb.net

我正在尝试使用程序自动搜索论坛帖子以检查某些拼写错误的单词。我正在使用findstr方法,但无法在浏览器中搜索文本框。

我知道如何在应用程序本身中使用textbox1.text进行搜索,但不能使用其他窗口。

1 个答案:

答案 0 :(得分:-1)

试试这个,其中myOtherForm是你想要访问textBox的表单的名称:

dim otherFrm as myOtherForm1

with otherFrm

If textBox1.text = "MySearch" then
    .../... Do something
End if

结束