this time I want to show a website inside of my application and pass variables to webforms.
I solved the Google.com problem. It was a strange cache error that was solved by reseting the cache of firefox and IE7.Well I managed to show the website inside my application with this code:As I said the website shows up but a strange thing happens if you move your curser above the Browser field: The Side transforms into google.comCode: Select all
on run_list put empty into tBrowserId global tBrowserId put the windowid of this stack into tWinID put revBrowserOpen(tWinID,"http://www.gmx.net") \ into tBrowserId -- revBrowserNavigate tBrowserId, "http://www.microsoft.com" revBrowserSet tBrowserId, "showborder","true" revBrowserSet tBrowserId, "rect",rect of fld "F_Browser" revBrowserRedraw tBrowserId end run_list
First you see the search bar and after some seconds gmx.net or microsoft.com disappears and google.com appears.
I don´t know why this happens as I don´t have declared google.com in any kind in my code! I am really confused about this and I am happy about every kind of help.
Now I would like to concentrate on the next problem:
The next issue is that I would like to pass data from my input fields to a webform like a login or registration page, but I don´t have a clue how to archieve that.
For example:
My Application has 3 Input Fields (Name, Password, Email) and now I would like to find the corresponding fields on a webpage for Loginname, Password and emailadress.
Best Regards,
Masterchief