How to display a website

mario1202

Member
Licensed User
Longtime User
Hi All,

I have been trying to do this with no other help, but I'm done. I have read
HTTPUtils, HTTP library, and all http references in the forum, but I'm
getting frustrated . Just need to access my company web site and display it
on my device.

Thanks in advance for your help

Mario
 

margret

Well-Known Member
Licensed User
Longtime User
Hi All,

I have been trying to do this with no other help, but I'm done. I have read
HTTPUtils, HTTP library, and all http references in the forum, but I'm
getting frustrated . Just need to access my company web site and display it
on my device.

Thanks in advance for your help

Mario

B4X:
Sub MyOfficeWeb
      Dim myw As WebView
      myw.Initialize("myw")
      Activity.AddView(myw, 0, 0, 100%x, 100%y) 'Your options for size here
      myw.LoadUrl("http://www.yourwebsite.com")
End Sub

Thanks,

Margret
 
Last edited:
Upvote 0
Top