Print Page | Close Window

Bulletin Board

Printed From: Mirage Source
Category: Tutorials
Forum Name: Temporary Archive (Read Only)
Forum Discription: Temporary 3.0.3 archive tutorials, will be deleted when converted.
URL: http://ms.shannaracorp.com/backup-forums/forum_posts.asp?TID=180
Printed Date: 20 December 2006 at 5:52pm
Software Version: Web Wiz Forums 8.01 - http://www.webwizforums.com


Topic: Bulletin Board
Posted By: Sync
Subject: Bulletin Board
Date Posted: 11 February 2006 at 3:19pm
This is my first tutorial. :)
---------------------------------
This make your MS game can connect to you bulletin forum
Difficulty: Easy 1/5
---------------------------------

Make sure u have your game's Bulletin Forum  :D

1. First, create button on picGUI or anywhere u want, with caption "Bulletin" and Name : "butBulletin"
2. Make New Form called "frmBulletin"
3. Create WebBrowser on that form (components : Microsoft Internet Control) Name : WebBrowser1
4. Create Progressbar Named : ProgressBar1
5. New Button Caption : Close Named : picClose

Add this code to butBulletin

Private Sub butBulletin_Click()
    frmBulletin.Visible = True
End Sub



Add this code to Form_load

Private Sub Form_Load()
    home = "http://miragesoucer.com/community" 'change this site to your own Bulletin Board
    WebBrowser1.Navigate (home)
End Sub



Add this code to WebBrowser1

Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
On Error Resume Next
    ProgressBar1.Max = ProgressMax
    ProgressBar1.Value = Progress
End Sub

Add this code to picClose

Private Sub picClose_Click()
    Me.Visible = False
End Sub



Done!



Print Page | Close Window

Bulletin Board Software by Web Wiz Forums version 8.01 - http://www.webwizforums.com
Copyright ©2001-2006 Web Wiz Guide - http://www.webwizguide.info