Asked by duncanb7
at 2024-02-26 03:55:41
Point:500 Replies:8 POST_ID:828442USER_ID:11059
Topic:
Hypertext Markup Language (HTML);JavaScript;Visual Basic Programming
I have one stock placement order input form from bank account provided. I would like to do VBA code
to access the placement html page after login in my bank account from VBA automation programming.
After login, I navigate https://online-banking.com./cgi-bin/ibnkprdhk/ist/order/orderPlacement.do?BV_UseBVCookie=Yes&sell=B%7C66921%7C1000%05123 in vba code
sell=B, where B means BUY or S mean SELL for select radio button in the input form for stock order
66921 means for stock name number in the input form
1000 means for lot size for stock in the input form.
The edit of stock number of 66921 and lot size of 1000 is okay in URL bar and no problem at all and it is shown in the
input form of placement order html page
But the question when I try to input stock price in URL address bar like 123 that is not shown in the form and
then I put %05 or %09 for simulating TAB key before stock price of 123 that is still not shown up too.
It is shown into lot size input box of the form instead of price box like this as follows
OrderForm
========
Order TYPE : o BUY or o SELL
Stock code: 66921
Stock Lots: 1000 123
Price:
Any suggestion for simulate TAB key code in URL bar ? And I am using IE7 in windows vista
Why, I'm NOT using DOM's getelementbyName("price")=123 in vba because I could like to speed up
submit form speed instead of too much coding for input each single input field in the input form like, ordertype,
stocknum, stocklotsize, stock prize.
Please advsie
Duncan
to access the placement html page after login in my bank account from VBA automation programming.
After login, I navigate https://online-banking.com./cgi-bin/ibnkprdhk/ist/order/orderPlacement.do?BV_UseBVCookie=Yes&sell=B%7C66921%7C1000%05123 in vba code
sell=B, where B means BUY or S mean SELL for select radio button in the input form for stock order
66921 means for stock name number in the input form
1000 means for lot size for stock in the input form.
The edit of stock number of 66921 and lot size of 1000 is okay in URL bar and no problem at all and it is shown in the
input form of placement order html page
But the question when I try to input stock price in URL address bar like 123 that is not shown in the form and
then I put %05 or %09 for simulating TAB key before stock price of 123 that is still not shown up too.
It is shown into lot size input box of the form instead of price box like this as follows
OrderForm
========
Order TYPE : o BUY or o SELL
Stock code: 66921
Stock Lots: 1000 123
Price:
Any suggestion for simulate TAB key code in URL bar ? And I am using IE7 in windows vista
Why, I'm NOT using DOM's getelementbyName("price")=123 in vba because I could like to speed up
submit form speed instead of too much coding for input each single input field in the input form like, ordertype,
stocknum, stocklotsize, stock prize.
Please advsie
Duncan