参考
Dim frm As New Windows.Forms.Form
frm.Text = "欢迎使用"
frm.Topmost = True
frm.width = 500
frm.height = 500
Dim pic As new Windows.Forms.PictureBox
pic.Image = getImage("d:\test.jpg")
pic.width = 200
pic.height = 100
pic.Top = 10
pic.left = 10
frm.Controls.Add(pic)
Dim web As new Windows.Forms.Webbrowser
web.width = 500
web.height = 200
web.Top = 150
web.left = 10
web.Navigate("http://www.foxtable.com")
frm.Controls.Add(web)
frm.Show
frm.Top = (SysInfo.ScreenHeight - frm.height) / 2
frm.left = (SysInfo.ScreenWidth - frm.width) / 2