azad education azad education

The next-generation blog, news about technology.

The AzadEducation

This Place is waiting for your Branding advertisement.

We are helping you to advertise your brand on our website.

Contact Us

Rajasthan, India (HQ)

Bhilwara(311001), Rajasthan, India
[email protected]
C#

Loan Management Project tutorial with c# and sql server

Loan Managemnt Software tutorial in c# and sql server latest 2020.

in this project i will share with you all our coding of this project. That you can learn lot of knowledge anout c# and sql server. How to work with sql server?

Feature's of Loan Management Software.

  • Party Statement's
  • Pay Emi
  • Increase Loan Amount
  • Export Party Statement in PDF or Excel
  • More features you want to add in this project can be contact and comment us.

Using Library for this project.

  1. Bunifu UI Windows desktop design framework that create great UI in desktop application.
  2. FontAwesome.Sharp or FontAwesome for creat UI button in application.

Using Programing Language.

  1. C# 
  2. Sql server for database storage or opetaions.

Using RGB Color Code.

 

YouTube Toturials Links of all Video.

  1. Introduction of Loan Management Software :- Watch Now
  2. Dashboard Design of Loan Management Software :- 

Follow Some Step.

Create a project in visual studio. then watch this vdieo and copy code from here and paste into project accoding to tutorials.

 

1. Loan Management Dashboard Design 

//Two variabl's

        private IconButton currentBtn;
        private Form currentChildForm;

// RGB Colors Code Struct Object

private struct RGBColors
        {
            public static Color color1 = Color.FromArgb(26, 129, 229);
        }
        private void ActivateButton(object senderBtn, Color color)
        {
            if (senderBtn != null)
            {
                DisableButton();
                currentBtn = (IconButton)senderBtn;
                currentBtn.BackColor = Color.FromArgb(229, 229, 229);
                currentBtn.ForeColor = color;
                currentBtn.IconColor = color;
            }
        }

 

// Disable Button Code

        private void DisableButton()        

{            

if (currentBtn != null)            

{                

currentBtn.BackColor = RGBColors.color1;                

currentBtn.ForeColor = Color.FromArgb(229, 229, 229);                

currentBtn.TextAlign = ContentAlignment.MiddleLeft;                

currentBtn.IconColor = Color.FromArgb(229, 229, 229);                

currentBtn.TextImageRelation = TextImageRelation.ImageBeforeText;                

currentBtn.ImageAlign = ContentAlignment.MiddleLeft;            

}        

}

 
// Open a child form in panel
        public void OpenChildForm(Form childForm)
        {
            if (currentChildForm != null)
            {
                currentChildForm.Close();
            }
            currentChildForm = childForm;
            childForm.TopLevel = false;
            childForm.FormBorderStyle = FormBorderStyle.None;
            childForm.Dock = DockStyle.Fill;
            panelDesktop.Controls.Add(childForm);
            panelDesktop.Tag = childForm;
            childForm.BringToFront();
            childForm.Show();
        }

Note:- Watch the youtube tutorials for more details.

Blog Part :- 1  Part 1

Blog Part :- 2  Part 1

avatar

Azad Mohammed

An editor at AzadEducation
View Articles

I'am Azad, These blogs, tech skills and programing news, I am sharing with my exprience. I have 4+ year experiece in the web development. Also we are learning investing ideas. I believe in "big mind big dream", that will convert in smart mind. You can follow me on Linkedin profile.

Categories
Static Page
12
C#
10
Java Script
8
laravel
8
Quick Hack Solution Tips
5

Subscribe to our mailing list!

We don't spam