If the buttons are in the "main" activity:
Dim a string in the Sub Process_Globals of the main activity to hold the url for example
in the button event for each button set MyUrl to the Url you want, and start the second activity.
In the second activity, you can get the Url with main.MyUrl, so you can use
WebView.LoadUrl (main.MyUrl)
This can be further simplified by setting the event for all the buttons to be the same, and putting the url in the tag. The Click event for the buttons would then be
Dim btn As Button
btn = Sender
MyUrl=btn.Tag
StartActivity (second activity)