Is there a better way to tell the browser to wait until a page has loaded to continue?
I've tried
while ieobj.busy
doevents
wend
do while ieobj.busy
loop
and even
variable1 = ieobj.document.all.getelementsbytagname("td").length
while ieobj.document.all.getelementsbytagname("td").length <...
Well the title says it all, how would i get the url of the link i just clicked?
Dim ObjForTesting As Object
Dim Link As Object
Dim ElementCol As Object
Set ObjForTesting = CreateObject("InternetExplorer.Application")
With ObjForTesting
.Visible = True
.navigate...
Well the title says it all, how would i get the url of the link i just clicked?
Dim ObjForTesting As Object
Dim Link As Object
Dim ElementCol As Object
Set ObjForTesting = CreateObject("InternetExplorer.Application")
With ObjForTesting
.Visible = True
.navigate...
How can I stop Dialog Boxes / Error Messages from opening in my OLE object "IBMReflection"?
here is the code:
Private Sub cmdQuery_Click()
Dim hostpassword As String
Dim Session As Object
Const SessionCon = "149.83.123.3"
Set Session = CreateObject("ReflectionIBM.Application")
With Session...
I am having trouble pasting data from my OLE object below.
The code logs in to an application, goes into a certain screen
and then from a certain position to another it copies text, which is not in any format whatsoever.
here is an example:
SPECIAL BROKER PULL 0 0...
I'd like to have the code press enter after a certain amount of characters have been entered in a textbox.
This is what i have but it doesn't work.
Private Sub Text0_KeyDown(Keycode As Integer, shift As Integer)
'Dim str As String
Dim str As Object
Set str = Text0
'str = "1234567"
If...
The Code below was made in access 2003 and tested on IE6 and it worked fine, but after testing it on ie7 it gives off errors such as Object variable not defined, or Subscript out of range
Sub Kick_Off_Log_In()
Const str_usr = "qcc04"
Const str_pw = "qc"
Dim username As...
Hello,
I need help extracting certain parts of a String that I pulled Using ie.Doc.Body.InnerText, the problem is that the text i need is all in one line, I need a way to tell the Code to stop when it sees a certain character or string. I've tried messing around with instr() but no luck.
Here...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.