Click here to Skip to main content
16,018,006 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Help files using Notepad Pin
Dave Kreskowiak1-Jul-05 3:22
mveDave Kreskowiak1-Jul-05 3:22 
GeneralRe: Help files using Notepad Pin
rswipe3-Jul-05 9:06
rswipe3-Jul-05 9:06 
GeneralRe: Help files using Notepad Pin
Anonymous6-Jul-05 6:59
Anonymous6-Jul-05 6:59 
GeneralRe: Help files using Notepad Pin
rswipe6-Jul-05 16:49
rswipe6-Jul-05 16:49 
GeneralVB.NET Using SendKeys to invoke Find Dialog of AxWebBrowser control Pin
Anonymous30-Jun-05 11:03
Anonymous30-Jun-05 11:03 
GeneralRe: VB.NET Using SendKeys to invoke Find Dialog of AxWebBrowser control Pin
rudy.net1-Jul-05 18:30
rudy.net1-Jul-05 18:30 
GeneralRe: VB.NET Using SendKeys to invoke Find Dialog of AxWebBrowser control Pin
Anonymous2-Jul-05 20:13
Anonymous2-Jul-05 20:13 
GeneralRe: VB.NET Using SendKeys to invoke Find Dialog of AxWebBrowser control Pin
Anonymous6-Jul-05 7:09
Anonymous6-Jul-05 7:09 
Just to let you know, I figure out how to use the SendKeys method! Who would have thought that SendKeys would be case sensitive! D'Oh! | :doh: All I had to do was replace my "^F" with "^f" and now it works!

Private Sub mnuEditFind_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)Handles mnuEditFind.Click<br />
    'AxWebBrowser1.Select()<br />
     SendKeys.Send("^f")<br />
End Sub


There is however a bug with this. For some reason, the AxWebBrowser does not activate properly in code (AxWebBrowser.Select()). Therefore, forcing you to click on the control before allowing you to use the menu option! WTF | :WTF: At times, if you do not click on the AxWebBrowser to activate it...the SendKeys method will hang your application and you won't even be able to move your mouse! I still have not found a way around this. But at least I know that send keys works now Wink | ;)

Also, for anyone interested in an alternative method which I found (and works) but what I was trying to avoid using since it is dependent on Microsoft.mshtml:

HOW TO: Invoke the Find, View Source, and Options Dialog Boxes for the WebBrowser Control from Visual Basic .NET
GeneralObtain a handle to a label in a container Pin
Abhishek Karnik30-Jun-05 10:44
Abhishek Karnik30-Jun-05 10:44 
Generalusing a string variables value Pin
btoyer30-Jun-05 10:31
btoyer30-Jun-05 10:31 
GeneralRe: using a string variables value Pin
Christian Graus30-Jun-05 14:49
protectorChristian Graus30-Jun-05 14:49 
GeneralRe: using a string variables value Pin
btoyer1-Jul-05 5:49
btoyer1-Jul-05 5:49 
GeneralRe: using a string variables value Pin
Christian Graus1-Jul-05 20:23
protectorChristian Graus1-Jul-05 20:23 
GeneralRe: using a string variables value Pin
Dave Kreskowiak2-Jul-05 11:25
mveDave Kreskowiak2-Jul-05 11:25 
GeneralAnyone know how to get more control over the appearance, size, etc of an active movie window Pin
Joey Picerno30-Jun-05 9:51
Joey Picerno30-Jun-05 9:51 
GeneralRe: Anyone know how to get more control over the appearance, size, etc of an active movie window Pin
Dr_Lomax12-Jul-05 1:42
Dr_Lomax12-Jul-05 1:42 
GeneralTwo WebBrowsers Question Pin
Anonymous30-Jun-05 9:28
Anonymous30-Jun-05 9:28 
GeneralTwo WebBrowsers Question Pin
Anonymous30-Jun-05 10:02
Anonymous30-Jun-05 10:02 
GeneralRe: Two WebBrowsers Question Pin
rwestgraham30-Jun-05 12:42
rwestgraham30-Jun-05 12:42 
Generalcombobox items question Pin
Joey Picerno30-Jun-05 9:03
Joey Picerno30-Jun-05 9:03 
GeneralRe: combobox items question Pin
Anonymous30-Jun-05 9:14
Anonymous30-Jun-05 9:14 
GeneralRe: combobox items question Pin
Joey Picerno30-Jun-05 9:49
Joey Picerno30-Jun-05 9:49 
GeneralMoving to a row in a dataset Pin
dptalt30-Jun-05 8:38
dptalt30-Jun-05 8:38 
GeneralRe: Moving to a row in a dataset Pin
Anonymous30-Jun-05 9:36
Anonymous30-Jun-05 9:36 
GeneralRe: Moving to a row in a dataset Pin
dptalt5-Jul-05 3:27
dptalt5-Jul-05 3:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.