D
Dieru
Here is my first post
I have to make a selection in a listbox which is on a web page with
VBA. I have the beginning of the code :
Sub detecte()
lien = "my web adress"
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate lien
Do Until IE.ReadyState = 4
DoEvents
Loop 'attend la fin du chargement
IE.Visible = True
IE.Document.all("ucTitreRendu_DdSelDate").Value = "-1"
End Sub
the problem is with that code
"IE.Document.all("ucTitreRendu_DdSelDate").Value = "-1"", I only
select the first link but it does nothing. It should select the first
link and load the corresponding page.
for ex :
the selected link is march with the informations corresponding to
march.
if I select April from VBA I'd like to have the information
correponding to April.
Thanks for your help it's very important.
I have to make a selection in a listbox which is on a web page with
VBA. I have the beginning of the code :
Sub detecte()
lien = "my web adress"
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate lien
Do Until IE.ReadyState = 4
DoEvents
Loop 'attend la fin du chargement
IE.Visible = True
IE.Document.all("ucTitreRendu_DdSelDate").Value = "-1"
End Sub
the problem is with that code
"IE.Document.all("ucTitreRendu_DdSelDate").Value = "-1"", I only
select the first link but it does nothing. It should select the first
link and load the corresponding page.
for ex :
the selected link is march with the informations corresponding to
march.
if I select April from VBA I'd like to have the information
correponding to April.
Thanks for your help it's very important.