Click here to Skip to main content
15,891,828 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Confused by Events Pin
Jay Royall1-Sep-09 2:02
Jay Royall1-Sep-09 2:02 
GeneralRe: Confused by Events Pin
Mycroft Holmes1-Sep-09 16:09
professionalMycroft Holmes1-Sep-09 16:09 
GeneralRe: Confused by Events Pin
Jay Royall1-Sep-09 22:07
Jay Royall1-Sep-09 22:07 
AnswerRe: Confused by Events Pin
Johan Hakkesteegt1-Sep-09 2:06
Johan Hakkesteegt1-Sep-09 2:06 
NewsRe: Confused by Events Pin
Sonhospa1-Sep-09 2:35
Sonhospa1-Sep-09 2:35 
NewsResolved: Confused by Events Pin
Sonhospa1-Sep-09 3:19
Sonhospa1-Sep-09 3:19 
GeneralRe: Resolved: Confused by Events Pin
Jay Royall1-Sep-09 3:31
Jay Royall1-Sep-09 3:31 
QuestionHelp with IE automation through VBA(Excel) Pin
adityabaraya31-Aug-09 20:27
adityabaraya31-Aug-09 20:27 
The following code is probably the most common code on the net for automating IE with Excel.
Sadly when I use it I get an automation error stating "Method Busy of IWebBrowser2 failed" (The Bold Part)...
Can anybody help me out how to tackle this error?

Sub Button1_Click
Set myIE = CreateObject("InternetExplorer.Application") 'New '
Dim myURL As String
Dim strSearch As String
'Set starting URL and search string
myURL = "http://google.com"
strSearch = "Infosys"
'Make IE navigate to the URL and make browser visible
myIE.Navigate myURL
myIE.Visible = True
'Wait for the page to load
Do While myIE.Busy Or myIE.ReadyState <> READYSTATE_COMPLETE
DoEvents
Loop
'Set IE document into object
Set myDoc = myIE.Document
'Enter search string on form

myDoc.forms(0).q.Value = strSearch

'Submit form
myDoc.f.submit

'Wait for the page to load
Do While myIE.Busy Or myIE.ReadyState <> READYSTATE_COMPLETE
DoEvents
Loop
'MsgBox myIE.LocationName

End Sub
QuestionHow to load a word document and save it into sql db? Pin
waner michaud31-Aug-09 8:28
waner michaud31-Aug-09 8:28 
AnswerRe: How to load a word document and save it into sql db? Pin
Steven J Jowett31-Aug-09 8:40
Steven J Jowett31-Aug-09 8:40 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud31-Aug-09 8:46
waner michaud31-Aug-09 8:46 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak31-Aug-09 9:07
mveDave Kreskowiak31-Aug-09 9:07 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud31-Aug-09 9:20
waner michaud31-Aug-09 9:20 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak31-Aug-09 9:53
mveDave Kreskowiak31-Aug-09 9:53 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud31-Aug-09 10:15
waner michaud31-Aug-09 10:15 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak31-Aug-09 12:42
mveDave Kreskowiak31-Aug-09 12:42 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud1-Sep-09 3:18
waner michaud1-Sep-09 3:18 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak1-Sep-09 3:49
mveDave Kreskowiak1-Sep-09 3:49 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud1-Sep-09 3:58
waner michaud1-Sep-09 3:58 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak1-Sep-09 5:16
mveDave Kreskowiak1-Sep-09 5:16 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud1-Sep-09 5:48
waner michaud1-Sep-09 5:48 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak1-Sep-09 7:07
mveDave Kreskowiak1-Sep-09 7:07 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud1-Sep-09 8:30
waner michaud1-Sep-09 8:30 
GeneralRe: How to load a word document and save it into sql db? Pin
Dave Kreskowiak1-Sep-09 13:25
mveDave Kreskowiak1-Sep-09 13:25 
GeneralRe: How to load a word document and save it into sql db? Pin
waner michaud2-Sep-09 4:00
waner michaud2-Sep-09 4:00 

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.