472,119 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,119 software developers and data experts.

win32com.client.Dispatch('InternerExplorer.Applica tion')

2
hi guys, how can i to get an imagine form :
Expand|Select|Wrap|Line Numbers
  1. ie  = win32com.client.Dispatch('InternerExplorer.Application')
  2. ie.Navigate(url)
  3. ie.Document.images[x] ----- this return an object i want this imagine!!!!!!!
  4.  
Thank a lot, see You
Aug 20 '07 #1
2 3291
bartonc
6,596 Expert 4TB
hi guys, how can i to get an imagine form :
Expand|Select|Wrap|Line Numbers
  1. ie  = win32com.client.Dispatch('InternerExplorer.Application')
  2. ie.Navigate(url)
  3. ie.Document.images[x] ----- this return an object i want this imagine!!!!!!!
  4.  
Thank a lot, see You
Maybe:
Expand|Select|Wrap|Line Numbers
  1. ie  = win32com.client.Dispatch('InternerExplorer.Application')
  2. ie.Navigate(url)
  3. theImage = ie.Document.images[x] # Don't forget to assign the object to a variable
  4.  
It works just as it would in VB. Don't forget to assign the object to a variable.
Aug 20 '07 #2
belfa
2
Maybe:
Expand|Select|Wrap|Line Numbers
  1. ie  = win32com.client.Dispatch('InternerExplorer.Application')
  2. ie.Navigate(url)
  3. theImage = ie.Document.images[x] # Don't forget to assign the object to a variable
  4.  
It works just as it would in VB. Don't forget to assign the object to a variable.
the problem isnot the assignament to the variable but riferiment to object.
I try this:
ie.Navigate('http://www.thecrims.com/captcha.php?action=show&n=single_phrase')
theImage = ie.Document.images[0]
but is not work.
thank you in advance
Aug 21 '07 #3

Post your reply

Sign in to post your reply or Sign up for a free account.

Similar topics

1 post views Thread by vijayakumar | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.