Skip to main content

Posts

  using  System; using  System.Collections.Generic; using  System.ComponentModel; using  System.Data; using  System.Drawing; using  System.Linq; using  System.Text; using  System.Threading.Tasks; using  System.Windows.Forms; namespace  FinoBank_Application {      public   partial   class   frmSplash  :  Form     {          public  frmSplash()         {             InitializeComponent();         }          private   void  frmSplash_Load( object  sender,  EventArgs  e)         {             timer1.Start();         }          private   void  timer1_Tick( object  sender,  EventArgs  e)         {             progressBar1.Minimum = 0;             progressBar1.Maximum = 100;             progressBar1.Value = progressBar1.Value + 1;              //this.progressBar1.Increment(1);              if  (progressBar1.Value <= 0)             {                 lblProgress.Text =  "Initializing components..............." ;             }              else   if  (progressBar1.Value <= 10)   
Recent posts

Fino Bank Asp.net C# Desktop Application

    using  System; using  System.Collections.Generic; using  System.ComponentModel; using  System.Data; using  System.Drawing; using  System.Linq; using  System.Text; using  System.Threading.Tasks; using  System.Windows.Forms; namespace  FinoBank_Application {      public   partial   class   frmSplash  :  Form     {          public  frmSplash()         {             InitializeComponent();         }          private   void  frmSplash_Load( object  sender,  EventArgs  e)         {             timer1.Start();         }          private   void  timer1_Tick( object  sender,  EventArgs  e)         {             progressBar1.Minimum = 0;             progressBar1.Maximum = 100;             progressBar1.Value = progressBar1.Value + 1;              //this.progressBar1.Increment(1);              if  (progressBar1.Value <= 0)             {                 lblProgress.Text =  "Initializing components............... " ;             }              else   if  (progressBar1.Va