Splash Screen with Progress Bar- % Completed While Loading a Page - Visual Basic tutorial

  • 6 years ago
Splash Screen with Progress Bar (Loading Page)Visual Basic 6.0-Quick and easy\r
Tutorial is mainly focused on the following points.\r
1.How you can create a splash Screen.\r
2.How you can add progress Bar to your form using advanced controls.\r
3.Above the progress Bar, We can also show Loading Label along with progress meter that starts from 0% and end at 100%.\r
When loading is completed, immediately Welcome /Main Page appears on the screen.\r
All Steps are self explanatory and easy.\r
Every one can create such splash screen with progress Bar.\r
for your little help am attaching the code for your reference.\r
\r
VB Code:\r
Option Explicit\r
\r
Private Sub Form_Load()\r
Timer1.Enabled = True\r
End Sub\r
\r
Private Sub Timer1_Timer()\r
ProgressBar1.Value = ProgressBar1.Value + 5\r
Label1.Caption = Loading...\r
Label5.Caption = ProgressBar1.Value & %\r
If (ProgressBar1.Value = ProgressBar1.Max) Then\r
Timer1.Enabled = False Unload Me Form2.Show\r
End If\r
End Sub\r
\r
_____________________________________________________________\r
Here is my updated List of Tutorials.\r
_____________________________________________________________\r
Create and store data in Microsoft Excel Sheet using visual basic \r
Search records in listview control \r
Create and Display Popup menu in Visual Studio \r
Search Records between Two dates using DataGrid \r
How to Connect Listview with Database and Load data into Listview \r
Add Delete Search and Sort Listitems in Listview control \r
How to Reset Forgotten Password by User Verification in Visual Basic 6.0 \r
How to Connect Datagrid control with Access database without VB6 ADODC\r
\r
How to Make installer for Visual Basic Database\r
\r
ImageCombo and ImageList-Display Image with Combo items in Combobox \r
Create Save Update Delete and Search Student Profile Using Visual Basic/Ms Access-Step by Step \r
Advance Login System (Splash Screen with Progress Bar,User Registration,Login system,Welcome ) \r
Add Delete Update Search Records \r
How to Print Data Report in VB6 \r
How to Use Data Manager in VB6 \r
Create Tool Bar,Status Bar and Menu Bar \r
Common dialog control- Font and Color Dialog \r
Search Records in Database (By Name or ID) \r
Login Form using Visual Basic 6.0 \r
Add Delete Update and Clear records \r
Simple Visual Basic Database Application \r
Design Font Dialog Box in VB 6 \r
Road Traffic lights Animated system \r
ListBox Control( Advanced) \r
ListBox Control -Add,Delete and Clear items \r
Custom Progress Bar with percentage completed on Splash Screen \r
Frame Control,Check Box and Option Buttons \r
Picture Viewer+Browser in Visual Basic \r
Splash Screen with Progress Bar- \r
Create Menus,Drop Down Menus ,Nested menus in Menu Bar \r
\r
for more Visual Basic tutorials,please visit \r
Youtube Channel:\r
Computer Gyan Blog: