When a Hyperlink-Object (eg. Hyperlink1) is initiated, the following example of a click-event of (name = cmdbutton1) would run:
*Timer-Object Init:
cmdbutton1.click()
cmdbutton2.click()
*Click-event for cmdbutton1:
x = "Alvaro Castagnet"
STORE ALLTRIM(x) TO nn
y = "https:"+"//ww"+"w.google"+".de/search?q="+nn+"&biw=1920&bih=1013&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjOyImsm7vMAhXFzxQKHf4mBrgQ_AUIBigB#tbm=isch&q="+nn+"+Aquarell"
thisform.hyperlink1.NavigateTo
That runs well, but now the next approach is this command:
*Click-event for cmdbutton2:
x = "Joseph Zbukvic"
STORE ALLTRIM(x) TO nn
y = "https:"+"//ww"+"w.google"+".de/search?q="+nn+"&biw=1920&bih=1013&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjOyImsm7vMAhXFzxQKHf4mBrgQ_AUIBigB#tbm=isch&q="+nn+"+Aquarell"
thisform.hyperlink1.NavigateTo
When the timer is initiated then the click-event of cmdbutton1 is executed. But then I have to close the homepage - manually by clicking on it - to get the second homepage of Joseph Zbukvic
Has anyone an idea, whether this could be done without closing the 1st homepage manually, but let's do it the timer after a certain time? (That would lead to a dia-show in this example...)
The general question behind is for perhaps, whether keypushes in the Internet environment could be controled from/via VFP9
May this is a stupid question....
Klaus
Peace worldwide - it starts here...
*Timer-Object Init:
cmdbutton1.click()
cmdbutton2.click()
*Click-event for cmdbutton1:
x = "Alvaro Castagnet"
STORE ALLTRIM(x) TO nn
y = "https:"+"//ww"+"w.google"+".de/search?q="+nn+"&biw=1920&bih=1013&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjOyImsm7vMAhXFzxQKHf4mBrgQ_AUIBigB#tbm=isch&q="+nn+"+Aquarell"
thisform.hyperlink1.NavigateTo
That runs well, but now the next approach is this command:
*Click-event for cmdbutton2:
x = "Joseph Zbukvic"
STORE ALLTRIM(x) TO nn
y = "https:"+"//ww"+"w.google"+".de/search?q="+nn+"&biw=1920&bih=1013&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjOyImsm7vMAhXFzxQKHf4mBrgQ_AUIBigB#tbm=isch&q="+nn+"+Aquarell"
thisform.hyperlink1.NavigateTo
When the timer is initiated then the click-event of cmdbutton1 is executed. But then I have to close the homepage - manually by clicking on it - to get the second homepage of Joseph Zbukvic
Has anyone an idea, whether this could be done without closing the 1st homepage manually, but let's do it the timer after a certain time? (That would lead to a dia-show in this example...)
The general question behind is for perhaps, whether keypushes in the Internet environment could be controled from/via VFP9
May this is a stupid question....
Klaus
Peace worldwide - it starts here...