-->

Wednesday, 15 October 2014

Mail Marketing Windows Form Project in C Sharp

Project Description: This project is used to send bulk mails without spamming to promote your products and services. You can send thousands mail using this tool, all mailing address stored in local database and bind with dataGridView data control. Mail marketing or bulk mailing tool send one by one mail and pick mail address for datagridview which import mail addresses from local database. Mail marketing project created in .net framework 3.5 using c sharp language.

Mail Marketing Windows Form Project in C Sharp

Features of Mail Marketing Project:
  • Send thousands of mail on one click.
  • DataGridView Control to bind database on runtime.
  • Used local database to store mail addresses.
  • Protected for mass mailing or spamming.
  • Easy to manage controls and database.
  • Secure app.config file.
download
ProSoureCode:

To Bind Database:
  private void Form1_Load(object sender, EventArgs e)
        {
            DataTable dT;
            BindingSource bS;

            using (SqlCeConnection con = new SqlCeConnection("Data Source=|DataDirectory|\\Database1.sdf"))
            {
                dT = new DataTable();
                bS = new BindingSource();
                string query = "SELECT * FROM mailinglist";
                SqlCeDataAdapter dA = new SqlCeDataAdapter(query, con);
                SqlCeCommandBuilder cBuilder = new SqlCeCommandBuilder(dA);
                dA.Fill(dT);
                bS.DataSource = dT;
                dataGridView1.DataSource = bS;
            }
           
        }

To Send Mails:
   private void button1_Click(object sender, EventArgs e)
        {
            foreach (DataGridViewRow row in this.dataGridView1.Rows)
            {

                var email = row.Cells[2].Value.ToString();
        try
        {
            SmtpClient client = new SmtpClient("smtp.gmail.com");
            client.Port = 587;
            client.EnableSsl = true;
            client.Timeout = 100000;
            client.DeliveryMethod = SmtpDeliveryMethod.Network;
            client.UseDefaultCredentials = false;
            client.Credentials = new NetworkCredential("your mail address", "your mail password");
            MailMessage msg = new MailMessage();
            msg.To.Add(email);
            msg.From = new MailAddress("your mail address");
            msg.Subject = textBox1.Text;
            msg.Body = richTextBox1.Text;
            client.Send(msg);
            MessageBox.Show("Successfully Sent Message.");
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
   
            }
        }

    
      
    }

Tuesday, 14 October 2014

Auto Bookmark and SEO Optimizer Windows Form Project in C Sharp

Project Description: Auto Bookmark and SEO Optimizer windows application project is used for auto linking of your site or blog to high page rank sites. This tool ping your site or blog more than 100 sites to check SEO, backlinks, keyword density, bed neighborhood etc. and Analysis html, quality, whois, trustworthiness, CSS, DAML, hCard, JSON validator, W3C link, WCAG 1.0 etc. and accessibility, site network  performance and sites security factors, performance and more, and provide real time view using webBrowser control.  This project build in .net framework 3.5 using c sharp language.

Auto Bookmark and SEO Optimizer Windows Form

Features of Auto Bookmark and SEO Optimizer Project:
  • Instant Backlining.
  • Real Time control.
  • Check Site or blog Performance.
  • Check all W3C validator.
  • Check Meta data and other SEO factors.
  • Check site or blog network performance.
  • Check site security factors.
  • Check site info, grader and review etc.
download

This project containing solution file and form files not setup file, you can request it for $5.


After completing of all submissions, Google index your site or blog within 24 hours. As a result you can see snapshot below:
Google index

Thursday, 9 October 2014

Salary Calculate/Pay Slip Generator Windows Application Project in C Sharp

Project Description: Salary Management System or Pay Slip Generator Application project is a windows application project used for calculates the monthly salary of an employee on the basic of Allowance, Bonuses, Provident Fund Medical Deduction and Other Benefit. This project builds in .net framework 3.5 using c sharp language.

Salary Calculate Windows Application Project in C Sharp

Features of Salary Calculate Application Project:
  • Build in single windows form.
  • Platform independent.
  • Easy customization(add or delete fields).
  • One click edit and reset feature.
download
ProSourceCode:
On Button Click Even:
        private void button1_Click(object sender, EventArgs e)
        {
            int sal = 0;
            sal += int.Parse(comboBox2.Text);
            if (checkBox1.Checked == true)
            {
                sal += 5000;
            }
            if (checkBox2.Checked == true)
            {
                sal += 5000;
            }
            if (checkBox3.Checked == true)
            {
                sal += 5000;
            }
            if(checkBox4.Checked==true){
                sal +=5000;
                sal += (10000 * listBox1.SelectedIndices.Count);
            }

            if (checkBox5.Checked == true)
            {
                sal -= 1500;
            }
            if (checkBox6.Checked == true)
            {
                sal -= 2500;
                
            }
            textBox2.Text = sal.ToString();
        }

       

Wednesday, 8 October 2014

Net Booster Windows Form Project in .Net 3.5 Framework

Project Description: Net Booster project is windows application which main purpose is boost 20% and more Dial up or Broadband network internet speed by updating windows registry files these updates known as window tweaks. This project built in .net framework 3.5, so after build a setup file you must need .net framework 3.5 to run this project and it also need administrator privileges to manipulate windows configuration, so run this project in “Run as administrator” mode. 

Net Booster Windows Form Project in .Net 3.5 Framework

Features of Net Booster Project:
  • Build in windows form.
  • Integrated with process bar.
  • Demonstrate how to access window registry file.
  • One click edit and reset feature.
  • Build individual setup file.

”download”
ProSourceCode:

To add Values:
string add = @"SYSTEM\CurrentControlSet\Services\TCPIP\Parameters";
            key1 = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(add);
            key1.SetValue("TcpTimedWaitDelay",30);
            key1.SetValue("MaxUserPort",32768);
            key1.SetValue("KeepAliveInterval",1);
            key1.SetValue("GlobalMaxTcpWindowSize", 256960);
            key1.SetValue("TcpWindowSize", 256960);
            key1.SetValue("DefaultTTL", 64);
            key1.SetValue("EnablePMTUDiscovery", 1);
            key1.SetValue("SackOpts", 1);
            key1.SetValue("TcpMaxDupAcks", 2);
            key1.Close();
            string add1 = @"SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters";
            key = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(add1);
            key.SetValue("IRPStackSize", 32);
            key.SetValue("SizReqBuf", 17424);
            key.Close();

To delete Values:
                    key.DeleteValue("TcpTimedWaitDelay");
                    key.DeleteValue("MaxUserPort");
                    key.DeleteValue("KeepAliveInterval");
                    key.DeleteValue("GlobalMaxTcpWindowSize");
                    key.DeleteValue("DefaultTTL");
                    key.DeleteValue("EnablePMTUDiscovery");
                    key.DeleteValue("SackOpts");
                    key.DeleteValue("TcpMaxDupAcks");
                    key.DeleteValue("TcpWindowSize");
                    key.Close();
© Copyright 2019 Project Source Code | All Right Reserved