Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Referencing this object
Message
De
20/03/2001 12:04:33
 
 
À
20/03/2001 09:31:08
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00486818
Message ID:
00486888
Vues:
10
Kevin,

>https://ibanking.barclays.co.uk/frameset/personal/index.html
>Could someone have a look and let me know how I can ref the object, and also, how you found out.

Well, you've got a frameset and some frames at that URL, so there's a lot more to wade through. However, you MIGHT get it to work by going directly to the URL for the frame containing the "membershipNo" input field.

Keep in mind, however, that Barclays may have code in their submit handling on the other end to see if you're coming in from the entire frameset, so it might not work. Since I don't have a Barclays account, I'm not gonna try submitting this -- you can try it. Execute these lines one at a time and see the result...
oie=createobject("internetexplorer.application")
oie.visible=.t.
oie.navigate("https://ibanking.barclays.co.uk/html/loginmemberpersonal.html")
* this one goes through the forms collection
oie.document.forms(0).membershipNo.value="yourname"
* this one, however works just as well:
oie.document.all.membershipNo.value="yourname2"
* either way, you need to submit the form
oie.document.forms(0).submit
That will get you to the next page, whatever that happens to be. And, if they come to arrest you, I don't know anything about this...
David Stevenson, MCSD, 2-time VFP MVP / St. Petersburg, FL USA / david@topstrategies.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform