Jump to content

Another Vista issue


Recommended Posts

Hello!

I have another problem with this Vista (oh how much I hate it >_< )

So, I've coded a simple program and it works under XP

It asks you to select a html file and displays some results from a table from the file.

#include <IE.au3>
#include <Array.au3>
$fp=FileOpenDialog("Html file", @ScriptDir, "Html files (*.html;*.htm)")
$ie=_IECreate($fp)
$ts=_IETableGetCollection($ie, 11)
;$br=0
;For $t in $ts
;   $br+=1
$a=_IETableWriteToArray($ts)
;_ArrayDisplay($a)
$s="Dates and Rank:" & @CRLF
For $i=1 to 5
    $s=$s & $a[0][$i] & " " & $a[1][$i] & @CRLF
Next
MsgBox(0, "Result", $s)
;Next

But it does not work for my friend using Vista. It opens 2 IE windows :( (wtf) - one with the file and the other is a blank loading page and it does not show the Msgbox.

So does anyone know what can cause this? And how to solve the problem? Also what other vista issues are known for Autoit?

Many thanks in advance

Edited by muhmuuh

I ran. I ran until my muscles burned and my veins pumped battery acid. Then I ran some more.

Link to comment
Share on other sites

Please read the page for _IECreate() in the helpfile, it gives you five solutions for the "2 IE windows".

Also what other vista issues are known for Autoit?

Any issues you see comes from improper coding, not from Vista. Applications are supposed to follow the Operating System standards, not vice versa.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...